]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/screen.cc
dont use an invalid iterator in handleKeypress, also, update _last_active is it needs...
[mikachu/openbox.git] / util / epist / screen.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // screen.cc for Epistrophy - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 /* A few comments about stacked cycling:
24  * When stacked cycling is turned on, the focused window is always at the top
25  * (front) of the list (_clients), EXCEPT for when we are in cycling mode.
26  * (_cycling is true) If we were to add the focused window to the top of the
27  * stack while we were cycling, we would end in a deadlock between 2 windows.
28  * When the modifiers are released, the window that has focus (but it's not
29  * at the top of the stack, since we are cycling) is placed at the top of the
30  * stack and raised.
31  * Hooray and Bummy. - Marius
32  */
33
34 #ifdef    HAVE_CONFIG_H
35 #  include "../../config.h"
36 #endif // HAVE_CONFIG_H
37
38 extern "C" {
39 #ifdef    HAVE_STDIO_H
40 #  include <stdio.h>
41 #endif // HAVE_STDIO_H
42
43 #ifdef    HAVE_UNISTD_H
44 #  include <sys/types.h>
45 #  include <unistd.h>
46 #endif // HAVE_UNISTD_H
47
48 #include <X11/keysym.h>
49 }
50
51 #include <iostream>
52 #include <string>
53
54 using std::cout;
55 using std::endl;
56 using std::hex;
57 using std::dec;
58 using std::string;
59
60 #include "../../src/BaseDisplay.hh"
61 #include "../../src/XAtom.hh"
62 #include "screen.hh"
63 #include "epist.hh"
64 #include "config.hh"
65
66 screen::screen(epist *epist, int number) 
67   : _clients(epist->clientsList()), _active(epist->activeWindow()),
68     _config(epist->getConfig()), _grabbed(true), _cycling(false),
69     _stacked_cycling(false)
70 {
71   _epist = epist;
72   _xatom = _epist->xatom();
73   _last_active = _clients.end();
74   _number = number;
75   _info = _epist->getScreenInfo(_number);
76   _root = _info->getRootWindow();
77
78   _config->getValue(Config::stackedCycling, _stacked_cycling);
79
80   // find a window manager supporting NETWM, waiting for it to load if we must
81   int count = 20;  // try for 20 seconds
82   _managed = false;
83   while (! (_epist->doShutdown() || _managed || count <= 0)) {
84     if (! (_managed = findSupportingWM()))
85       sleep(1);
86     --count;
87   }
88   if (_managed)
89     cout << "Found compatible window manager '" << _wm_name << "' for screen "
90          << _number << ".\n";
91   else {
92     cout << "Unable to find a compatible window manager for screen " <<
93       _number << ".\n";
94     return;
95   }
96  
97   XSelectInput(_epist->getXDisplay(), _root, PropertyChangeMask);
98 }
99
100 screen::~screen() {
101   if (_managed)
102     XSelectInput(_epist->getXDisplay(), _root, None);
103 }
104
105
106 bool screen::findSupportingWM() {
107   Window support_win;
108   if (! _xatom->getValue(_root, XAtom::net_supporting_wm_check, XAtom::window,
109                          support_win) || support_win == None)
110     return false;
111
112   string title;
113   _xatom->getValue(support_win, XAtom::net_wm_name, XAtom::utf8, title);
114   _wm_name = title;
115   return true;
116 }
117
118
119 XWindow *screen::findWindow(const XEvent &e) const {
120   assert(_managed);
121
122   WindowList::const_iterator it, end = _clients.end();
123   for (it = _clients.begin(); it != end; ++it)
124     if (**it == e.xany.window)
125       break;
126   if(it == end)
127     return 0;
128   return *it;
129 }
130
131
132 void screen::processEvent(const XEvent &e) {
133   assert(_managed);
134   assert(e.xany.window == _root);
135
136   switch (e.type) {
137   case PropertyNotify:
138     // root window
139     if (e.xproperty.atom == _xatom->getAtom(XAtom::net_number_of_desktops))
140       updateNumDesktops();
141     else if (e.xproperty.atom == _xatom->getAtom(XAtom::net_current_desktop))
142       updateActiveDesktop();
143     else if (e.xproperty.atom == _xatom->getAtom(XAtom::net_active_window))
144       updateActiveWindow();
145     else if (e.xproperty.atom == _xatom->getAtom(XAtom::net_client_list)) {
146       // catch any window unmaps first
147       XEvent ev;
148       if (XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
149                                  DestroyNotify, &ev) ||
150           XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
151                                  UnmapNotify, &ev)) {
152         processEvent(ev);
153       }
154
155       updateClientList();
156     }
157     break;
158   case KeyPress:
159     handleKeypress(e);
160     break;
161
162   case KeyRelease:
163     handleKeyrelease(e);
164     break;
165
166   default:
167     break;
168   }
169 }
170
171 void screen::handleKeypress(const XEvent &e) {
172   int scrolllockMask, numlockMask;
173   _epist->getLockModifiers(numlockMask, scrolllockMask);
174   
175   // Mask out the lock modifiers. We want our keys to always work
176   // This should be made an option
177   unsigned int state = e.xkey.state & ~(LockMask|scrolllockMask|numlockMask);
178   keytree &ktree = _epist->getKeyTree();
179   const Action *it = ktree.getAction(e, state, this);
180
181   if (!it)
182     return;
183
184   switch (it->type()) {
185   case Action::nextScreen:
186     _epist->cycleScreen(_number, true);
187     return;
188
189   case Action::prevScreen:
190     _epist->cycleScreen(_number, false);
191     return;
192
193   case Action::nextWorkspace:
194     cycleWorkspace(true, it->number() != 0 ? it->number(): 1);
195     return;
196
197   case Action::prevWorkspace:
198     cycleWorkspace(false, it->number() != 0 ? it->number(): 1);
199     return;
200
201   case Action::nextWindow:
202     
203     cycleWindow(state, true, it->number() != 0 ? it->number(): 1);
204     return;
205
206   case Action::prevWindow:
207     cycleWindow(state, false, it->number() != 0 ? it->number(): 1);
208     return;
209
210   case Action::nextWindowOnAllWorkspaces:
211     cycleWindow(state, true, it->number() != 0 ? it->number(): 1,  false, true);
212     return;
213
214   case Action::prevWindowOnAllWorkspaces:
215     cycleWindow(state, false, it->number() != 0 ? it->number(): 1, false, true);
216     return;
217
218   case Action::nextWindowOnAllScreens:
219     cycleWindow(state, true, it->number() != 0 ? it->number(): 1, true);
220     return;
221
222   case Action::prevWindowOnAllScreens:
223     cycleWindow(state, false, it->number() != 0 ? it->number(): 1, true);
224     return;
225
226   case Action::nextWindowOfClass:
227     cycleWindow(state, true, it->number() != 0 ? it->number(): 1,
228                 false, false, true, it->string());
229     return;
230
231   case Action::prevWindowOfClass:
232     cycleWindow(state, false, it->number() != 0 ? it->number(): 1,
233                 false, false, true, it->string());
234     return;
235       
236   case Action::nextWindowOfClassOnAllWorkspaces:
237     cycleWindow(state, true, it->number() != 0 ? it->number(): 1,
238                 false, true, true, it->string());
239     return;
240       
241   case Action::prevWindowOfClassOnAllWorkspaces:
242     cycleWindow(state, false, it->number() != 0 ? it->number(): 1,
243                 false, true, true, it->string());
244     return;
245
246   case Action::changeWorkspace:
247     changeWorkspace(it->number());
248     return;
249
250   case Action::upWorkspace:
251     changeWorkspaceVert(-1);
252     return;
253
254   case Action::downWorkspace:
255     changeWorkspaceVert(1);
256     return;
257
258   case Action::leftWorkspace:
259     changeWorkspaceHorz(-1);
260     return;
261
262   case Action::rightWorkspace:
263     changeWorkspaceHorz(1);
264     return;
265
266   case Action::execute:
267     execCommand(it->string());
268     return;
269
270   case Action::showRootMenu:
271     _xatom->sendClientMessage(rootWindow(), XAtom::openbox_show_root_menu,
272                               None);
273     return;
274
275   case Action::showWorkspaceMenu:
276     _xatom->sendClientMessage(rootWindow(), XAtom::openbox_show_workspace_menu,
277                               None);
278     return;
279
280   case Action::toggleGrabs: {
281     if (_grabbed) {
282       ktree.ungrabDefaults(this);
283       _grabbed = false;
284     } else {
285       ktree.grabDefaults(this);
286       _grabbed = true;
287     }
288     return;
289   }
290
291   default:
292     break;
293   }
294
295   // these actions require an active window
296   if (_active != _clients.end()) {
297     XWindow *window = *_active;
298       
299     switch (it->type()) {
300     case Action::iconify:
301       window->iconify();
302       return;
303
304     case Action::close:
305       window->close();
306       return;
307
308     case Action::raise:
309       window->raise();
310       return;
311
312     case Action::lower:
313       window->lower();
314       return;
315
316     case Action::sendToWorkspace:
317       window->sendTo(it->number());
318       return;
319
320     case Action::toggleOmnipresent:
321       if (window->desktop() == 0xffffffff)
322         window->sendTo(_active_desktop);
323       else
324         window->sendTo(0xffffffff);
325       return;
326
327     case Action::moveWindowUp:
328       window->move(window->x(), window->y() -
329                    (it->number() != 0 ? it->number(): 1));
330       return;
331       
332     case Action::moveWindowDown:
333       window->move(window->x(), window->y() +
334                    (it->number() != 0 ? it->number(): 1));
335       return;
336       
337     case Action::moveWindowLeft:
338       window->move(window->x() - (it->number() != 0 ? it->number(): 1),
339                    window->y());
340       return;
341       
342     case Action::moveWindowRight:
343       window->move(window->x() + (it->number() != 0 ? it->number(): 1),
344                    window->y());
345       return;
346       
347     case Action::resizeWindowWidth:
348       window->resizeRel(it->number(), 0);
349       return;
350       
351     case Action::resizeWindowHeight:
352       window->resizeRel(0, it->number());
353       return;
354       
355     case Action::toggleShade:
356       window->shade(! window->shaded());
357       return;
358       
359     case Action::toggleMaximizeHorizontal:
360       window->toggleMaximize(XWindow::Max_Horz);
361       return;
362       
363     case Action::toggleMaximizeVertical:
364       window->toggleMaximize(XWindow::Max_Vert);
365       return;
366       
367     case Action::toggleMaximizeFull:
368       window->toggleMaximize(XWindow::Max_Full);
369       return;
370
371     case Action::toggleDecorations:
372       window->decorate(! window->decorated());
373       return;
374       
375     default:
376       assert(false);  // unhandled action type!
377       break;
378     }
379   }
380 }
381
382
383 void screen::handleKeyrelease(const XEvent &) {
384   // the only keyrelease event we care about (for now) is when we do stacked
385   // cycling and the modifier is released
386   if (_stacked_cycling && _cycling && nothingIsPressed()) {
387     // all modifiers have been released. ungrab the keyboard, move the
388     // focused window to the top of the Z-order and raise it
389     ungrabModifiers();
390
391     if (_active != _clients.end()) {
392       XWindow *w = *_active;
393       bool e = _last_active == _active;
394       _clients.remove(w);
395       _clients.push_front(w);
396       _active = _clients.begin();
397       if (e) _last_active = _active;
398       w->raise();
399     }
400
401     _cycling = false;
402   }
403 }
404
405
406 // do we want to add this window to our list?
407 bool screen::doAddWindow(Window window) const {
408   assert(_managed);
409
410   Atom type;
411   if (! _xatom->getValue(window, XAtom::net_wm_window_type, XAtom::atom,
412                          type))
413     return True;
414
415   if (type == _xatom->getAtom(XAtom::net_wm_window_type_dock) ||
416       type == _xatom->getAtom(XAtom::net_wm_window_type_menu))
417     return False;
418
419   return True;
420 }
421
422
423 void screen::updateEverything() {
424   updateNumDesktops();
425   updateActiveDesktop();
426   updateClientList();
427   updateActiveWindow();
428 }
429
430
431 void screen::updateNumDesktops() {
432   assert(_managed);
433
434   if (! _xatom->getValue(_root, XAtom::net_number_of_desktops, XAtom::cardinal,
435                          (unsigned long)_num_desktops))
436     _num_desktops = 1;  // assume that there is at least 1 desktop!
437 }
438
439
440 void screen::updateActiveDesktop() {
441   assert(_managed);
442
443   if (! _xatom->getValue(_root, XAtom::net_current_desktop, XAtom::cardinal,
444                          (unsigned long)_active_desktop))
445     _active_desktop = 0;  // there must be at least one desktop, and it must
446                           // be the current one
447 }
448
449
450 void screen::updateClientList() {
451   assert(_managed);
452
453   WindowList::iterator insert_point = _active;
454   if (insert_point != _clients.end())
455     ++insert_point; // get to the item client the focused client
456   
457   // get the client list from the root window
458   Window *rootclients = 0;
459   unsigned long num = (unsigned) -1;
460   if (! _xatom->getValue(_root, XAtom::net_client_list, XAtom::window, num,
461                          &rootclients))
462     num = 0;
463
464   WindowList::iterator it;
465   const WindowList::iterator end = _clients.end();
466   unsigned long i;
467   
468   for (i = 0; i < num; ++i) {
469     for (it = _clients.begin(); it != end; ++it)
470       if (**it == rootclients[i])
471         break;
472     if (it == end) {  // didn't already exist
473       if (doAddWindow(rootclients[i])) {
474 //        cout << "Added window: 0x" << hex << rootclients[i] << dec << endl;
475         if (_stacked_cycling) {
476           // insert new clients after the active window
477           _clients.insert(insert_point, new XWindow(_epist, this,
478                                                     rootclients[i]));
479         } else {
480           // insert new clients at the front of the list
481           _clients.push_front(new XWindow(_epist, this, rootclients[i]));
482         }
483       }
484     }
485   }
486
487   // remove clients that no longer exist (that belong to this screen)
488   for (it = _clients.begin(); it != end;) {
489     WindowList::iterator it2 = it;
490     ++it;
491
492     // is on another screen?
493     if ((*it2)->getScreen() != this)
494       continue;
495
496     for (i = 0; i < num; ++i)
497       if (**it2 == rootclients[i])
498         break;
499     if (i == num)  { // no longer exists
500       //      cout << "Removed window: 0x" << hex << (*it2)->window() << dec << endl;
501       // watch for the active and last-active window
502       if (it2 == _active)
503         _active = _clients.end();
504       if (it2 == _last_active)
505         _last_active = _clients.end();
506       delete *it2;
507       _clients.erase(it2);
508     }
509   }
510
511   if (rootclients) delete [] rootclients;
512 }
513
514
515 const XWindow *screen::lastActiveWindow() const {
516   if (_last_active != _clients.end())
517     return *_last_active;
518
519   // find a window if one exists
520   WindowList::const_iterator it, end = _clients.end();
521   for (it = _clients.begin(); it != end; ++it)
522     if ((*it)->getScreen() == this && ! (*it)->iconic() &&
523         ((*it)->desktop() == 0xffffffff || (*it)->desktop() == _active_desktop))
524       return *it;
525
526   // no windows on this screen
527   return 0;
528 }
529
530
531 void screen::updateActiveWindow() {
532   assert(_managed);
533
534   Window a = None;
535   _xatom->getValue(_root, XAtom::net_active_window, XAtom::window, a);
536   
537   WindowList::iterator it, end = _clients.end();
538   for (it = _clients.begin(); it != end; ++it) {
539     if (**it == a) {
540       if ((*it)->getScreen() != this)
541         return;
542       break;
543     }
544   }
545
546   _active = it;
547
548   if (_active != end) {
549     /* if we're not cycling and a window gets focus, add it to the top of the
550      * cycle stack.
551      */
552     if (_stacked_cycling && !_cycling) {
553       XWindow *win = *_active;
554       _clients.remove(win);
555       _clients.push_front(win);
556       _active = _clients.begin();
557     }
558
559     _last_active = _active;
560   }
561
562   /*  cout << "Active window is now: ";
563       if (_active == _clients.end()) cout << "None\n";
564       else cout << "0x" << hex << (*_active)->window() << dec << endl;
565   */
566 }
567
568
569 void screen::execCommand(const string &cmd) const {
570   pid_t pid;
571   if ((pid = fork()) == 0) {
572     // make the command run on the correct screen
573     if (putenv(const_cast<char*>(_info->displayString().c_str()))) {
574       cout << "warning: couldn't set environment variable 'DISPLAY'\n";
575       perror("putenv()");
576     }
577     execl("/bin/sh", "sh", "-c", cmd.c_str(), NULL);
578     exit(-1);
579   } else if (pid == -1) {
580     cout << _epist->getApplicationName() <<
581       ": Could not fork a process for executing a command\n";
582   }
583 }
584
585
586 void screen::cycleWindow(unsigned int state, const bool forward,
587                          const int increment, const bool allscreens,
588                          const bool alldesktops, const bool sameclass,
589                          const string &cn)
590 {
591   assert(_managed);
592   assert(increment > 0);
593
594   if (_clients.empty()) return;
595
596   string classname(cn);
597   if (sameclass && classname.empty() && _active != _clients.end())
598     classname = (*_active)->appClass();
599
600   WindowList::const_iterator target = _active,
601     begin = _clients.begin(),
602     end = _clients.end();
603
604   XWindow *t = 0;
605   
606   for (int x = 0; x < increment; ++x) {
607     while (1) {
608       if (forward) {
609         if (target == end) {
610           target = begin;
611         } else {
612           ++target;
613         }
614       } else {
615         if (target == begin)
616           target = end;
617         --target;
618       }
619
620       // must be no window to focus
621       if (target == _active)
622         return;
623
624       // start back at the beginning of the loop
625       if (target == end)
626         continue;
627
628       // determine if this window is invalid for cycling to
629       t = *target;
630       if (t->iconic()) continue;
631       if (! allscreens && t->getScreen() != this) continue;
632       if (! alldesktops && ! (t->desktop() == _active_desktop ||
633                               t->desktop() == 0xffffffff)) continue;
634       if (sameclass && ! classname.empty() &&
635           t->appClass() != classname) continue;
636       if (! t->canFocus()) continue;
637
638       // found a good window so break out of the while, and perhaps continue
639       // with the for loop
640       break;
641     }
642   }
643
644   // phew. we found the window, so focus it.
645   if (_stacked_cycling && state) {
646     if (!_cycling) {
647       // grab modifiers so we can intercept KeyReleases from them
648       grabModifiers();
649       _cycling = true;
650     }
651
652     // if the window is on another desktop, we can't use XSetInputFocus, since
653     // it doesn't imply a workspace change.
654     if (t->desktop() == _active_desktop || t->desktop() == 0xffffffff)
655       t->focus(false); // focus, but don't raise
656     else
657       t->focus(); // change workspace and focus
658   }  
659   else {
660     t->focus();
661   }
662 }
663
664
665 void screen::cycleWorkspace(const bool forward, const int increment,
666                             const bool loop) const {
667   assert(_managed);
668   assert(increment > 0);
669
670   unsigned int destination = _active_desktop;
671
672   for (int x = 0; x < increment; ++x) {
673     if (forward) {
674       if (destination < _num_desktops - 1)
675         ++destination;
676       else if (loop)
677         destination = 0;
678     } else {
679       if (destination > 0)
680         --destination;
681       else if (loop)
682         destination = _num_desktops - 1;
683     }
684   }
685
686   if (destination != _active_desktop) 
687     changeWorkspace(destination);
688 }
689
690
691 void screen::changeWorkspace(const int num) const {
692   assert(_managed);
693
694   _xatom->sendClientMessage(_root, XAtom::net_current_desktop, _root, num);
695 }
696
697 void screen::changeWorkspaceVert(const int num) const {
698   assert(_managed);
699   int width = 0;
700   int num_desktops = (signed)_num_desktops;
701   int active_desktop = (signed)_active_desktop;
702   int wnum = 0;
703
704   _config->getValue(Config::workspaceColumns, width);
705
706   if (width > num_desktops || width <= 0)
707     return;
708
709   // a cookie to the person that makes this pretty
710   if (num < 0) {
711     wnum = active_desktop - width;
712     if (wnum < 0) {
713       wnum = num_desktops/width * width + active_desktop;
714       if (wnum >= num_desktops)
715         wnum = num_desktops - 1;
716     }
717   }
718   else {
719     wnum = active_desktop + width;
720     if (wnum >= num_desktops) {
721       wnum = (active_desktop + width) % num_desktops - 1;
722       if (wnum < 0)
723         wnum = 0;
724     }
725   }
726   changeWorkspace(wnum);
727 }
728
729 void screen::changeWorkspaceHorz(const int num) const {
730   assert(_managed);
731   int width = 0;
732   int num_desktops = (signed)_num_desktops;
733   int active_desktop = (signed)_active_desktop;
734   int wnum = 0;
735
736   _config->getValue(Config::workspaceColumns, width);
737
738   if (width > num_desktops || width <= 0)
739     return;
740
741   if (num < 0) {
742     if (active_desktop % width != 0)
743       changeWorkspace(active_desktop - 1);
744     else {
745       wnum = active_desktop + width - 1;
746       if (wnum >= num_desktops)
747         wnum = num_desktops - 1;
748     }
749   }
750   else {
751     if (active_desktop % width != width - 1) {
752       wnum = active_desktop + 1;
753       if (wnum >= num_desktops)
754         wnum = num_desktops / width * width;
755     }
756     else
757       wnum = active_desktop - width + 1;
758   }
759   changeWorkspace(wnum);
760 }
761
762 void screen::grabKey(const KeyCode keyCode, const int modifierMask) const {
763
764   Display *display = _epist->getXDisplay();
765   int numlockMask, scrolllockMask;
766
767   _epist->getLockModifiers(numlockMask, scrolllockMask);
768
769   XGrabKey(display, keyCode, modifierMask,
770            _root, True, GrabModeAsync, GrabModeAsync);
771   XGrabKey(display, keyCode, 
772            modifierMask|LockMask,
773            _root, True, GrabModeAsync, GrabModeAsync);
774   XGrabKey(display, keyCode, 
775            modifierMask|scrolllockMask,
776            _root, True, GrabModeAsync, GrabModeAsync);
777   XGrabKey(display, keyCode, 
778            modifierMask|numlockMask,
779            _root, True, GrabModeAsync, GrabModeAsync);
780     
781   XGrabKey(display, keyCode, 
782            modifierMask|LockMask|scrolllockMask,
783            _root, True, GrabModeAsync, GrabModeAsync);
784   XGrabKey(display, keyCode, 
785            modifierMask|scrolllockMask|numlockMask,
786            _root, True, GrabModeAsync, GrabModeAsync);
787   XGrabKey(display, keyCode, 
788            modifierMask|numlockMask|LockMask,
789            _root, True, GrabModeAsync, GrabModeAsync);
790     
791   XGrabKey(display, keyCode, 
792            modifierMask|numlockMask|LockMask|scrolllockMask,
793            _root, True, GrabModeAsync, GrabModeAsync);
794 }
795
796 void screen::ungrabKey(const KeyCode keyCode, const int modifierMask) const {
797
798   Display *display = _epist->getXDisplay();
799   int numlockMask, scrolllockMask;
800
801   _epist->getLockModifiers(numlockMask, scrolllockMask);
802
803   XUngrabKey(display, keyCode, modifierMask, _root);
804   XUngrabKey(display, keyCode, modifierMask|LockMask, _root);
805   XUngrabKey(display, keyCode, modifierMask|scrolllockMask, _root);
806   XUngrabKey(display, keyCode, modifierMask|numlockMask, _root);
807   XUngrabKey(display, keyCode, modifierMask|LockMask|scrolllockMask, _root);
808   XUngrabKey(display, keyCode, modifierMask|scrolllockMask|numlockMask, _root);
809   XUngrabKey(display, keyCode, modifierMask|numlockMask|LockMask, _root);
810   XUngrabKey(display, keyCode, modifierMask|numlockMask|LockMask|
811              scrolllockMask, _root);
812 }
813
814
815 void screen::grabModifiers() const {
816   Display *display = _epist->getXDisplay();
817
818   XGrabKeyboard(display, rootWindow(), True, GrabModeAsync,
819                 GrabModeAsync, CurrentTime);
820 }
821
822
823 void screen::ungrabModifiers() const {
824   Display *display = _epist->getXDisplay();
825
826   XUngrabKeyboard(display, CurrentTime);
827 }
828
829
830 bool screen::nothingIsPressed(void) const
831 {
832   char keys[32];
833   XQueryKeymap(_epist->getXDisplay(), keys);
834
835   for (int i = 0; i < 32; ++i) {
836     if (keys[i] != 0)
837       return false;
838   }
839
840   return true;
841 }