summaryrefslogtreecommitdiff
path: root/openbox/keyboard.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-30 16:58:30 +0000
committerDana Jansens <danakj@orodu.net>2003-08-30 16:58:30 +0000
commit2c6c0757fa497f4c1e0648bcbb1927c0fa12862f (patch)
tree16b71b97f63b2877fc9d62690f41cd5de42dbf55 /openbox/keyboard.c
parent009685bc4630a5deb3a48179450fb18e619c6e04 (diff)
make interactive actions a type and not special cases.
add the <interactive> option to them to turn off interactivity
Diffstat (limited to 'openbox/keyboard.c')
-rw-r--r--openbox/keyboard.c45
1 files changed, 9 insertions, 36 deletions
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;
}