From: Dana Jansens Date: Wed, 10 Sep 2003 17:21:27 +0000 (+0000) Subject: when the client for an interactive action is closed, kill the action X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=fe2f637e2bda1803ea89ddb80201a3239f5ae284;p=chaz%2Fopenbox when the client for an interactive action is closed, kill the action --- diff --git a/openbox/keyboard.c b/openbox/keyboard.c index d044ba5c..8598cbf9 100644 --- a/openbox/keyboard.c +++ b/openbox/keyboard.c @@ -157,6 +157,37 @@ void keyboard_interactive_grab(guint state, ObClient *client, interactive_states = g_slist_append(interactive_states, s); } +void keyboard_interactive_end(ObInteractiveState *s, + guint state, gboolean cancel) +{ + action_run_interactive(s->action, s->client, state, cancel, TRUE); + + g_free(s); + + interactive_states = g_slist_remove(interactive_states, s); + + if (!interactive_states) { + grab_keyboard(FALSE); + grab_pointer(FALSE, OB_CURSOR_NONE); + keyboard_reset_chains(); + } +} + +void keyboard_interactive_end_client(gpointer data) +{ + GSList *it, *next; + ObClient *c = data; + + for (it = interactive_states; it; it = next) { + ObInteractiveState *s = it->data; + + next = g_slist_next(it); + + if (s->client == c) + keyboard_interactive_end(s, 0, FALSE); + } +} + gboolean keyboard_process_interactive_grab(const XEvent *e, ObClient **client) { GSList *it, *next; @@ -179,17 +210,7 @@ gboolean keyboard_process_interactive_grab(const XEvent *e, ObClient **client) cancel = done = TRUE; } if (done) { - action_run_interactive(s->action, s->client, - e->xkey.state, cancel, TRUE); - - g_free(s); - - interactive_states = g_slist_delete_link(interactive_states, it); - if (!interactive_states) { - grab_keyboard(FALSE); - grab_pointer(FALSE, OB_CURSOR_NONE); - keyboard_reset_chains(); - } + keyboard_interactive_end(s, e->xkey.state, cancel); handled = TRUE; } else @@ -246,12 +267,18 @@ void keyboard_event(ObClient *client, const XEvent *e) void keyboard_startup(gboolean reconfig) { grab_keys(TRUE); + + if (!reconfig) + client_add_destructor(keyboard_interactive_end_client); } void keyboard_shutdown(gboolean reconfig) { GSList *it; + if (!reconfig) + client_remove_destructor(keyboard_interactive_end_client); + tree_destroy(keyboard_firstnode); keyboard_firstnode = NULL;