aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Workspace.hh')
-rw-r--r--src/Workspace.hh90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/Workspace.hh b/src/Workspace.hh
new file mode 100644
index 0000000..17de03c
--- /dev/null
+++ b/src/Workspace.hh
@@ -0,0 +1,90 @@
1// Workspace.hh for Blackbox - an X11 Window manager
2// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22#ifndef _WORKSPACE_HH_
23#define _WORKSPACE_HH_
24
25#include <X11/Xlib.h>
26
27class BScreen;
28class Clientmenu;
29class Workspace;
30class FluxboxWindow;
31
32#include "LinkedList.hh"
33
34
35class Workspace {
36private:
37 BScreen *screen;
38 FluxboxWindow *lastfocus;
39 Clientmenu *clientmenu;
40
41 LinkedList<FluxboxWindow> *stackingList, *windowList;
42
43 char *name;
44 int id, cascade_x, cascade_y;
45
46
47protected:
48 void placeWindow(FluxboxWindow *);
49
50
51public:
52 Workspace(BScreen *, int = 0);
53 ~Workspace(void);
54
55 inline BScreen *getScreen(void) { return screen; }
56
57 inline FluxboxWindow *getLastFocusedWindow(void) { return lastfocus; }
58
59 inline Clientmenu *getMenu(void) { return clientmenu; }
60
61 inline const char *getName(void) const { return name; }
62
63 inline const int &getWorkspaceID(void) const { return id; }
64
65 inline void setLastFocusedWindow(FluxboxWindow *w) { lastfocus = w; }
66
67 FluxboxWindow *getWindow(int);
68
69 Bool isCurrent(void);
70 Bool isLastWindow(FluxboxWindow *);
71
72 const int addWindow(FluxboxWindow *, Bool = False);
73 const int removeWindow(FluxboxWindow *);
74 const int getCount(void);
75
76 void showAll(void);
77 void hideAll(void);
78 void removeAll(void);
79 void raiseWindow(FluxboxWindow *);
80 void lowerWindow(FluxboxWindow *);
81 void reconfigure();
82 void update();
83 void setCurrent(void);
84 void setName(char *);
85 void shutdown(void);
86};
87
88
89#endif // _WORKSPACE_HH_
90