raise and lower transient stacks

This commit is contained in:
fluxgen 2002-09-08 19:35:58 +00:00
parent 65ce3a88e6
commit fb83f64a32

View file

@ -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;