added the ability to have numeric arguments for the cycle window/workspace functions.

eg.
Control-Mod1-Down nextWorkspace 6;
Control-Mod1-Right nextWorkspace;
Would allow some form of relative workspace flipping. It might be much less useful for cycling windows.
This commit is contained in:
Scott Moynes 2002-08-14 04:17:46 +00:00
parent ef66d63b42
commit 75b6a5a378
2 changed files with 78 additions and 61 deletions

View file

@ -166,51 +166,56 @@ void screen::handleKeypress(const XEvent &e) {
return; return;
case Action::nextWorkspace: case Action::nextWorkspace:
cycleWorkspace(true); cycleWorkspace(true, it->number() != 0 ? it->number(): 1);
return; return;
case Action::prevWorkspace: case Action::prevWorkspace:
cycleWorkspace(false); cycleWorkspace(false, it->number() != 0 ? it->number(): 1);
return; return;
case Action::nextWindow: case Action::nextWindow:
cycleWindow(true);
cycleWindow(true, it->number() != 0 ? it->number(): 1);
return; return;
case Action::prevWindow: case Action::prevWindow:
cycleWindow(false); cycleWindow(false, it->number() != 0 ? it->number(): 1);
return; return;
case Action::nextWindowOnAllWorkspaces: case Action::nextWindowOnAllWorkspaces:
cycleWindow(true, false, true); cycleWindow(true, it->number() != 0 ? it->number(): 1, false, true);
return; return;
case Action::prevWindowOnAllWorkspaces: case Action::prevWindowOnAllWorkspaces:
cycleWindow(false, false, true); cycleWindow(false, it->number() != 0 ? it->number(): 1, false, true);
return; return;
case Action::nextWindowOnAllScreens: case Action::nextWindowOnAllScreens:
cycleWindow(true, true); cycleWindow(true, it->number() != 0 ? it->number(): 1, true);
return; return;
case Action::prevWindowOnAllScreens: case Action::prevWindowOnAllScreens:
cycleWindow(false, true); cycleWindow(false, it->number() != 0 ? it->number(): 1, true);
return; return;
case Action::nextWindowOfClass: case Action::nextWindowOfClass:
cycleWindow(true, false, false, true, it->string()); cycleWindow(true, it->number() != 0 ? it->number(): 1,
false, false, true, it->string());
return; return;
case Action::prevWindowOfClass: case Action::prevWindowOfClass:
cycleWindow(false, false, false, true, it->string()); cycleWindow(false, it->number() != 0 ? it->number(): 1,
false, false, true, it->string());
return; return;
case Action::nextWindowOfClassOnAllWorkspaces: case Action::nextWindowOfClassOnAllWorkspaces:
cycleWindow(true, false, true, true, it->string()); cycleWindow(true, it->number() != 0 ? it->number(): 1,
false, true, true, it->string());
return; return;
case Action::prevWindowOfClassOnAllWorkspaces: case Action::prevWindowOfClassOnAllWorkspaces:
cycleWindow(false, false, true, true, it->string()); cycleWindow(false, it->number() != 0 ? it->number(): 1,
false, true, true, it->string());
return; return;
case Action::changeWorkspace: case Action::changeWorkspace:
@ -466,9 +471,9 @@ void screen::execCommand(const string &cmd) const {
} }
void screen::cycleWindow(const bool forward, const bool allscreens, void screen::cycleWindow(const bool forward, const int increment,
const bool alldesktops, const bool sameclass, const bool allscreens, const bool alldesktops,
const string &cn) const { const bool sameclass, const string &cn) const {
assert(_managed); assert(_managed);
if (_clients.empty()) return; if (_clients.empty()) return;
@ -481,6 +486,9 @@ void screen::cycleWindow(const bool forward, const bool allscreens,
begin = _clients.begin(), begin = _clients.begin(),
end = _clients.end(); end = _clients.end();
const XWindow *t;
for (int x = 0; x < increment; ++x) {
while (1) { while (1) {
if (forward) { if (forward) {
if (target == end) { if (target == end) {
@ -491,6 +499,7 @@ void screen::cycleWindow(const bool forward, const bool allscreens,
} else { } else {
if (target == begin) if (target == begin)
target = end; target = end;
for (int x = 0; x < increment; ++x)
--target; --target;
} }
@ -503,7 +512,7 @@ void screen::cycleWindow(const bool forward, const bool allscreens,
continue; continue;
// determine if this window is invalid for cycling to // determine if this window is invalid for cycling to
const XWindow *t = *target; t = *target;
if (t->iconic()) continue; if (t->iconic()) continue;
if (! allscreens && t->getScreen() != this) continue; if (! allscreens && t->getScreen() != this) continue;
if (! alldesktops && ! (t->desktop() == _active_desktop || if (! alldesktops && ! (t->desktop() == _active_desktop ||
@ -512,18 +521,23 @@ void screen::cycleWindow(const bool forward, const bool allscreens,
t->appClass() != classname) continue; t->appClass() != classname) continue;
if (! t->canFocus()) continue; if (! t->canFocus()) continue;
// found a good window! // found a good window so break out of the while, and perhaps continue
// with the for loop
break;
}
}
// phew. we found the window, so focus it.
t->focus(); t->focus();
return;
}
} }
void screen::cycleWorkspace(const bool forward, const bool loop) const { void screen::cycleWorkspace(const bool forward, const int increment, const bool loop) const {
assert(_managed); assert(_managed);
unsigned int destination = _active_desktop; unsigned int destination = _active_desktop;
for (int x = 0; x < increment; ++x) {
if (forward) { if (forward) {
if (destination < _num_desktops - 1) if (destination < _num_desktops - 1)
++destination; ++destination;
@ -535,6 +549,7 @@ void screen::cycleWorkspace(const bool forward, const bool loop) const {
else if (loop) else if (loop)
destination = _num_desktops - 1; destination = _num_desktops - 1;
} }
}
if (destination != _active_desktop) if (destination != _active_desktop)
changeWorkspace(destination); changeWorkspace(destination);

View file

@ -76,11 +76,13 @@ public:
void handleKeypress(const XEvent &e); void handleKeypress(const XEvent &e);
void updateEverything(); void updateEverything();
void cycleWindow(const bool forward, const bool allscreens = false, void cycleWindow(const bool forward, const int increment,
const bool allscreens = false,
const bool alldesktops = false, const bool alldesktops = false,
const bool sameclass = false, const bool sameclass = false,
const std::string &classname = "") const; const std::string &classname = "") const;
void cycleWorkspace(const bool forward, const bool loop = true) const; void cycleWorkspace(const bool forward, const int increment,
const bool loop = true) const;
void changeWorkspace(const int num) const; void changeWorkspace(const int num) const;
void toggleShaded(const Window win) const; void toggleShaded(const Window win) const;
void execCommand(const std::string &cmd) const; void execCommand(const std::string &cmd) const;