raise and lower transient stacks
This commit is contained in:
parent
65ce3a88e6
commit
fb83f64a32
1 changed files with 5 additions and 2 deletions
|
@ -42,7 +42,8 @@ class BScreen;
|
|||
class Workspace:private NotCopyable {
|
||||
public:
|
||||
typedef std::vector<FluxboxWindow *> Windows;
|
||||
|
||||
typedef std::vector<Window> Stack;
|
||||
|
||||
Workspace(BScreen *screen, unsigned int workspaceid = 0);
|
||||
~Workspace();
|
||||
|
||||
|
@ -98,7 +99,9 @@ protected:
|
|||
void placeWindow(FluxboxWindow *win);
|
||||
|
||||
private:
|
||||
|
||||
|
||||
void raiseAndFillStack(Stack::iterator &it, const FluxboxWindow &win);
|
||||
void lowerAndFillStack(Stack::iterator &it, const FluxboxWindow &win);
|
||||
|
||||
BScreen *screen;
|
||||
FluxboxWindow *lastfocus;
|
||||
|
|
Loading…
Reference in a new issue