X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fepist.cc;h=f3084e8c9aecbbabb3146718eac9e2fb8b6bfe33;hb=28594da6de001f1d8b6b975286032302db3a6491;hp=7ac2daf564b2d15c389a5bfe0482c455d56dc870;hpb=a9dfa0439bd8d4f525d5b41a22a3eb14b94d1200;p=chaz%2Fopenbox diff --git a/util/epist/epist.cc b/util/epist/epist.cc index 7ac2daf5..f3084e8c 100644 --- a/util/epist/epist.cc +++ b/util/epist/epist.cc @@ -50,6 +50,7 @@ using std::cout; using std::endl; using std::string; +#include "actions.hh" #include "epist.hh" #include "screen.hh" #include "window.hh" @@ -58,7 +59,7 @@ using std::string; epist::epist(char **argv, char *dpy_name, char *rc_file) : BaseDisplay(argv[0], dpy_name) { - + _argv = argv; if (rc_file) @@ -68,58 +69,65 @@ epist::epist(char **argv, char *dpy_name, char *rc_file) _xatom = new XAtom(getXDisplay()); - screen *s = new screen(this, DefaultScreen(getXDisplay())); - if (s->managed()) - _screens.push_back(s); + _active = _clients.end(); + + for (unsigned int i = 0; i < getNumberOfScreens(); ++i) { + screen *s = new screen(this, i); + if (s->managed()) { + _screens.push_back(s); + s->updateEverything(); + } + } if (_screens.empty()) { cout << "No compatible window manager found on any screens. Aborting.\n"; ::exit(1); } - _actions.push_back(Action(Action::nextWorkspace, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Tab")), - ControlMask)); - _actions.push_back(Action(Action::prevWorkspace, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Tab")), - ControlMask | ShiftMask)); - _actions.push_back(Action(Action::toggleshade, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("F5")), - Mod1Mask)); - _actions.push_back(Action(Action::close, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("F4")), - Mod1Mask)); - _actions.push_back(Action(Action::nextWindow, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Tab")), - Mod1Mask)); - _actions.push_back(Action(Action::prevWindow, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Tab")), - Mod1Mask | ShiftMask)); - _actions.push_back(Action(Action::nextWindowOnAllWorkspaces, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Tab")), - Mod1Mask | ControlMask)); - _actions.push_back(Action(Action::prevWindowOnAllWorkspaces, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Tab")), - Mod1Mask | ShiftMask | ControlMask)); - _actions.push_back(Action(Action::raise, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Up")), - Mod1Mask)); - _actions.push_back(Action(Action::lower, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("Down")), - Mod1Mask)); - _actions.push_back(Action(Action::iconify, - XKeysymToKeycode(getXDisplay(), - XStringToKeysym("I")), - Mod1Mask | ControlMask)); + addAction(Action::nextWorkspace, ControlMask, "Tab"); + addAction(Action::prevWorkspace, ControlMask | ShiftMask, "Tab"); + addAction(Action::nextWindow, Mod1Mask, "Tab"); + addAction(Action::prevWindow, Mod1Mask | ShiftMask, "Tab"); + addAction(Action::toggleshade, Mod1Mask, "F5"); + addAction(Action::close, Mod1Mask, "F4"); + addAction(Action::nextWindowOnAllWorkspaces, Mod1Mask | ControlMask, "Tab"); + addAction(Action::prevWindowOnAllWorkspaces, + Mod1Mask | ShiftMask | ControlMask, "Tab"); + addAction(Action::raise, Mod1Mask, "Up"); + addAction(Action::lower, Mod1Mask, "Down"); + addAction(Action::moveWindowUp, Mod1Mask | ControlMask, "Up", 1); + addAction(Action::moveWindowDown, Mod1Mask | ControlMask, "Down", 1); + addAction(Action::moveWindowLeft, Mod1Mask | ControlMask, "Left", 1); + addAction(Action::moveWindowRight, Mod1Mask | ControlMask, "Right", 1); + addAction(Action::resizeWindowHeight, ShiftMask | Mod1Mask | ControlMask, + "Up", -1); + addAction(Action::resizeWindowHeight, ShiftMask | Mod1Mask | ControlMask, + "Down", 1); + addAction(Action::resizeWindowWidth, ShiftMask | Mod1Mask | ControlMask, + "Left", -1); + addAction(Action::resizeWindowWidth, ShiftMask | Mod1Mask | ControlMask, + "Right", 1); + addAction(Action::iconify, Mod1Mask | ControlMask, "I"); + addAction(Action::toggleomnipresent, Mod1Mask | ControlMask, "O"); + addAction(Action::toggleMaximizeHorizontal, ShiftMask | Mod1Mask, "X"); + addAction(Action::toggleMaximizeVertical, ShiftMask | ControlMask, "X"); + addAction(Action::toggleMaximizeFull, Mod1Mask | ControlMask, "X"); + addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "1", 0); + addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "2", 1); + addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "3", 2); + addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "4", 3); + addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask, + "1", 0); + addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask, + "2", 1); + addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask, + "3", 2); + addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask, + "4", 3); + addAction(Action::execute, Mod1Mask | ControlMask, "Escape", + "sleep 1 && xset dpms force off"); + addAction(Action::execute, Mod1Mask, "space", + "rxvt"); + activateGrabs(); } @@ -136,8 +144,7 @@ void epist::activateGrabs() { ActionList::const_iterator ait, end = _actions.end(); for(ait = _actions.begin(); ait != end; ++ait) { - XGrabKey(getXDisplay(), ait->keycode(), ait->modifierMask(), - (*scrit)->rootWindow(), False, GrabModeAsync, GrabModeAsync); + (*scrit)->grabKey(ait->keycode(), ait->modifierMask()); } } } @@ -163,16 +170,9 @@ bool epist::handleSignal(int sig) { void epist::process_event(XEvent *e) { - Window root; - - if (e->xany.type == KeyPress) - root = e->xkey.root; - else - root = e->xany.window; - ScreenList::const_iterator it, end = _screens.end(); for (it = _screens.begin(); it != end; ++it) { - if ((*it)->rootWindow() == root) { + if ((*it)->rootWindow() == e->xany.window) { (*it)->processEvent(*e); return; } @@ -201,3 +201,30 @@ XWindow *epist::findWindow(Window window) const { return 0; } + + +void epist::cycleScreen(int current, bool forward) const { + int dest = current + (forward ? 1 : -1); + + if (dest < 0) dest = (signed)_screens.size() - 1; + else if (dest >= (signed)_screens.size()) dest = 0; + + const XWindow *target = _screens[dest]->lastActiveWindow(); + if (target) target->focus(); +} + + +void epist::addAction(Action::ActionType act, unsigned int modifiers, + string key, int number) { + _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(), + XStringToKeysym(key.c_str())), + modifiers, number)); +} + + +void epist::addAction(Action::ActionType act, unsigned int modifiers, + string key, std::string str) { + _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(), + XStringToKeysym(key.c_str())), + modifiers, str)); +}