]> Dogcows Code - chaz/openbox/blob - src/openbox.h
Initial revision
[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
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(void) const { return window; }
70 inline Z *getData(void) { 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 OpenboxWindow *focused_window, *masked_window;
107 BTimer *timer;
108
109 #ifdef HAVE_GETPID
110 Atom openbox_pid;
111 #endif // HAVE_GETPID
112
113 Bool no_focus, reconfigure_wait, reread_menu_wait;
114 Time last_time;
115 Window masked;
116 char *rc_file, **argv;
117 int argc;
118
119
120 protected:
121 void load_rc(void);
122 void save_rc(void);
123 void reload_rc(void);
124 void real_rereadMenu(void);
125 void real_reconfigure(void);
126
127 virtual void process_event(XEvent *);
128
129
130 public:
131 Openbox(int, char **, char * = 0, char * = 0);
132 virtual ~Openbox(void);
133
134 #ifdef HAVE_GETPID
135 inline const Atom &getOpenboxPidAtom(void) const { return openbox_pid; }
136 #endif // HAVE_GETPID
137
138 Basemenu *searchMenu(Window);
139
140 OpenboxWindow *searchGroup(Window, OpenboxWindow *);
141 OpenboxWindow *searchWindow(Window);
142 inline OpenboxWindow *getFocusedWindow(void) { return focused_window; }
143
144 BScreen *getScreen(int);
145 BScreen *searchScreen(Window);
146
147 inline const Time &getDoubleClickInterval(void) const
148 { return resource.double_click_interval; }
149 inline const Time &getLastTime(void) const { return last_time; }
150
151 Toolbar *searchToolbar(Window);
152
153 inline const char *getStyleFilename(void) const
154 { return resource.style_file; }
155 inline const char *getMenuFilename(void) const
156 { return resource.menu_file; }
157
158 inline const int &getColorsPerChannel(void) const
159 { return resource.colors_per_channel; }
160
161 inline const timeval &getAutoRaiseDelay(void) const
162 { return resource.auto_raise_delay; }
163
164 inline const char *getTitleBarLayout(void) const
165 { return resource.titlebar_layout; }
166
167 inline const unsigned long &getCacheLife(void) const
168 { return resource.cache_life; }
169 inline const unsigned long &getCacheMax(void) const
170 { return resource.cache_max; }
171
172 inline void maskWindowEvents(Window w, OpenboxWindow *bw)
173 { masked = w; masked_window = bw; }
174 inline void setNoFocus(Bool f) { no_focus = f; }
175
176 void setFocusedWindow(OpenboxWindow *w);
177 void shutdown(void);
178 void load_rc(BScreen *);
179 void saveStyleFilename(const char *);
180 void saveMenuFilename(const char *);
181 void saveMenuSearch(Window, Basemenu *);
182 void saveWindowSearch(Window, OpenboxWindow *);
183 void saveToolbarSearch(Window, Toolbar *);
184 void saveGroupSearch(Window, OpenboxWindow *);
185 void removeMenuSearch(Window);
186 void removeWindowSearch(Window);
187 void removeToolbarSearch(Window);
188 void removeGroupSearch(Window);
189 void restart(const char * = 0);
190 void reconfigure(void);
191 void rereadMenu(void);
192 void checkMenu(void);
193
194 virtual Bool handleSignal(int);
195
196 virtual void timeout(void);
197
198 #ifdef SLIT
199 Slit *searchSlit(Window);
200
201 void saveSlitSearch(Window, Slit *);
202 void removeSlitSearch(Window);
203 #endif // SLIT
204
205 #ifndef HAVE_STRFTIME
206
207 enum { B_AmericanDate = 1, B_EuropeanDate };
208 #endif // HAVE_STRFTIME
209 };
210
211
212 #endif // __openbox_hh
This page took 0.044359 seconds and 4 git commands to generate.