1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
4 # include "../config.h"
13 #include "otk/display.hh"
19 #define _(str) gettext(str)
26 static bool buttonvalue(const std::string
&button
, unsigned int *val
)
28 if (button
== "Left" || button
== "1" || button
== "Button1") {
30 } else if (button
== "Middle" || button
== "2" || button
== "Button2") {
32 } else if (button
== "Right" || button
== "3" || button
== "Button3") {
34 } else if (button
== "Up" || button
== "4" || button
== "Button4") {
36 } else if (button
== "Down" || button
== "5" || button
== "Button5") {
43 static bool modvalue(const std::string
&mod
, unsigned int *val
)
45 if (mod
== "C") { // control
47 } else if (mod
== "S") { // shift
49 } else if (mod
== "A" || // alt/mod1
54 } else if (mod
== "Mod2" || // mod2
57 } else if (mod
== "Mod3" || // mod3
60 } else if (mod
== "W" || // windows/mod4
64 } else if (mod
== "Mod5" || // mod5
73 bool Bindings::translate(const std::string
&str
, Binding
&b
,bool askey
) const
75 // parse out the base key name
76 std::string::size_type keybegin
= str
.find_last_of('-');
77 keybegin
= (keybegin
== std::string::npos
) ? 0 : keybegin
+ 1;
78 std::string
key(str
, keybegin
);
80 // parse out the requested modifier keys
81 unsigned int modval
= 0;
82 std::string::size_type begin
= 0, end
;
83 while (begin
!= keybegin
) {
84 end
= str
.find_first_of('-', begin
);
86 std::string
mod(str
, begin
, end
-begin
);
87 if (!modvalue(mod
, &modval
)) {
88 printf(_("Invalid modifier element in key binding: %s\n"), mod
.c_str());
98 KeySym sym
= XStringToKeysym(const_cast<char *>(key
.c_str()));
99 if (sym
== NoSymbol
) {
100 printf(_("Invalid Key name in key binding: %s\n"), key
.c_str());
103 if (!(b
.key
= XKeysymToKeycode(**otk::display
, sym
)))
104 printf(_("No valid keycode for Key in key binding: %s\n"), key
.c_str());
107 return buttonvalue(key
, &b
.key
);
111 static void destroytree(KeyBindingTree
*tree
)
114 KeyBindingTree
*c
= tree
->first_child
;
120 KeyBindingTree
*Bindings::buildtree(const StringVect
&keylist
,
121 PyObject
*callback
) const
123 if (keylist
.empty()) return 0; // nothing in the list.. return 0
125 KeyBindingTree
*ret
= 0, *p
;
127 StringVect::const_reverse_iterator it
, end
= keylist
.rend();
128 for (it
= keylist
.rbegin(); it
!= end
; ++it
) {
130 ret
= new KeyBindingTree();
132 // this is the first built node, the bottom node of the tree
134 ret
->callbacks
.push_back(callback
);
136 ret
->first_child
= p
;
137 if (!translate(*it
, ret
->binding
)) {
148 : _curpos(&_keytree
),
150 _timer((otk::Timer
*) 0),
151 _keybgrab_callback(0)
153 // setResetKey("C-g"); // set the default reset key
157 Bindings::~Bindings()
164 // removeAllButtons(); XXX
169 void Bindings::assimilate(KeyBindingTree
*node
)
171 KeyBindingTree
*a
, *b
, *tmp
, *last
;
173 if (!_keytree
.first_child
) {
174 // there are no nodes at this level yet
175 _keytree
.first_child
= node
;
177 a
= _keytree
.first_child
;
182 if (a
->binding
!= b
->binding
) {
191 if (last
->binding
!= b
->binding
)
192 last
->next_sibling
= b
;
194 last
->first_child
= b
->first_child
;
201 KeyBindingTree
*Bindings::find(KeyBindingTree
*search
,
202 bool *conflict
) const {
204 KeyBindingTree
*a
, *b
;
205 a
= _keytree
.first_child
;
208 if (a
->binding
!= b
->binding
) {
211 if (a
->chain
== b
->chain
) {
213 // found it! (return the actual id, not the search's)
218 return 0; // the chain status' don't match (conflict!)
224 return 0; // it just isn't in here
228 bool Bindings::addKey(const StringVect
&keylist
, PyObject
*callback
)
230 KeyBindingTree
*tree
, *t
;
233 if (!(tree
= buildtree(keylist
, callback
)))
234 return false; // invalid binding requested
236 t
= find(tree
, &conflict
);
238 // conflicts with another binding
244 // already bound to something
245 // XXX: look if callback is already bound to this key?
246 t
->callbacks
.push_back(callback
);
249 // grab the server here to make sure no key pressed go missed
250 otk::display
->grab();
253 // assimilate this built tree into the main tree
254 assimilate(tree
); // assimilation destroys/uses the tree
257 otk::display
->ungrab();
266 bool Bindings::removeKey(const StringVect
&keylist
, PyObject
*callback
)
268 assert(false); // XXX: function not implemented yet
270 KeyBindingTree
*tree
;
273 if (!(tree
= buildtree(keylist
, 0)))
274 return false; // invalid binding requested
276 KeyBindingTree
*t
= find(tree
, &conflict
);
278 CallbackList::iterator it
= std::find(t
->callbacks
.begin(),
281 if (it
!= t
->callbacks
.end()) {
282 // grab the server here to make sure no key pressed go missed
283 otk::display
->grab();
288 // XXX do shit here ...
292 otk::display
->ungrab();
301 void Bindings::setResetKey(const std::string
&key
)
304 if (translate(key
, b
)) {
305 // grab the server here to make sure no key pressed go missed
306 otk::display
->grab();
308 _resetkey
.key
= b
.key
;
309 _resetkey
.modifiers
= b
.modifiers
;
311 otk::display
->ungrab();
316 static void remove_branch(KeyBindingTree
*first
)
318 KeyBindingTree
*p
= first
;
322 remove_branch(p
->first_child
);
323 KeyBindingTree
*s
= p
->next_sibling
;
324 while(!p
->callbacks
.empty()) {
325 Py_XDECREF(p
->callbacks
.front());
326 p
->callbacks
.pop_front();
334 void Bindings::removeAllKeys()
337 if (_keytree
.first_child
) {
338 remove_branch(_keytree
.first_child
);
339 _keytree
.first_child
= 0;
345 void Bindings::grabKeys(bool grab
)
347 for (int i
= 0; i
< openbox
->screenCount(); ++i
) {
348 Window root
= otk::display
->screenInfo(i
)->rootWindow();
350 KeyBindingTree
*p
= _curpos
->first_child
;
353 otk::display
->grabKey(p
->binding
.key
, p
->binding
.modifiers
,
354 root
, false, GrabModeAsync
, GrabModeAsync
,
358 otk::display
->ungrabKey(p
->binding
.key
, p
->binding
.modifiers
,
365 otk::display
->grabKey(_resetkey
.key
, _resetkey
.modifiers
,
366 root
, false, GrabModeAsync
, GrabModeAsync
,
369 otk::display
->ungrabKey(_resetkey
.key
, _resetkey
.modifiers
,
375 bool Bindings::grabKeyboard(PyObject
*callback
)
378 if (_keybgrab_callback
) return false; // already grabbed
380 int screen
= openbox
->screen(0)->number();
381 Window root
= otk::display
->screenInfo(screen
)->rootWindow();
382 if (XGrabKeyboard(**otk::display
, root
, false, GrabModeAsync
,
383 GrabModeAsync
, CurrentTime
))
385 printf("****GRABBED****\n");
386 _keybgrab_callback
= callback
;
391 void Bindings::ungrabKeyboard()
393 if (!_keybgrab_callback
) return; // not grabbed
395 _keybgrab_callback
= 0;
396 XUngrabKeyboard(**otk::display
, CurrentTime
);
397 printf("****UNGRABBED****\n");
401 void Bindings::fireKey(int screen
, unsigned int modifiers
, unsigned int key
,
402 Time time
, KeyAction action
)
404 if (_keybgrab_callback
) {
405 Client
*c
= openbox
->focusedClient();
406 KeyData
data(screen
, c
, time
, modifiers
, key
, action
);
407 python_callback(_keybgrab_callback
, &data
);
409 // KeyRelease events only occur during keyboard grabs
410 if (action
== EventKeyRelease
) return;
412 if (key
== _resetkey
.key
&& modifiers
== _resetkey
.modifiers
) {
415 KeyBindingTree
*p
= _curpos
->first_child
;
417 if (p
->binding
.key
== key
&& p
->binding
.modifiers
== modifiers
) {
421 _timer
= new otk::Timer(5000, // 5 second timeout
422 (otk::Timer::TimeoutHandler
)resetChains
,
424 // grab the server here to make sure no key pressed go missed
425 otk::display
->grab();
429 otk::display
->ungrab();
431 Client
*c
= openbox
->focusedClient();
432 KeyData
data(screen
, c
, time
, modifiers
, key
, action
);
433 CallbackList::iterator it
, end
= p
->callbacks
.end();
434 for (it
= p
->callbacks
.begin(); it
!= end
; ++it
)
435 python_callback(*it
, &data
);
446 void Bindings::resetChains(Bindings
*self
)
450 self
->_timer
= (otk::Timer
*) 0;
452 // grab the server here to make sure no key pressed go missed
453 otk::display
->grab();
454 self
->grabKeys(false);
455 self
->_curpos
= &self
->_keytree
;
456 self
->grabKeys(true);
457 otk::display
->ungrab();
461 bool Bindings::addButton(const std::string
&but
, MouseContext context
,
462 MouseAction action
, PyObject
*callback
)
464 assert(context
>= 0 && context
< NUM_MOUSE_CONTEXT
);
467 if (!translate(but
, b
, false))
470 ButtonBindingList::iterator it
, end
= _buttons
[context
].end();
472 // look for a duplicate binding
473 for (it
= _buttons
[context
].begin(); it
!= end
; ++it
)
474 if ((*it
)->binding
.key
== b
.key
&&
475 (*it
)->binding
.modifiers
== b
.modifiers
) {
481 // the binding didnt exist yet, add it
483 bind
= new ButtonBinding();
484 bind
->binding
.key
= b
.key
;
485 bind
->binding
.modifiers
= b
.modifiers
;
486 _buttons
[context
].push_back(bind
);
487 // grab the button on all clients
488 for (int sn
= 0; sn
< openbox
->screenCount(); ++sn
) {
489 Screen
*s
= openbox
->screen(sn
);
490 Client::List::iterator c_it
, c_end
= s
->clients
.end();
491 for (c_it
= s
->clients
.begin(); c_it
!= c_end
; ++c_it
) {
492 grabButton(true, bind
->binding
, context
, *c_it
);
497 bind
->callbacks
[action
].push_back(callback
);
502 void Bindings::removeAllButtons()
504 for (int i
= 0; i
< NUM_MOUSE_CONTEXT
; ++i
) {
505 ButtonBindingList::iterator it
, end
= _buttons
[i
].end();
506 for (it
= _buttons
[i
].begin(); it
!= end
; ++it
) {
507 for (int a
= 0; a
< NUM_MOUSE_ACTION
; ++a
) {
508 while (!(*it
)->callbacks
[a
].empty()) {
509 Py_XDECREF((*it
)->callbacks
[a
].front());
510 (*it
)->callbacks
[a
].pop_front();
513 // ungrab the button on all clients
514 for (int sn
= 0; sn
< openbox
->screenCount(); ++sn
) {
515 Screen
*s
= openbox
->screen(sn
);
516 Client::List::iterator c_it
, c_end
= s
->clients
.end();
517 for (c_it
= s
->clients
.begin(); c_it
!= c_end
; ++c_it
) {
518 grabButton(false, (*it
)->binding
, (MouseContext
)i
, *c_it
);
525 void Bindings::grabButton(bool grab
, const Binding
&b
, MouseContext context
,
529 int mode
= GrabModeAsync
;
533 win
= client
->frame
->window();
534 mask
= ButtonPressMask
| ButtonMotionMask
| ButtonReleaseMask
;
537 win
= client
->frame
->plate();
538 mode
= GrabModeSync
; // this is handled in fireButton
539 mask
= ButtonPressMask
; // can't catch more than this with Sync mode
540 // the release event is manufactured by the
541 // master buttonPressHandler
544 // any other elements already get button events, don't grab on them
548 otk::display
->grabButton(b
.key
, b
.modifiers
, win
, false, mask
, mode
,
549 GrabModeAsync
, None
, None
, false);
551 otk::display
->ungrabButton(b
.key
, b
.modifiers
, win
);
554 void Bindings::grabButtons(bool grab
, Client
*client
)
556 for (int i
= 0; i
< NUM_MOUSE_CONTEXT
; ++i
) {
557 ButtonBindingList::iterator it
, end
= _buttons
[i
].end();
558 for (it
= _buttons
[i
].begin(); it
!= end
; ++it
)
559 grabButton(grab
, (*it
)->binding
, (MouseContext
)i
, client
);
563 void Bindings::fireButton(MouseData
*data
)
565 if (data
->context
== MC_Window
) {
566 // Replay the event, so it goes to the client, and ungrab the device.
567 XAllowEvents(**otk::display
, ReplayPointer
, data
->time
);
570 ButtonBindingList::iterator it
, end
= _buttons
[data
->context
].end();
571 for (it
= _buttons
[data
->context
].begin(); it
!= end
; ++it
)
572 if ((*it
)->binding
.key
== data
->button
&&
573 (*it
)->binding
.modifiers
== data
->state
) {
574 CallbackList::iterator c_it
,c_end
= (*it
)->callbacks
[data
->action
].end();
575 for (c_it
= (*it
)->callbacks
[data
->action
].begin();
576 c_it
!= c_end
; ++c_it
)
577 python_callback(*c_it
, data
);
582 bool Bindings::addEvent(EventAction action
, PyObject
*callback
)
584 if (action
< 0 || action
>= NUM_EVENTS
) {
588 if (action
== EventBell
&& _eventlist
[action
].empty())
589 XkbSelectEvents(**otk::display
, XkbUseCoreKbd
,
590 XkbBellNotifyMask
, XkbBellNotifyMask
);
592 _eventlist
[action
].push_back(callback
);
597 bool Bindings::removeEvent(EventAction action
, PyObject
*callback
)
599 if (action
< 0 || action
>= NUM_EVENTS
) {
603 CallbackList::iterator it
= std::find(_eventlist
[action
].begin(),
604 _eventlist
[action
].end(),
606 if (it
!= _eventlist
[action
].end()) {
608 _eventlist
[action
].erase(it
);
610 if (action
== EventBell
&& _eventlist
[action
].empty())
611 XkbSelectEvents(**otk::display
, XkbUseCoreKbd
,
612 XkbBellNotifyMask
, 0);
619 void Bindings::removeAllEvents()
621 for (int i
= 0; i
< NUM_EVENTS
; ++i
) {
622 while (!_eventlist
[i
].empty()) {
623 Py_XDECREF(_eventlist
[i
].front());
624 _eventlist
[i
].pop_front();
629 void Bindings::fireEvent(EventData
*data
)
631 CallbackList::iterator c_it
, c_end
= _eventlist
[data
->action
].end();
632 for (c_it
= _eventlist
[data
->action
].begin(); c_it
!= c_end
; ++c_it
)
633 python_callback(*c_it
, data
);