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.
30 #include "menuframe.h"
34 #include "translate.h"
35 #include "moveresize.h"
48 KeyBindingTree
*keyboard_firstnode
= NULL
;
49 static ObPopup
*popup
= NULL
;
50 static ObInteractiveState istate
;
51 static KeyBindingTree
*curpos
;
53 static void grab_keys(gboolean grab
)
57 ungrab_all_keys(RootWindow(ob_display
, ob_screen
));
60 p
= curpos
? curpos
->first_child
: keyboard_firstnode
;
62 grab_key(p
->key
, p
->state
, RootWindow(ob_display
, ob_screen
),
67 grab_key(config_keyboard_reset_keycode
,
68 config_keyboard_reset_state
,
69 RootWindow(ob_display
, ob_screen
), GrabModeAsync
);
73 static gboolean
chain_timeout(gpointer data
)
75 keyboard_reset_chains(0);
76 return FALSE
; /* don't repeat */
79 static void set_curpos(KeyBindingTree
*newpos
)
81 if (curpos
== newpos
) return;
92 for (it
= curpos
->keylist
; it
; it
= g_list_next(it
)) {
93 gchar
*oldtext
= text
;
95 text
= g_strdup(it
->data
);
97 text
= g_strconcat(text
, " - ", it
->data
, NULL
);
101 a
= screen_physical_area_monitor_active();
102 popup_position(popup
, NorthWestGravity
, a
->x
+ 10, a
->y
+ 10);
103 /* 1 second delay for the popup to show */
104 popup_delay_show(popup
, G_USEC_PER_SEC
, text
);
112 void keyboard_reset_chains(gint break_chroots
)
116 for (p
= curpos
; p
; p
= p
->parent
) {
118 if (break_chroots
== 0) break; /* stop here */
119 if (break_chroots
> 0)
126 void keyboard_unbind_all()
128 tree_destroy(keyboard_firstnode
);
129 keyboard_firstnode
= NULL
;
132 void keyboard_chroot(GList
*keylist
)
134 /* try do it in the existing tree. if we can't that means it is an empty
135 chroot binding. so add it to the tree then. */
136 if (!tree_chroot(keyboard_firstnode
, keylist
)) {
137 KeyBindingTree
*tree
;
138 if (!(tree
= tree_build(keylist
)))
140 tree_chroot(tree
, keylist
);
141 tree_assimilate(tree
);
145 gboolean
keyboard_bind(GList
*keylist
, ObAction
*action
)
147 KeyBindingTree
*tree
, *t
;
150 g_assert(keylist
!= NULL
);
151 g_assert(action
!= NULL
);
153 if (!(tree
= tree_build(keylist
)))
156 if ((t
= tree_find(tree
, &conflict
)) != NULL
) {
157 /* already bound to something, use the existing tree */
164 g_message(_("Conflict with key binding in config file"));
169 /* find the bottom node */
170 for (; t
->first_child
; t
= t
->first_child
);
172 /* when there are no modifiers in the binding, then the action cannot
174 if (!t
->state
&& action
->data
.any
.interactive
) {
175 g_print("not interactive\n");
176 action
->data
.any
.interactive
= FALSE
;
177 action
->data
.inter
.final
= TRUE
;
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
);
189 static void keyboard_interactive_end(guint state
, gboolean cancel
, Time time
,
194 g_assert(istate
.active
);
196 /* ungrab first so they won't be NotifyWhileGrabbed */
200 /* set this before running the actions so they know the keyboard is not
202 istate
.active
= FALSE
;
204 alist
= g_slist_append(NULL
, istate
.action
);
205 action_run_interactive(alist
, istate
.client
, state
, time
, cancel
, TRUE
);
208 keyboard_reset_chains(0);
211 static void keyboard_interactive_end_client(ObClient
*client
, gpointer data
)
213 if (istate
.active
&& istate
.client
== client
)
214 istate
.client
= NULL
;
218 void keyboard_interactive_cancel()
220 keyboard_interactive_end(0, TRUE
, event_curtime
, TRUE
);
223 gboolean
keyboard_interactive_grab(guint state
, ObClient
*client
,
226 g_assert(action
->data
.any
.interactive
);
228 if (!istate
.active
) {
229 if (!grab_keyboard())
231 } else if (action
->func
!= istate
.action
->func
) {
232 keyboard_interactive_end(state
, TRUE
, action
->data
.any
.time
, FALSE
);
235 istate
.active
= TRUE
;
236 istate
.state
= state
;
237 istate
.client
= client
;
238 istate
.action
= action
;
243 gboolean
keyboard_process_interactive_grab(const XEvent
*e
, ObClient
**client
)
245 gboolean handled
= FALSE
;
246 gboolean done
= FALSE
;
247 gboolean cancel
= FALSE
;
250 if ((e
->type
== KeyRelease
&& !(istate
.state
& e
->xkey
.state
))) {
253 } else if (e
->type
== KeyPress
) {
254 /*if (e->xkey.keycode == ob_keycode(OB_KEY_RETURN))
256 else */if (e
->xkey
.keycode
== ob_keycode(OB_KEY_ESCAPE
)) {
257 cancel
= done
= TRUE
;
260 } else if (e
->type
== ButtonPress
) {
267 keyboard_interactive_end(e
->xkey
.state
, cancel
, e
->xkey
.time
,TRUE
);
270 *client
= istate
.client
;
276 void keyboard_event(ObClient
*client
, const XEvent
*e
)
280 if (e
->type
== KeyRelease
) {
281 grab_key_passive_count(-1);
285 g_assert(e
->type
== KeyPress
);
286 grab_key_passive_count(1);
288 if (e
->xkey
.keycode
== config_keyboard_reset_keycode
&&
289 e
->xkey
.state
== config_keyboard_reset_state
)
291 ob_main_loop_timeout_remove(ob_main_loop
, chain_timeout
);
292 keyboard_reset_chains(-1);
297 p
= keyboard_firstnode
;
299 p
= curpos
->first_child
;
301 if (p
->key
== e
->xkey
.keycode
&&
302 p
->state
== e
->xkey
.state
)
304 /* if we hit a key binding, then close any open menus and run it */
305 if (menu_frame_visible
)
306 menu_frame_hide_all();
308 if (p
->first_child
!= NULL
) { /* part of a chain */
309 ob_main_loop_timeout_remove(ob_main_loop
, chain_timeout
);
310 /* 3 second timeout for chains */
311 ob_main_loop_timeout_add(ob_main_loop
, 3 * G_USEC_PER_SEC
,
313 g_direct_equal
, NULL
);
315 } else if (p
->chroot
) /* an empty chroot */
319 gboolean inter
= FALSE
;
321 for (it
= p
->actions
; it
&& !inter
; it
= g_slist_next(it
))
322 if (((ObAction
*)it
->data
)->data
.any
.interactive
)
324 if (!inter
) /* don't reset if the action is interactive */
325 keyboard_reset_chains(0);
327 action_run_key(p
->actions
, client
, e
->xkey
.state
,
328 e
->xkey
.x_root
, e
->xkey
.y_root
,
337 gboolean
keyboard_interactively_grabbed()
339 return istate
.active
;
342 void keyboard_startup(gboolean reconfig
)
345 popup
= popup_new(FALSE
);
346 popup_set_text_align(popup
, RR_JUSTIFY_CENTER
);
349 client_add_destroy_notify(keyboard_interactive_end_client
, NULL
);
352 void keyboard_shutdown(gboolean reconfig
)
355 client_remove_destroy_notify(keyboard_interactive_end_client
);
358 keyboard_interactive_cancel();
360 ob_main_loop_timeout_remove(ob_main_loop
, chain_timeout
);
362 keyboard_unbind_all();