]> icculus.org git repositories - dana/openbox.git/blob - openbox/keyboard.c
don't translate message saying we can't translate messages
[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 }
205
206 static void keyboard_interactive_end_client(ObClient *client, gpointer data)
207 {
208     if (istate.active && istate.client == client)
209         istate.client = NULL;
210 }
211
212 gboolean keyboard_interactive_grab(guint state, ObClient *client,
213                                    ObAction *action)
214 {
215     g_assert(action->data.any.interactive);
216
217     if (!istate.active) {
218         if (!grab_keyboard(TRUE))
219             return FALSE;
220     } else if (action->func != istate.action->func) {
221         keyboard_interactive_end(state, FALSE, action->data.any.time, FALSE);
222     }
223
224     istate.active = TRUE;
225     istate.state = state;
226     istate.client = client;
227     istate.action = action;
228
229     return TRUE;
230 }
231
232 gboolean keyboard_process_interactive_grab(const XEvent *e, ObClient **client)
233 {
234     gboolean handled = FALSE;
235     gboolean done = FALSE;
236     gboolean cancel = FALSE;
237
238     if (istate.active) {
239         if ((e->type == KeyRelease && !(istate.state & e->xkey.state))) {
240             done = TRUE;
241             handled = TRUE;
242         } else if (e->type == KeyPress) {
243             /*if (e->xkey.keycode == ob_keycode(OB_KEY_RETURN))
244               done = TRUE;
245               else */if (e->xkey.keycode == ob_keycode(OB_KEY_ESCAPE)) {
246                   cancel = done = TRUE;
247                   handled = TRUE;
248               }
249         } else if (e->type == ButtonPress) {
250             cancel = FALSE;
251             done = TRUE;
252             handled = FALSE;
253         }
254
255         if (done)
256             keyboard_interactive_end(e->xkey.state, cancel, e->xkey.time,TRUE);
257
258         if (handled)
259             *client = istate.client;
260     }
261
262     return handled;
263 }
264
265 void keyboard_event(ObClient *client, const XEvent *e)
266 {
267     KeyBindingTree *p;
268
269     g_assert(e->type == KeyPress);
270
271     if (e->xkey.keycode == config_keyboard_reset_keycode &&
272         e->xkey.state == config_keyboard_reset_state)
273     {
274         ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
275         keyboard_reset_chains(-1);
276         return;
277     }
278
279     if (curpos == NULL)
280         p = keyboard_firstnode;
281     else
282         p = curpos->first_child;
283     while (p) {
284         if (p->key == e->xkey.keycode &&
285             p->state == e->xkey.state)
286         {
287             /* if we hit a key binding, then close any open menus and run it */
288             if (menu_frame_visible)
289                 menu_frame_hide_all();
290
291             if (p->first_child != NULL) { /* part of a chain */
292                 ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
293                 /* 3 second timeout for chains */
294                 ob_main_loop_timeout_add(ob_main_loop, 3 * G_USEC_PER_SEC,
295                                          chain_timeout, NULL,
296                                          g_direct_equal, NULL);
297                 set_curpos(p);
298             } else if (p->chroot)         /* an empty chroot */
299                 set_curpos(p);
300             else {
301                 keyboard_reset_chains(0);
302
303                 action_run_key(p->actions, client, e->xkey.state,
304                                e->xkey.x_root, e->xkey.y_root,
305                                e->xkey.time);
306             }
307             break;
308         }
309         p = p->next_sibling;
310     }
311 }
312
313 gboolean keyboard_interactively_grabbed()
314 {
315     return istate.active;
316 }
317
318 void keyboard_startup(gboolean reconfig)
319 {
320     grab_keys(TRUE);
321     popup = popup_new(FALSE);
322
323     if (!reconfig)
324         client_add_destructor(keyboard_interactive_end_client, NULL);
325 }
326
327 void keyboard_shutdown(gboolean reconfig)
328 {
329     if (!reconfig)
330         client_remove_destructor(keyboard_interactive_end_client);
331
332     if (istate.active)
333         keyboard_interactive_end(0, TRUE, 0, TRUE);
334
335     ob_main_loop_timeout_remove(ob_main_loop, chain_timeout);
336
337     keyboard_unbind_all();
338     set_curpos(NULL);
339
340     popup_free(popup);
341     popup = NULL;
342 }
343