X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Fkeyboard.c;h=b517014a795df3334fdf470c5b101c7fb6934359;hb=6e86a42c4b468c6c58cf1acf6b288a250543db98;hp=86ead5288bd853af9964c33bc3815886f9662f2d;hpb=de4f92ccc66c1dad1a2820a07d1f0161bd61a855;p=chaz%2Fopenbox diff --git a/openbox/keyboard.c b/openbox/keyboard.c index 86ead528..b517014a 100644 --- a/openbox/keyboard.c +++ b/openbox/keyboard.c @@ -163,18 +163,10 @@ gboolean keyboard_process_interactive_grab(const XEvent *e, cancel = done = TRUE; } if (done) { - if (s->action->func == action_cycle_windows) { - s->action->data.cycle.cancel = cancel; - s->action->data.cycle.final = TRUE; - } - if (s->action->func == action_desktop_dir) { - s->action->data.desktopdir.cancel = cancel; - s->action->data.desktopdir.final = TRUE; - } - if (s->action->func == action_send_to_desktop_dir) { - s->action->data.sendtodir.cancel = cancel; - s->action->data.sendtodir.final = TRUE; - } + g_assert(s->action->data.any.interactive); + + s->action->data.inter.cancel = cancel; + s->action->data.inter.final = TRUE; s->action->func(&s->action->data); @@ -225,38 +217,19 @@ void keyboard_event(ObClient *client, const XEvent *e) if (act->func != NULL) { act->data.any.c = client; - if (act->func == action_cycle_windows) - { - act->data.cycle.final = FALSE; - act->data.cycle.cancel = FALSE; - } - if (act->func == action_desktop_dir) - { - act->data.desktopdir.final = FALSE; - act->data.desktopdir.cancel = FALSE; - } - if (act->func == action_send_to_desktop_dir) - { - act->data.sendtodir.final = FALSE; - act->data.sendtodir.cancel = FALSE; - } - - if (act->func == action_moveresize) - { + if (act->func == action_moveresize) { screen_pointer_pos(&act->data.moveresize.x, &act->data.moveresize.y); } - if ((act->func == action_cycle_windows || - act->func == action_desktop_dir || - act->func == action_send_to_desktop_dir)) - { + if (act->data.any.interactive) { + act->data.inter.cancel = FALSE; + act->data.inter.final = FALSE; keyboard_interactive_grab(e->xkey.state, client, 0, act); } - if (act->func == action_showmenu) - { + if (act->func == action_showmenu) { act->data.showmenu.x = e->xkey.x_root; act->data.showmenu.y = e->xkey.y_root; }