1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 keyboard.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
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.
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.
17 See the COPYING file for a copy of the GNU General Public License.
28 #include "menuframe.h"
32 #include "translate.h"
33 #include "moveresize.h"
36 #include "obt/keyboard.h"
40 KeyBindingTree
*keyboard_firstnode
= NULL
;
41 static ObPopup
*popup
= NULL
;
42 static KeyBindingTree
*curpos
;
43 static guint chain_timer
= 0;
45 static void grab_keys(gboolean grab
)
49 ungrab_all_keys(obt_root(ob_screen
));
52 p
= curpos
? curpos
->first_child
: keyboard_firstnode
;
55 grab_key(p
->key
, p
->state
, obt_root(ob_screen
),
60 grab_key(config_keyboard_reset_keycode
,
61 config_keyboard_reset_state
,
62 obt_root(ob_screen
), GrabModeAsync
);
66 static gboolean
chain_timeout(gpointer data
)
68 keyboard_reset_chains(0);
70 return FALSE
; /* don't repeat */
73 static void chain_done(gpointer data
)
78 static void set_curpos(KeyBindingTree
*newpos
)
80 if (curpos
== newpos
) return;
91 for (it
= curpos
->keylist
; it
; it
= g_list_next(it
)) {
92 gchar
*oldtext
= text
;
94 text
= g_strdup(it
->data
);
96 text
= g_strconcat(text
, " - ", it
->data
, NULL
);
100 a
= screen_physical_area_primary(FALSE
);
101 popup_position(popup
, NorthWestGravity
, a
->x
+ 10, a
->y
+ 10);
102 /* 1 second delay for the popup to show */
103 popup_delay_show(popup
, 1000, text
);
110 void keyboard_reset_chains(gint break_chroots
)
114 for (p
= curpos
; p
; p
= p
->parent
) {
116 if (break_chroots
== 0) break; /* stop here */
117 if (break_chroots
> 0)
124 void keyboard_unbind_all(void)
126 tree_destroy(keyboard_firstnode
);
127 keyboard_firstnode
= NULL
;
130 void keyboard_chroot(GList
*keylist
)
132 /* try do it in the existing tree. if we can't that means it is an empty
133 chroot binding. so add it to the tree then. */
134 if (!tree_chroot(keyboard_firstnode
, keylist
)) {
135 KeyBindingTree
*tree
;
136 if (!(tree
= tree_build(keylist
)))
138 tree_chroot(tree
, keylist
);
139 tree_assimilate(tree
);
143 gboolean
keyboard_bind(GList
*keylist
, ObActionsAct
*action
)
145 KeyBindingTree
*tree
, *t
;
148 g_assert(keylist
!= NULL
);
149 g_assert(action
!= NULL
);
151 if (!(tree
= tree_build(keylist
)))
154 if ((t
= tree_find(tree
, &conflict
)) != NULL
) {
155 /* already bound to something, use the existing tree */
162 g_message(_("Conflict with key binding in config file"));
167 /* find the bottom node */
168 for (; t
->first_child
; t
= t
->first_child
);
171 t
->actions
= g_slist_append(t
->actions
, action
);
172 /* assimilate this built tree into the main tree. assimilation
173 destroys/uses the tree */
174 if (tree
) tree_assimilate(tree
);
180 gboolean
keyboard_process_interactive_grab(const XEvent
*e
, ObClient
**client
)
182 gboolean handled
= FALSE
;
183 gboolean done
= FALSE
;
184 gboolean cancel
= FALSE
;
187 mods
= obt_keyboard_only_modmasks(ev
->xkey
.state
);
190 if ((e
->type
== KeyRelease
&& !(istate
.state
& mods
))) {
193 } else if (e
->type
== KeyPress
) {
194 /*if (e->xkey.keycode == ob_keycode(OB_KEY_RETURN))
196 else */if (e
->xkey
.keycode
== ob_keycode(OB_KEY_ESCAPE
)) {
197 cancel
= done
= TRUE
;
200 } else if (e
->type
== ButtonPress
) {
207 keyboard_interactive_end(e
->xkey
.state
, cancel
, e
->xkey
.time
,TRUE
);
210 *client
= istate
.client
;
217 gboolean
keyboard_event(ObClient
*client
, const XEvent
*e
)
223 if (e
->type
== KeyRelease
) {
224 grab_key_passive_count(-1);
228 g_assert(e
->type
== KeyPress
);
229 grab_key_passive_count(1);
231 mods
= obt_keyboard_only_modmasks(e
->xkey
.state
);
233 if (e
->xkey
.keycode
== config_keyboard_reset_keycode
&&
234 mods
== config_keyboard_reset_state
)
236 if (chain_timer
) g_source_remove(chain_timer
);
237 keyboard_reset_chains(-1);
243 p
= keyboard_firstnode
;
245 p
= curpos
->first_child
;
247 if (p
->key
== e
->xkey
.keycode
&& p
->state
== mods
) {
248 /* if we hit a key binding, then close any open menus and run it */
249 if (menu_frame_visible
)
250 menu_frame_hide_all();
252 if (p
->first_child
!= NULL
) { /* part of a chain */
253 if (chain_timer
) g_source_remove(chain_timer
);
254 /* 3 second timeout for chains */
256 g_timeout_add_full(G_PRIORITY_DEFAULT
,
257 3000, chain_timeout
, NULL
,
260 } else if (p
->chroot
) /* an empty chroot */
265 for (it
= p
->actions
; it
; it
= g_slist_next(it
))
266 if (actions_act_is_interactive(it
->data
)) break;
267 if (it
== NULL
) /* reset if the actions are not interactive */
268 keyboard_reset_chains(0);
270 actions_run_acts(p
->actions
, OB_USER_ACTION_KEYBOARD_KEY
,
271 e
->xkey
.state
, e
->xkey
.x_root
, e
->xkey
.y_root
,
272 0, OB_FRAME_CONTEXT_NONE
, client
);
282 static void node_rebind(KeyBindingTree
*node
)
284 if (node
->first_child
) {
285 /* find leaf nodes */
286 node_rebind(node
->first_child
);
288 /* for internal nodes, add them to the tree if they
289 are a chroot, but do this after adding their
292 keyboard_chroot(node
->keylist
);
295 /* for leaf nodes, rebind each action assigned to it */
296 while (node
->actions
) {
297 /* add each action, and remove them from the original tree so
298 they don't get free'd on us */
299 keyboard_bind(node
->keylist
, node
->actions
->data
);
300 node
->actions
= g_slist_delete_link(node
->actions
, node
->actions
);
304 keyboard_chroot(node
->keylist
);
307 /* go through each sibling */
308 if (node
->next_sibling
) node_rebind(node
->next_sibling
);
311 void keyboard_rebind(void)
315 old
= keyboard_firstnode
;
316 keyboard_firstnode
= NULL
;
324 void keyboard_startup(gboolean reconfig
)
328 popup_set_text_align(popup
, RR_JUSTIFY_CENTER
);
331 void keyboard_shutdown(gboolean reconfig
)
333 if (chain_timer
) g_source_remove(chain_timer
);
335 keyboard_unbind_all();