]> icculus.org git repositories - dana/openbox.git/blob - src/Slit.h
configuration changes "done"!!
[dana/openbox.git] / src / Slit.h
1 // Slit.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   __Slit_hh
24 #define   __Slit_hh
25
26 #include <X11/Xlib.h>
27 #include <X11/Xutil.h>
28
29 #include "Basemenu.h"
30 #include "LinkedList.h"
31 #include "Geometry.h"
32
33 // forward declaration
34 class Slit;
35 class Slitmenu;
36
37 class Slitmenu : public Basemenu {
38 private: 
39   class Directionmenu : public Basemenu {
40   private:
41     Slitmenu &slitmenu;
42
43   protected:
44     virtual void itemSelected(int, int);
45
46   public:
47     Directionmenu(Slitmenu &);
48   };
49
50   class Placementmenu : public Basemenu {
51   private:
52     Slitmenu &slitmenu;
53
54   protected: 
55     virtual void itemSelected(int, int);
56
57   public:
58     Placementmenu(Slitmenu &);
59   };
60
61   Directionmenu *directionmenu;
62   Placementmenu *placementmenu;
63
64   Slit &slit;
65
66   friend class Directionmenu;
67   friend class Placementmenu;
68   friend class Slit;
69
70
71 protected:
72   virtual void itemSelected(int, int);
73   virtual void internal_hide();
74
75
76 public:
77   Slitmenu(Slit &);
78   virtual ~Slitmenu();
79
80   inline Basemenu *getDirectionmenu() { return directionmenu; }
81   inline Basemenu *getPlacementmenu() { return placementmenu; }
82
83   void reconfigure();
84 };
85
86
87 class Slit : public TimeoutHandler {
88 private:
89   class SlitClient {
90   public:
91     Window window, client_window, icon_window;
92
93     int x, y;
94     unsigned int width, height;
95   };
96
97   bool m_ontop, m_autohide, m_hidden;
98   int m_direction, m_placement; 
99   Display *display;
100
101   Openbox &openbox;
102   BScreen &screen;
103   Resource &config;
104   BTimer *timer;
105
106   LinkedList<SlitClient> *clientList;
107   Slitmenu *slitmenu;
108
109   struct frame {
110     Pixmap pixmap;
111     Window window;
112
113     Rect area;
114     Point hidden;
115   } frame;
116
117
118   friend class Slitmenu;
119   friend class Slitmenu::Directionmenu;
120   friend class Slitmenu::Placementmenu;
121
122
123 public:
124   Slit(BScreen &, Resource &);
125   virtual ~Slit();
126
127   inline Slitmenu *getMenu() { return slitmenu; }
128
129   inline const Window &getWindowID() const { return frame.window; }
130
131   inline const Point &origin() const { return frame.area.origin(); }
132   inline const Size &size() const { return frame.area.size(); }
133   inline const Rect &area() const { return frame.area; }
134
135   void addClient(Window);
136   void removeClient(SlitClient *, Bool = True);
137   void removeClient(Window, Bool = True);
138   void reconfigure();
139   void load();
140   void save();
141   void reposition();
142   void shutdown();
143
144   void buttonPressEvent(XButtonEvent *);
145   void enterNotifyEvent(XCrossingEvent *);
146   void leaveNotifyEvent(XCrossingEvent *);
147   void configureRequestEvent(XConfigureRequestEvent *);
148
149   virtual void timeout();
150
151   inline bool isHidden() const { return m_hidden; }
152
153   inline bool onTop() const { return m_ontop; }
154   void setOnTop(bool);
155   
156   inline bool autoHide() const { return m_autohide; }
157   void setAutoHide(bool);
158   
159   inline int placement() const { return m_placement; }
160   void setPlacement(int);
161
162   inline int direction() const { return m_direction; }
163   void setDirection(int);
164
165   enum { Vertical = 1, Horizontal };
166   enum { TopLeft = 1, CenterLeft, BottomLeft, TopCenter, BottomCenter,
167          TopRight, CenterRight, BottomRight };
168 };
169
170
171 #endif // __Slit_hh