]> icculus.org git repositories - dana/openbox.git/blob - openbox/keyboard.c
continuation of r6039 in all respects
[dana/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 "menuframe.h"
31 #include "config.h"
32 #include "keytree.h"
33 #include "keyboard.h"
34 #include "translate.h"
35 #include "moveresize.h"
36 #include "popup.h"
37 #include "gettext.h"
38
39 #include <glib.h>
40
41 typedef struct {
42     gboolean active;
43     guint state;
44     ObClient *client;
45     ObAction *action;
46 } ObInteractiveState;
47
48 KeyBindingTree *keyboard_firstnode = NULL;
49 static ObPopup *popup = NULL;
50 static ObInteractiveState istate;
51 static KeyBindingTree *curpos;
52
53 static void grab_keys(gboolean grab)
54 {
55     KeyBindingTree *p;
56
57     ungrab_all_keys(RootWindow(ob_display, ob_screen));
58
59     if (grab) {
60         p = curpos ? curpos->first_child : keyboard_firstnode;
61         while (p) {
62             grab_key(p->key, p->state, RootWindow(ob_display, ob_screen),
63                      GrabModeAsync);
64             p = p->next_sibling;
65         }
66         if (curpos)
67             grab_key(config_keyboard_reset_keycode,
68                      config_keyboard_reset_state,
69                      RootWindow(ob_display, ob_screen), GrabModeAsync);
70     }
71 }
72
73 static gboolean chain_timeout(gpointer data)
74 {
75     keyboard_reset_chains(0);
76     return FALSE; /* don't repeat */
77 }
78
79 static void set_curpos(KeyBindingTree *newpos)
80 {
81     grab_keys(FALSE);
82     curpos = newpos;
83     grab_keys(TRUE);
84
85     if (curpos != NULL) {
86         gchar *text = NULL;
87         GList *it;
88
89         for (it = curpos->keylist; it; it = g_list_next(it)) {
90             gchar *oldtext = text;
91             if (text == NULL)
92                 text = g_strdup(it->data);
93             else
94                 text = g_strconcat(text, " - ", it->data, NULL);
95             g_free(oldtext);
96         }
97
98         popup_position(popup, NorthWestGravity, 10, 10);
99         /* 1 second delay for the popup to show */
100         popup_delay_show(popup, G_USEC_PER_SEC, text);
101         g_free(text);
102     } else {
103         popup_hide(popup);
104     }
105 }
106
107 void keyboard_reset_chains(gint break_chroots)
108 {
109     KeyBindingTree *p;
110
111     for (p = curpos; p; p = p->parent) {
112         if (p->chroot) {
113             if (break_chroots == 0) break; /* stop here */
114             if (break_chroots > 0)
115                 --break_chroots;
116         }
117     }
118     set_curpos(p);
119 }
120
121 void keyboard_unbind_all()
122 {
123     tree_destroy(keyboard_firstnode);
124     keyboard_firstnode = NULL;
125 }
126
127 void keyboard_chroot(GList *keylist)
128 {
129     /* try do it in the existing tree. if we can't that means it is an empty
130        chroot binding. so add it to the tree then. */
131     if (!tree_chroot(keyboard_firstnode, keylist)) {
132         KeyBindingTree *tree;
133         if (!(tree = tree_build(keylist)))
134             return;
135         tree_chroot(tree, keylist);
136         tree_assimilate(tree);
137     }
138 }
139
140 gboolean keyboard_bind(GList *keylist, ObAction *action)
141 {
142     KeyBindingTree *tree, *t;
143     gboolean conflict;
144     gboolean mods = TRUE;
145
146     g_assert(keylist != NULL);
147     g_assert(action != NULL);
148
149     if (!(tree = tree_build(keylist)))
150         return FALSE;
151
152     if ((t = tree_find(tree, &conflict)) != NULL) {
153         /* already bound to something, use the existing tree */
154         tree_destroy(tree);
155         tree = NULL;
156     } else
157         t = tree;
158
159     if (conflict) {
160         g_message(_("Conflict with key binding in config file"));
161         tree_destroy(tree);
162         return FALSE;
163     }
164
165     /* find if every key in this chain has modifiers, and also find the
166        bottom node of the tree */
167     while (t->first_child) {
168         if (!t->state)
169             mods = FALSE;
170         t = t->first_child;
171     }
172
173     /* when there are no modifiers in the binding, then the action cannot
174        be interactive */
175     if (!mods && action->data.any.interactive) {
176         action->data.any.interactive = FALSE;
177         action->data.inter.final = TRUE;
178     }
179
180     /* set the action */
181     t->actions = g_slist_append(t->actions, action);
182     /* assimilate this built tree into the main tree. assimilation
183        destroys/uses the tree */
184     if (tree) tree_assimilate(tree);
185
186     return TRUE;
187 }
188
189 static void keyboard_interactive_end(guint state, gboolean cancel, Time time,
190                                      gboolean ungrab)
191 {
192     GSList *alist;
193
194     g_assert(istate.active);
195
196     alist = g_slist_append(NULL, istate.action);
197     action_run_interactive(alist, istate.client, state, time, cancel, TRUE);
198     g_slist_free(alist);
199
200     istate.active = FALSE;
201
202     if (ungrab) {
203         grab_keyboard(FALSE);
204         grab_pointer(FALSE, FALSE, OB_CURSOR_NONE);
205     }
206 }
207
208 static void keyboard_interactive_end_client(ObClient *client, gpointer data)
209 {
210     if (istate.active && istate.client == client)
211         istate.client = NULL;
212 }
213
214 gboolean keyboard_interactive_grab(guint state, ObClient *client,
215                                    ObAction *action)
216 {
217     g_assert(action->data.any.interactive);
218
219     if (!istate.active) {
220         grab_pointer(TRUE, FALSE, OB_CURSOR_POINTER);
221         if (!grab_keyboard(TRUE)) {
222             grab_pointer(FALSE, FALSE, OB_CURSOR_NONE);
223             return FALSE;
224         }
225     } else if (action->func != istate.action->func) {
226         keyboard_interactive_end(state, FALSE, action->data.any.time, FALSE);
227     }
228
229     istate.active = TRUE;
230     istate.state = state;
231     istate.client = client;
232     istate.action = action;
233
234     return TRUE;
235 }
236
237 gboolean keyboard_process_interactive_grab(const XEvent *e, ObClient **client)
238 {
239     gboolean handled = FALSE;
240     gboolean done = FALSE;
241     gboolean cancel = FALSE;
242
243     if (istate.active) {
244         if ((e->type == KeyRelease && !(istate.state & e->xkey.state)))
245             done = TRUE;
246         else if (e->type == KeyPress) {
247             /*if (e->xkey.keycode == ob_keycode(OB_KEY_RETURN))
248               done = TRUE;
249               else */if (e->xkey.keycode == ob_keycode(OB_KEY_ESCAPE))
250                   cancel = done = TRUE;
251         } else if (e->type == ButtonPress) {
252             cancel = FALSE;
253             done = TRUE;
254         }
255
256         if (done) {
257             keyboard_interactive_end(e->xkey.state, cancel, e->xkey.time,TRUE);
258
259             handled = TRUE;
260         } else
261             *client = istate.client;
262     }
263
264     return handled;
265 }
266
267 void keyboard_event(ObClient *client, const XEvent *e)
268 {
269     KeyBindingTree *p;
270
271     g_assert(e->type == KeyPress);
272
273     if (e->xkey.keycode == config_keyboard_reset_keycode &&
274         e->xkey.state == config_keyboard_reset_state)
275     {
276         ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
277         keyboard_reset_chains(-1);
278         return;
279     }
280
281     if (curpos == NULL)
282         p = keyboard_firstnode;
283     else
284         p = curpos->first_child;
285     while (p) {
286         if (p->key == e->xkey.keycode &&
287             p->state == e->xkey.state)
288         {
289             /* if we hit a key binding, then close any open menus and run it */
290             if (menu_frame_visible)
291                 menu_frame_hide_all();
292
293             if (p->first_child != NULL) { /* part of a chain */
294                 ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
295                 /* 3 second timeout for chains */
296                 ob_main_loop_timeout_add(ob_main_loop, 3 * G_USEC_PER_SEC,
297                                          chain_timeout, NULL,
298                                          g_direct_equal, NULL);
299                 set_curpos(p);
300             } else if (p->chroot)         /* an empty chroot */
301                 set_curpos(p);
302             else {
303                 keyboard_reset_chains(0);
304
305                 action_run_key(p->actions, client, e->xkey.state,
306                                e->xkey.x_root, e->xkey.y_root,
307                                e->xkey.time);
308             }
309             break;
310         }
311         p = p->next_sibling;
312     }
313 }
314
315 gboolean keyboard_interactively_grabbed()
316 {
317     return istate.active;
318 }
319
320 void keyboard_startup(gboolean reconfig)
321 {
322     grab_keys(TRUE);
323     popup = popup_new(FALSE);
324
325     if (!reconfig)
326         client_add_destructor(keyboard_interactive_end_client, NULL);
327 }
328
329 void keyboard_shutdown(gboolean reconfig)
330 {
331     if (!reconfig)
332         client_remove_destructor(keyboard_interactive_end_client);
333
334     if (istate.active)
335         keyboard_interactive_end(0, TRUE, 0, TRUE);
336
337     ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
338
339     keyboard_unbind_all();
340     set_curpos(NULL);
341
342     popup_free(popup);
343     popup = NULL;
344 }
345