X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fscreen.cc;h=3b619e17056d057c275abd717c1bd143a24202e5;hb=5c284ecc834a447a913d843dc45d1c6f8d3dc80b;hp=e7ebd64cf1d1afb06abd79d40c69b74b6c49a88e;hpb=352163bd649cbf0060883f612de296923e0d22a6;p=chaz%2Fopenbox diff --git a/util/epist/screen.cc b/util/epist/screen.cc index e7ebd64c..3b619e17 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -1,4 +1,4 @@ -// -*- mode: C++; indent-tabs-mode: nil; -*- +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- // screen.cc for Epistrophy - a key handler for NETWM/EWMH window managers. // Copyright (c) 2002 - 2002 Ben Jansens // @@ -48,7 +48,7 @@ using std::string; #include "../../src/XAtom.hh" #include "screen.hh" #include "epist.hh" - +#include "config.hh" screen::screen(epist *epist, int number) : _clients(epist->clientsList()), @@ -59,7 +59,7 @@ screen::screen(epist *epist, int number) _number = number; _info = _epist->getScreenInfo(_number); _root = _info->getRootWindow(); - + // find a window manager supporting NETWM, waiting for it to load if we must int count = 20; // try for 20 seconds _managed = false; @@ -222,6 +222,22 @@ void screen::handleKeypress(const XEvent &e) { changeWorkspace(it->number()); return; + case Action::upWorkspace: + changeWorkspaceVert(-1); + return; + + case Action::downWorkspace: + changeWorkspaceVert(1); + return; + + case Action::leftWorkspace: + changeWorkspaceHorz(-1); + return; + + case Action::rightWorkspace: + changeWorkspaceHorz(1); + return; + case Action::execute: execCommand(it->string()); return; @@ -444,7 +460,8 @@ void screen::updateActiveWindow() { } } _active = it; - _last_active = it; + if (it != end) + _last_active = it; /* cout << "Active window is now: "; if (_active == _clients.end()) cout << "None\n"; @@ -563,6 +580,58 @@ void screen::changeWorkspace(const int num) const { _xatom->sendClientMessage(_root, XAtom::net_current_desktop, _root, num); } +void screen::changeWorkspaceVert(const int num) const { + assert(_managed); + const Config *conf = _epist->getConfig(); + int width = conf->getNumberValue(Config::workspaceColumns); + + if (width > _num_desktops || width <= 0) + return; + + int wnum; + + // a cookie to the person that makes this pretty + if (num < 0) { + wnum = _active_desktop - width; + if (wnum < 0) { + wnum = _num_desktops/width * width + _active_desktop; + if (wnum >= _num_desktops) + wnum = _num_desktops - 1; + } + } + else { + wnum = _active_desktop + width; + if (wnum >= _num_desktops) { + wnum = (_active_desktop + width) % _num_desktops - 1; + if (wnum < 0) + wnum = 0; + } + } + changeWorkspace(wnum); +} + +void screen::changeWorkspaceHorz(const int num) const { + assert(_managed); + const Config *conf = _epist->getConfig(); + int width = conf->getNumberValue(Config::workspaceColumns); + + if (width > _num_desktops || width <= 0) + return; + + if (num < 0) { + if (_active_desktop % width != 0) + changeWorkspace(_active_desktop - 1); + else + changeWorkspace(_active_desktop + width - 1); + } + else { + if (_active_desktop % width != width - 1) + changeWorkspace(_active_desktop + 1); + else + changeWorkspace(_active_desktop - width + 1); + } +} + void screen::grabKey(const KeyCode keyCode, const int modifierMask) const { Display *display = _epist->getXDisplay();