playing a bit with grabs
[mikachu/openbox.git] / openbox / keyboard.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    keyboard.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "mainloop.h"
21 #include "focus.h"
22 #include "screen.h"
23 #include "frame.h"
24 #include "openbox.h"
25 #include "event.h"
26 #include "grab.h"
27 #include "client.h"
28 #include "action.h"
29 #include "prop.h"
30 #include "config.h"
31 #include "keytree.h"
32 #include "keyboard.h"
33 #include "translate.h"
34 #include "moveresize.h"
35 #include "gettext.h"
36
37 #include <glib.h>
38
39 KeyBindingTree *keyboard_firstnode;
40
41 typedef struct {
42     guint state;
43     ObClient *client;
44     GSList *actions;
45     ObFrameContext context;
46 } ObInteractiveState;
47
48 static GSList *interactive_states;
49
50 static KeyBindingTree *curpos;
51
52 static void grab_for_window(Window win, gboolean grab)
53 {
54     KeyBindingTree *p;
55
56     ungrab_all_keys(win);
57
58     if (grab) {
59         p = curpos ? curpos->first_child : keyboard_firstnode;
60         while (p) {
61             grab_key(p->key, p->state, win, GrabModeAsync);
62             p = p->next_sibling;
63         }
64         if (curpos)
65             grab_key(config_keyboard_reset_keycode,
66                      config_keyboard_reset_state,
67                      win, GrabModeAsync);
68     }
69 }
70
71 static void grab_keys(gboolean grab)
72 {
73     GList *it;
74
75     grab_for_window(screen_support_win, grab);
76     grab_for_window(RootWindow(ob_display, ob_screen), grab);
77 }
78
79 static gboolean chain_timeout(gpointer data)
80 {
81     keyboard_reset_chains();
82
83     return FALSE; /* don't repeat */
84 }
85
86 void keyboard_reset_chains()
87 {
88     ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
89
90     if (curpos) {
91         grab_keys(FALSE);
92         curpos = NULL;
93         grab_keys(TRUE);
94     }
95 }
96
97 void keyboard_unbind_all()
98 {
99     tree_destroy(keyboard_firstnode);
100     keyboard_firstnode = NULL;
101     grab_keys(FALSE);
102     curpos = NULL;
103 }
104
105 gboolean keyboard_bind(GList *keylist, ObAction *action)
106 {
107     KeyBindingTree *tree, *t;
108     gboolean conflict;
109     gboolean mods = TRUE;
110
111     g_assert(keylist != NULL);
112     g_assert(action != NULL);
113
114     if (!(tree = tree_build(keylist)))
115         return FALSE;
116
117     if ((t = tree_find(tree, &conflict)) != NULL) {
118         /* already bound to something, use the existing tree */
119         tree_destroy(tree);
120         tree = NULL;
121     } else
122         t = tree;
123
124     if (conflict) {
125         g_message(_("Conflict with key binding in config file"));
126         tree_destroy(tree);
127         return FALSE;
128     }
129
130     /* find if every key in this chain has modifiers, and also find the
131        bottom node of the tree */
132     while (t->first_child) {
133         if (!t->state)
134             mods = FALSE;
135         t = t->first_child;
136     }
137
138     /* when there are no modifiers in the binding, then the action cannot
139        be interactive */
140     if (!mods && action->data.any.interactive) {
141         action->data.any.interactive = FALSE;
142         action->data.inter.final = TRUE;
143     }
144
145     /* set the action */
146     t->actions = g_slist_append(t->actions, action);
147     /* assimilate this built tree into the main tree. assimilation
148        destroys/uses the tree */
149     if (tree) tree_assimilate(tree);
150
151     return TRUE;
152 }
153
154 gboolean keyboard_interactive_grab(guint state, ObClient *client,
155                                    ObAction *action)
156 {
157     ObInteractiveState *s;
158
159     g_assert(action->data.any.interactive);
160
161     if (!interactive_states) {
162         grab_pointer(TRUE, FALSE, OB_CURSOR_POINTER);
163         if (!grab_keyboard(TRUE)) {
164             grab_pointer(FALSE, FALSE, OB_CURSOR_NONE);
165             return FALSE;
166         }
167     }
168
169     s = g_new(ObInteractiveState, 1);
170
171     s->state = state;
172     s->client = client;
173     s->actions = g_slist_append(NULL, action);
174
175     interactive_states = g_slist_append(interactive_states, s);
176
177     return TRUE;
178 }
179
180 void keyboard_interactive_end(ObInteractiveState *s,
181                               guint state, gboolean cancel, Time time)
182 {
183     action_run_interactive(s->actions, s->client, state, time, cancel, TRUE);
184
185     g_slist_free(s->actions);
186     g_free(s);
187
188     interactive_states = g_slist_remove(interactive_states, s);
189
190     if (!interactive_states) {
191         grab_keyboard(FALSE);
192         grab_pointer(FALSE, FALSE, OB_CURSOR_NONE);
193         keyboard_reset_chains();
194     }
195 }
196
197 void keyboard_interactive_end_client(ObClient *client, gpointer data)
198 {
199     GSList *it, *next;
200
201     for (it = interactive_states; it; it = next) {
202         ObInteractiveState *s = it->data;
203
204         next = g_slist_next(it);
205
206         if (s->client == client)
207             s->client = NULL;
208     }
209 }
210
211 gboolean keyboard_process_interactive_grab(const XEvent *e, ObClient **client)
212 {
213     GSList *it, *next;
214     gboolean handled = FALSE;
215     gboolean done = FALSE;
216     gboolean cancel = FALSE;
217
218     for (it = interactive_states; it; it = next) {
219         ObInteractiveState *s = it->data;
220
221         next = g_slist_next(it);
222         
223         if ((e->type == KeyRelease && 
224              !(s->state & e->xkey.state)))
225             done = TRUE;
226         else if (e->type == KeyPress) {
227             /*if (e->xkey.keycode == ob_keycode(OB_KEY_RETURN))
228                 done = TRUE;
229             else */if (e->xkey.keycode == ob_keycode(OB_KEY_ESCAPE))
230                 cancel = done = TRUE;
231         } else if (e->type == ButtonPress)
232             cancel = done = TRUE;
233
234         if (done) {
235             keyboard_interactive_end(s, e->xkey.state, cancel, e->xkey.time);
236
237             handled = TRUE;
238         } else
239             *client = s->client;
240     }
241
242     return handled;
243 }
244
245 void keyboard_event(ObClient *client, const XEvent *e)
246 {
247     KeyBindingTree *p;
248
249     g_assert(e->type == KeyPress);
250
251     if (e->xkey.keycode == config_keyboard_reset_keycode &&
252         e->xkey.state == config_keyboard_reset_state)
253     {
254         keyboard_reset_chains();
255         return;
256     }
257
258     if (curpos == NULL)
259         p = keyboard_firstnode;
260     else
261         p = curpos->first_child;
262     while (p) {
263         if (p->key == e->xkey.keycode &&
264             p->state == e->xkey.state)
265         {
266             if (p->first_child != NULL) { /* part of a chain */
267                 ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
268                 /* 5 second timeout for chains */
269                 ob_main_loop_timeout_add(ob_main_loop, 5 * G_USEC_PER_SEC,
270                                          chain_timeout, NULL,
271                                          g_direct_equal, NULL);
272                 grab_keys(FALSE);
273                 curpos = p;
274                 grab_keys(TRUE);
275             } else {
276
277                 keyboard_reset_chains();
278
279                 action_run_key(p->actions, client, e->xkey.state,
280                                e->xkey.x_root, e->xkey.y_root,
281                                e->xkey.time);
282             }
283             break;
284         }
285         p = p->next_sibling;
286     }
287 }
288
289 gboolean keyboard_interactively_grabbed()
290 {
291     return !!interactive_states;
292 }
293
294 void keyboard_startup(gboolean reconfig)
295 {
296     grab_keys(TRUE);
297
298     if (!reconfig)
299         client_add_destructor(keyboard_interactive_end_client, NULL);
300 }
301
302 void keyboard_shutdown(gboolean reconfig)
303 {
304     GSList *it;
305
306     if (!reconfig)
307         client_remove_destructor(keyboard_interactive_end_client);
308
309     for (it = interactive_states; it; it = g_slist_next(it))
310         g_free(it->data);
311     g_slist_free(interactive_states);
312     interactive_states = NULL;
313
314     ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
315
316     keyboard_unbind_all();
317 }
318