]> Dogcows Code - chaz/openbox/blob - src/Workspace.h
f9700bdce74907d9b9dd26c419b559ea498ad180
[chaz/openbox] / src / Workspace.h
1 // Workspace.h for Openbox
2 // Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
3 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 #ifndef __Workspace_hh
24 #define __Workspace_hh
25
26 #include <X11/Xlib.h>
27
28 #include "LinkedList.h"
29
30 class BScreen;
31 class Clientmenu;
32 class Workspace;
33 class OpenboxWindow;
34
35 class Workspace {
36 private:
37 BScreen *screen;
38 OpenboxWindow *lastfocus;
39 Clientmenu *clientmenu;
40
41 LinkedList<OpenboxWindow> *stackingList, *windowList;
42
43 char *name;
44 int id, cascade_x, cascade_y;
45
46
47 protected:
48 void placeWindow(OpenboxWindow *);
49
50
51 public:
52 Workspace(BScreen *, int = 0);
53 ~Workspace(void);
54
55 inline BScreen *getScreen(void) { return screen; }
56
57 inline OpenboxWindow *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(OpenboxWindow *w) { lastfocus = w; }
66
67 OpenboxWindow *getWindow(int);
68
69 Bool isCurrent(void);
70 Bool isLastWindow(OpenboxWindow *);
71
72 const int addWindow(OpenboxWindow *, Bool = False);
73 const int removeWindow(OpenboxWindow *);
74 const int getCount(void);
75
76 void showAll(void);
77 void hideAll(void);
78 void removeAll(void);
79 void raiseWindow(OpenboxWindow *);
80 void lowerWindow(OpenboxWindow *);
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
This page took 0.038238 seconds and 3 git commands to generate.