]>
Dogcows Code - chaz/openbox/blob - plugins/keyboard/keyboard.c
2233a04a3042899852eef8a47f4c496cf27f5fca
1 #include "kernel/focus.h"
2 #include "kernel/dispatch.h"
3 #include "kernel/openbox.h"
4 #include "kernel/event.h"
5 #include "kernel/grab.h"
6 #include "kernel/action.h"
7 #include "kernel/parse.h"
11 #include "translate.h"
14 void plugin_setup_config()
16 parse_reg_section("keyboard", keyparse
, NULL
);
19 KeyBindingTree
*firstnode
= NULL
;
21 static KeyBindingTree
*curpos
;
22 static guint reset_key
, reset_state
;
23 static gboolean grabbed
;
25 static void grab_keys(gboolean grab
)
30 KeyBindingTree
*p
= firstnode
;
32 grab_key(p
->key
, p
->state
, GrabModeSync
);
38 static void reset_chains()
46 XAllowEvents(ob_display
, AsyncKeyboard
, event_lasttime
);
49 gboolean
kbind(GList
*keylist
, Action
*action
)
51 KeyBindingTree
*tree
, *t
;
54 g_assert(keylist
!= NULL
);
55 g_assert(action
!= NULL
);
57 if (!(tree
= tree_build(keylist
)))
59 if ((t
= tree_find(tree
, &conflict
)) != NULL
) {
60 /* already bound to something */
61 g_message("keychain is already bound");
66 g_message("conflict with binding");
71 /* grab the server here to make sure no key presses go missed */
77 while (t
->first_child
) t
= t
->first_child
;
79 /* assimilate this built tree into the main tree. assimilation
80 destroys/uses the tree */
81 tree_assimilate(tree
);
89 static void press(ObEvent
*e
, void *foo
)
91 if (e
->data
.x
.e
->xkey
.keycode
== reset_key
&&
92 e
->data
.x
.e
->xkey
.state
== reset_state
) {
99 p
= curpos
->first_child
;
101 if (p
->key
== e
->data
.x
.e
->xkey
.keycode
&&
102 p
->state
== e
->data
.x
.e
->xkey
.state
) {
103 if (p
->first_child
!= NULL
) { /* part of a chain */
108 XAllowEvents(ob_display
, AsyncKeyboard
,
113 if (p
->action
->func
!= NULL
) {
114 p
->action
->data
.any
.c
= focus_client
;
116 g_assert(!(p
->action
->func
== action_move
||
117 p
->action
->func
== action_resize
));
119 p
->action
->func(&p
->action
->data
);
131 void plugin_startup()
136 dispatch_register(Event_X_KeyPress
, (EventHandler
)press
, NULL
);
138 translate_key("C-g", &reset_state
, &reset_key
);
141 void plugin_shutdown()
143 dispatch_register(0, (EventHandler
)press
, NULL
);
146 tree_destroy(firstnode
);
This page took 0.039387 seconds and 4 git commands to generate.