]> Dogcows Code - chaz/openbox/blob - src/openbox.h
better gcc3 compat. using ostrstream again. and using namespace std;
[chaz/openbox] / src / openbox.h
1 // openbox.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 __openbox_hh
24 #define __openbox_hh
25
26 #include <X11/Xlib.h>
27 #include <X11/Xresource.h>
28
29 #ifdef HAVE_STDIO_H
30 # include <stdio.h>
31 #endif // HAVE_STDIO_H
32
33 #ifdef TIME_WITH_SYS_TIME
34 # include <sys/time.h>
35 # include <time.h>
36 #else // !TIME_WITH_SYS_TIME
37 # ifdef HAVE_SYS_TIME_H
38 # include <sys/time.h>
39 # else // !HAVE_SYS_TIME_H
40 # include <time.h>
41 # endif // HAVE_SYS_TIME_H
42 #endif // TIME_WITH_SYS_TIME
43
44 #include "Resource.h"
45 #include "LinkedList.h"
46 #include "BaseDisplay.h"
47 #include "Timer.h"
48
49 //forward declaration
50 class BScreen;
51 class Openbox;
52 class BImageControl;
53 class OpenboxWindow;
54 class Basemenu;
55 class Toolbar;
56 #ifdef SLIT
57 class Slit;
58 #endif // SLIT
59
60 template <class Z>
61 class DataSearch {
62 private:
63 Window window;
64 Z *data;
65
66 public:
67 DataSearch(Window w, Z *d): window(w), data(d) {}
68
69 inline const Window &getWindow() const { return window; }
70 inline Z *getData() { return data; }
71 };
72
73
74 class Openbox : public BaseDisplay, public TimeoutHandler {
75 private:
76 typedef struct MenuTimestamp {
77 char *filename;
78 time_t timestamp;
79 } MenuTimestamp;
80
81 struct resource {
82 Time double_click_interval;
83
84 char *menu_file, *style_file;
85 char *titlebar_layout;
86 int colors_per_channel;
87 timeval auto_raise_delay;
88 unsigned long cache_life, cache_max;
89 } resource;
90
91 typedef DataSearch<OpenboxWindow> WindowSearch;
92 LinkedList<WindowSearch> *windowSearchList, *groupSearchList;
93 typedef DataSearch<Basemenu> MenuSearch;
94 LinkedList<MenuSearch> *menuSearchList;
95 typedef DataSearch<Toolbar> ToolbarSearch;
96 LinkedList<ToolbarSearch> *toolbarSearchList;
97
98 #ifdef SLIT
99 typedef DataSearch<Slit> SlitSearch;
100 LinkedList<SlitSearch> *slitSearchList;
101 #endif // SLIT
102
103 LinkedList<MenuTimestamp> *menuTimestamps;
104 LinkedList<BScreen> *screenList;
105
106 BScreen *focused_screen;
107 OpenboxWindow *masked_window;
108 BTimer *timer;
109
110 #ifdef HAVE_GETPID
111 Atom openbox_pid;
112 #endif // HAVE_GETPID
113
114 Bool no_focus, reconfigure_wait, reread_menu_wait;
115 Time last_time;
116 Window masked;
117 char *rc_file, **argv;
118 int argc;
119 Resource config;
120
121
122 protected:
123 void load();
124 void save();
125 void real_rereadMenu();
126 void real_reconfigure();
127
128 virtual void process_event(XEvent *);
129
130
131 public:
132 Openbox(int, char **, char * = 0, char * = 0);
133 virtual ~Openbox();
134
135 #ifdef HAVE_GETPID
136 inline const Atom &getOpenboxPidAtom() const { return openbox_pid; }
137 #endif // HAVE_GETPID
138
139 Basemenu *searchMenu(Window);
140
141 OpenboxWindow *searchGroup(Window, OpenboxWindow *);
142 OpenboxWindow *searchWindow(Window);
143 OpenboxWindow *focusedWindow();
144 void focusWindow(OpenboxWindow *w);
145
146 BScreen *getScreen(int);
147 BScreen *searchScreen(Window);
148
149 inline Resource &getConfig() {
150 return config;
151 }
152 inline const Time &getDoubleClickInterval() const
153 { return resource.double_click_interval; }
154 inline const Time &getLastTime() const { return last_time; }
155
156 Toolbar *searchToolbar(Window);
157
158 inline const char *getStyleFilename() const
159 { return resource.style_file; }
160 inline const char *getMenuFilename() const
161 { return resource.menu_file; }
162
163 inline const int &getColorsPerChannel() const
164 { return resource.colors_per_channel; }
165
166 inline const timeval &getAutoRaiseDelay() const
167 { return resource.auto_raise_delay; }
168
169 inline const char *getTitleBarLayout() const
170 { return resource.titlebar_layout; }
171
172 inline const unsigned long &getCacheLife() const
173 { return resource.cache_life; }
174 inline const unsigned long &getCacheMax() const
175 { return resource.cache_max; }
176
177 inline OpenboxWindow *getMaskedWindow() const
178 { return masked_window; }
179 inline void maskWindowEvents(Window w, OpenboxWindow *bw)
180 { masked = w; masked_window = bw; }
181 inline void setNoFocus(Bool f) { no_focus = f; }
182
183 void shutdown();
184 void setStyleFilename(const char *);
185 void setMenuFilename(const char *);
186 void saveMenuSearch(Window, Basemenu *);
187 void saveWindowSearch(Window, OpenboxWindow *);
188 void saveToolbarSearch(Window, Toolbar *);
189 void saveGroupSearch(Window, OpenboxWindow *);
190 void removeMenuSearch(Window);
191 void removeWindowSearch(Window);
192 void removeToolbarSearch(Window);
193 void removeGroupSearch(Window);
194 void restart(const char * = 0);
195 void reconfigure();
196 void rereadMenu();
197 void checkMenu();
198
199 virtual Bool handleSignal(int);
200
201 virtual void timeout();
202
203 #ifdef SLIT
204 Slit *searchSlit(Window);
205
206 void saveSlitSearch(Window, Slit *);
207 void removeSlitSearch(Window);
208 #endif // SLIT
209
210 #ifndef HAVE_STRFTIME
211
212 enum { B_AmericanDate = 1, B_EuropeanDate };
213 #endif // HAVE_STRFTIME
214 };
215
216
217 #endif // __openbox_hh
This page took 0.043022 seconds and 5 git commands to generate.