all repos — openbox @ bdc10887cbb7a51c1231978806963e622619e2f9

openbox fork - make it a bit more like ryudo

provide a way to remove all bindings
Dana Jansens danakj@orodu.net
commit

bdc10887cbb7a51c1231978806963e622619e2f9

parent

ebe3091560a859996a9904c342c62b512b39bee0

4 files changed, 18 insertions(+), 11 deletions(-)

jump to
M openbox/keyboard.copenbox/keyboard.c

@@ -98,6 +98,14 @@ grab_keys(TRUE);

} } +void keyboard_unbind_all() +{ + tree_destroy(keyboard_firstnode); + keyboard_firstnode = NULL; + grab_keys(FALSE); + curpos = NULL; +} + gboolean keyboard_bind(GList *keylist, ObAction *action) { KeyBindingTree *tree, *t;

@@ -297,16 +305,13 @@

if (!reconfig) client_remove_destructor(keyboard_interactive_end_client); - tree_destroy(keyboard_firstnode); - keyboard_firstnode = NULL; - for (it = interactive_states; it; it = g_slist_next(it)) g_free(it->data); g_slist_free(interactive_states); interactive_states = NULL; ob_main_loop_timeout_remove(ob_main_loop, chain_timeout); - grab_keys(FALSE); - curpos = NULL; + + keyboard_unbind_all(); }
M openbox/keyboard.hopenbox/keyboard.h

@@ -34,6 +34,7 @@ void keyboard_startup(gboolean reconfig);

void keyboard_shutdown(gboolean reconfig); gboolean keyboard_bind(GList *keylist, ObAction *action); +void keyboard_unbind_all(); void keyboard_event(struct _ObClient *client, const XEvent *e); void keyboard_reset_chains();
M openbox/mouse.copenbox/mouse.c

@@ -128,7 +128,7 @@ for (it = client_list; it != NULL; it = it->next)

mouse_grab_for_client(it->data, grab); } -static void clearall() +void mouse_unbind_all() { int i; GSList *it;

@@ -295,8 +295,8 @@ g_assert_not_reached();

} } -gboolean mouse_bind(char *buttonstr, char *contextstr, ObMouseAction mact, - ObAction *action) +gboolean mouse_bind(const gchar *buttonstr, const gchar *contextstr, + ObMouseAction mact, ObAction *action) { guint state, button; ObFrameContext context;

@@ -347,5 +347,5 @@

void mouse_shutdown(gboolean reconfig) { grab_all_clients(FALSE); - clearall(); + mouse_unbind_all(); }
M openbox/mouse.hopenbox/mouse.h

@@ -28,8 +28,9 @@

void mouse_startup(gboolean reconfig); void mouse_shutdown(gboolean reconfig); -gboolean mouse_bind(char *buttonstr, char *contextstr, ObMouseAction mact, - ObAction *action); +gboolean mouse_bind(const gchar *buttonstr, const gchar *contextstr, + ObMouseAction mact, ObAction *action); +void mouse_unbind_all(); void mouse_event(struct _ObClient *client, XEvent *e);