showWorkspaceMenu,
toggleDecorations,
+ toggleGrabs,
stringChain,
keyChain,
numberChain,
{
ChildList::const_iterator it, end = _head->children.end();
for (it = _head->children.begin(); it != end; ++it)
- if ( (*it)->action )
+ if ( (*it)->action && (*it)->action->type() != Action::toggleGrabs)
scr->ungrabKey( (*it)->action->keycode(), (*it)->action->modifierMask() );
}
string key, string arg)
{
keynode *tmp = new keynode;
+
+ if (action == Action::toggleGrabs && _current != _head) {
+ // the toggleGrabs key can only be set up as a root key, since if
+ // it was a chain key, we'd have to not ungrab the whole chain up
+ // to that key. which kinda defeats the purpose of this function.
+ return;
+ }
+
tmp->action = new Action(action,
XKeysymToKeycode(_display,
XStringToKeysym(key.c_str())),
{ "showrootmenu", Action::showRootMenu },
{ "showworkspacemenu", Action::showWorkspaceMenu },
{ "toggledecorations", Action::toggleDecorations },
+ { "togglegrabs", Action::toggleGrabs },
{ "stringchain", Action::stringChain },
{ "keychain", Action::keyChain },
{ "numberchain", Action::numberChain },
_number = number;
_info = _epist->getScreenInfo(_number);
_root = _info->getRootWindow();
+ _grabbed = true;
// find a window manager supporting NETWM, waiting for it to load if we must
int count = 20; // try for 20 seconds
// Mask out the lock modifiers. We want our keys to always work
// This should be made an option
unsigned int state = e.xkey.state & ~(LockMask|scrolllockMask|numlockMask);
- const Action *it = _epist->getKeyTree().getAction(e, state, this);
-
+ keytree &ktree = _epist->getKeyTree();
+ const Action *it = ktree.getAction(e, state, this);
+
if (!it)
return;
None);
return;
+ case Action::toggleGrabs: {
+ if (_grabbed) {
+ ktree.ungrabDefaults(this);
+ _grabbed = false;
+ } else {
+ ktree.grabDefaults(this);
+ _grabbed = true;
+ }
+ return;
+ }
+
default:
break;
}
unsigned int _num_desktops;
bool _managed;
+ bool _grabbed; // used for keygrab toggle function
XWindow *findWindow(const XEvent &e) const;
void updateNumDesktops();