]> Dogcows Code - chaz/openbox/blob - src/openbox.cc
redo otk::Property. make it static.
[chaz/openbox] / src / openbox.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 #include "openbox.hh"
8 #include "client.hh"
9 #include "screen.hh"
10 #include "actions.hh"
11 #include "bindings.hh"
12 #include "python.hh"
13 #include "otk/property.hh"
14 #include "otk/assassin.hh"
15 #include "otk/property.hh"
16 #include "otk/util.hh"
17
18 extern "C" {
19 #include <X11/cursorfont.h>
20
21 #ifdef HAVE_STDIO_H
22 # include <stdio.h>
23 #endif // HAVE_STDIO_H
24
25 #ifdef HAVE_STDLIB_H
26 # include <stdlib.h>
27 #endif // HAVE_STDLIB_H
28
29 #ifdef HAVE_SIGNAL_H
30 # include <signal.h>
31 #endif // HAVE_SIGNAL_H
32
33 #ifdef HAVE_FCNTL_H
34 # include <fcntl.h>
35 #endif // HAVE_FCNTL_H
36
37 #ifdef HAVE_UNISTD_H
38 # include <sys/types.h>
39 # include <unistd.h>
40 #endif // HAVE_UNISTD_H
41
42 #ifdef HAVE_SYS_SELECT_H
43 # include <sys/select.h>
44 #endif // HAVE_SYS_SELECT_H
45
46 #include "gettext.h"
47 #define _(str) gettext(str)
48 }
49
50 #include <algorithm>
51
52 namespace ob {
53
54 Openbox *openbox = (Openbox *) 0;
55
56
57 void Openbox::signalHandler(int signal)
58 {
59 switch (signal) {
60 case SIGUSR1:
61 printf("Caught SIGUSR1 signal. Restarting.\n");
62 openbox->restart();
63 break;
64
65 case SIGHUP:
66 case SIGINT:
67 case SIGTERM:
68 case SIGPIPE:
69 printf("Caught signal %d. Exiting.\n", signal);
70 openbox->shutdown();
71 break;
72
73 case SIGFPE:
74 case SIGSEGV:
75 printf("Caught signal %d. Aborting and dumping core.\n", signal);
76 abort();
77 }
78 }
79
80
81 Openbox::Openbox(int argc, char **argv)
82 : otk::EventDispatcher(),
83 otk::EventHandler(),
84 _display()
85 {
86 struct sigaction action;
87
88 _state = State_Starting; // initializing everything
89
90 openbox = this;
91
92 _displayreq = (char*) 0;
93 _argv = argv;
94 _shutdown = false;
95 _restart = false;
96 _rcfilepath = otk::expandTilde("~/.openbox/rc3");
97 _scriptfilepath = otk::expandTilde("~/.openbox/user.py");
98 _focused_client = 0;
99 _sync = false;
100
101 parseCommandLine(argc, argv);
102
103 XSynchronize(**otk::display, _sync);
104
105 // set up the signal handler
106 action.sa_handler = Openbox::signalHandler;
107 action.sa_mask = sigset_t();
108 action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
109 sigaction(SIGUSR1, &action, (struct sigaction *) 0);
110 sigaction(SIGPIPE, &action, (struct sigaction *) 0);
111 sigaction(SIGSEGV, &action, (struct sigaction *) 0);
112 sigaction(SIGFPE, &action, (struct sigaction *) 0);
113 sigaction(SIGTERM, &action, (struct sigaction *) 0);
114 sigaction(SIGINT, &action, (struct sigaction *) 0);
115 sigaction(SIGHUP, &action, (struct sigaction *) 0);
116
117 otk::Timer::initialize();
118 otk::Property::initialize();
119 _actions = new Actions();
120 _bindings = new Bindings();
121
122 setMasterHandler(_actions); // set as the master event handler
123
124 // create the mouse cursors we'll use
125 _cursors.session = XCreateFontCursor(**otk::display, XC_left_ptr);
126 _cursors.move = XCreateFontCursor(**otk::display, XC_fleur);
127 _cursors.ll_angle = XCreateFontCursor(**otk::display, XC_ll_angle);
128 _cursors.lr_angle = XCreateFontCursor(**otk::display, XC_lr_angle);
129 _cursors.ul_angle = XCreateFontCursor(**otk::display, XC_ul_angle);
130 _cursors.ur_angle = XCreateFontCursor(**otk::display, XC_ur_angle);
131
132 // initialize scripting
133 python_init(argv[0]);
134
135 // load config values
136 python_exec(SCRIPTDIR"/config.py"); // load openbox config values
137 // run all of the python scripts
138 python_exec(SCRIPTDIR"/builtins.py"); // builtin callbacks
139 // run the user's script or the system defaults if that fails
140 if (!python_exec(_scriptfilepath.c_str()))
141 python_exec(SCRIPTDIR"/defaults.py"); // system default bahaviors
142
143 // initialize all the screens
144 Screen *screen;
145 int i = _single ? DefaultScreen(**otk::display) : 0;
146 int max = _single ? i + 1 : ScreenCount(**otk::display);
147 for (; i < max; ++i) {
148 screen = new Screen(i);
149 if (screen->managed())
150 _screens.push_back(screen);
151 else
152 delete screen;
153 }
154
155 if (_screens.empty()) {
156 printf(_("No screens were found without a window manager. Exiting.\n"));
157 ::exit(1);
158 }
159
160 ScreenList::iterator it, end = _screens.end();
161 for (it = _screens.begin(); it != end; ++it) {
162 (*it)->manageExisting();
163 }
164
165 // grab any keys set up before the screens existed
166 _bindings->grabKeys(true);
167
168 // set up input focus
169 _focused_screen = _screens[0];
170 setFocusedClient(0);
171
172 _state = State_Normal; // done starting
173 }
174
175
176 Openbox::~Openbox()
177 {
178 _state = State_Exiting; // time to kill everything
179
180 int first_screen = _screens.front()->number();
181
182 std::for_each(_screens.begin(), _screens.end(), otk::PointerAssassin());
183
184 delete _bindings;
185 delete _actions;
186
187 python_destroy();
188
189 XSetInputFocus(**otk::display, PointerRoot, RevertToNone,
190 CurrentTime);
191 XSync(**otk::display, false);
192
193 // this tends to block.. i honestly am not sure why. causing an x error in
194 // the shutdown process unblocks it. blackbox simply did a ::exit(0), so
195 // all im gunna do is the same.
196 //otk::display->destroy();
197
198 otk::Timer::destroy();
199
200 if (_restart) {
201 if (!_restart_prog.empty()) {
202 const std::string &dstr =
203 otk::display->screenInfo(first_screen)->displayString();
204 otk::putenv(const_cast<char *>(dstr.c_str()));
205 execlp(_restart_prog.c_str(), _restart_prog.c_str(), NULL);
206 perror(_restart_prog.c_str());
207 }
208
209 // fall back in case the above execlp doesn't work
210 execvp(_argv[0], _argv);
211 execvp(otk::basename(_argv[0]).c_str(), _argv);
212 }
213 }
214
215
216 void Openbox::parseCommandLine(int argc, char **argv)
217 {
218 bool err = false;
219
220 for (int i = 1; i < argc; ++i) {
221 std::string arg(argv[i]);
222
223 if (arg == "-display") {
224 if (++i >= argc)
225 err = true;
226 else
227 _displayreq = argv[i];
228 } else if (arg == "-rc") {
229 if (++i >= argc)
230 err = true;
231 else
232 _rcfilepath = argv[i];
233 } else if (arg == "-menu") {
234 if (++i >= argc)
235 err = true;
236 else
237 _menufilepath = argv[i];
238 } else if (arg == "-script") {
239 if (++i >= argc)
240 err = true;
241 else
242 _scriptfilepath = argv[i];
243 } else if (arg == "-sync") {
244 _sync = true;
245 } else if (arg == "-single") {
246 _single = true;
247 } else if (arg == "-version") {
248 showVersion();
249 ::exit(0);
250 } else if (arg == "-help") {
251 showHelp();
252 ::exit(0);
253 } else
254 err = true;
255
256 if (err) {
257 showHelp();
258 exit(1);
259 }
260 }
261 }
262
263
264 void Openbox::showVersion()
265 {
266 printf(_("Openbox - version %s\n"), VERSION);
267 printf(" (c) 2002 - 2002 Ben Jansens\n\n");
268 }
269
270
271 void Openbox::showHelp()
272 {
273 showVersion(); // show the version string and copyright
274
275 // print program usage and command line options
276 printf(_("Usage: %s [OPTIONS...]\n\
277 Options:\n\
278 -display <string> use display connection.\n\
279 -single run on a single screen (default is to run every one).\n\
280 -rc <string> use alternate resource file.\n\
281 -menu <string> use alternate menu file.\n\
282 -script <string> use alternate startup script file.\n\
283 -sync run in synchronous mode (for debugging).\n\
284 -version display version and exit.\n\
285 -help display this help text and exit.\n\n"), _argv[0]);
286
287 printf(_("Compile time options:\n\
288 Debugging: %s\n\
289 Shape: %s\n\
290 Xinerama: %s\n\
291 Xkb: %s\n"),
292 #ifdef DEBUG
293 _("yes"),
294 #else // !DEBUG
295 _("no"),
296 #endif // DEBUG
297
298 #ifdef SHAPE
299 _("yes"),
300 #else // !SHAPE
301 _("no"),
302 #endif // SHAPE
303
304 #ifdef XINERAMA
305 _("yes"),
306 #else // !XINERAMA
307 _("no"),
308 #endif // XINERAMA
309
310 #ifdef XKB
311 _("yes")
312 #else // !XKB
313 _("no")
314 #endif // XKB
315 );
316 }
317
318
319 void Openbox::eventLoop()
320 {
321 while (true) {
322 dispatchEvents(); // from otk::EventDispatcher
323 XFlush(**otk::display); // flush here before we go wait for timers
324 // don't wait if we're to shutdown
325 if (_shutdown) break;
326 otk::Timer::dispatchTimers(!_sync); // wait if not in sync mode
327 }
328 }
329
330
331 void Openbox::addClient(Window window, Client *client)
332 {
333 _clients[window] = client;
334 }
335
336
337 void Openbox::removeClient(Window window)
338 {
339 _clients.erase(window);
340 }
341
342
343 Client *Openbox::findClient(Window window)
344 {
345 /*
346 NOTE: we dont use _clients[] to find the value because that will insert
347 a new null into the hash, which really sucks when we want to clean up the
348 hash at shutdown!
349 */
350 ClientMap::iterator it = _clients.find(window);
351 if (it != _clients.end())
352 return it->second;
353 else
354 return (Client*) 0;
355 }
356
357
358 void Openbox::setFocusedClient(Client *c)
359 {
360 _focused_client = c;
361 if (c) {
362 _focused_screen = _screens[c->screen()];
363 } else {
364 assert(_focused_screen);
365 XSetInputFocus(**otk::display, _focused_screen->focuswindow(),
366 RevertToNone, CurrentTime);
367 }
368 // set the NET_ACTIVE_WINDOW hint for all screens
369 ScreenList::iterator it, end = _screens.end();
370 for (it = _screens.begin(); it != end; ++it) {
371 int num = (*it)->number();
372 Window root = otk::display->screenInfo(num)->rootWindow();
373 otk::Property::set(root, otk::Property::atoms.net_active_window,
374 otk::Property::atoms.window,
375 (c && _focused_screen == *it) ? c->window() : None);
376 }
377
378 // call the python Focus callbacks
379 EventData data(_focused_screen->number(), c, EventFocus, 0);
380 _bindings->fireEvent(&data);
381 }
382
383 void Openbox::execute(int screen, const std::string &bin)
384 {
385 if (screen >= ScreenCount(**otk::display))
386 screen = 0;
387 otk::bexec(bin, otk::display->screenInfo(screen)->displayString());
388 }
389
390 }
391
This page took 0.05611 seconds and 5 git commands to generate.