diff options
author | fluxgen <fluxgen> | 2001-12-11 20:47:02 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2001-12-11 20:47:02 (GMT) |
commit | 18830ac9add80cbd3bf7369307d7e35a519dca9b (patch) | |
tree | 4759a5434a34ba317fe77bbf8b0ed9bb57bb6018 /src/Workspace.hh | |
parent | 1523b48bff07dead084af3064ad11c79a9b25df0 (diff) | |
download | fluxbox-18830ac9add80cbd3bf7369307d7e35a519dca9b.zip fluxbox-18830ac9add80cbd3bf7369307d7e35a519dca9b.tar.bz2 |
Initial revision
Diffstat (limited to 'src/Workspace.hh')
-rw-r--r-- | src/Workspace.hh | 90 |
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 | |||
27 | class BScreen; | ||
28 | class Clientmenu; | ||
29 | class Workspace; | ||
30 | class FluxboxWindow; | ||
31 | |||
32 | #include "LinkedList.hh" | ||
33 | |||
34 | |||
35 | class Workspace { | ||
36 | private: | ||
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 | |||
47 | protected: | ||
48 | void placeWindow(FluxboxWindow *); | ||
49 | |||
50 | |||
51 | public: | ||
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 | |||