]>
Dogcows Code - chaz/openbox/blob - src/openbox.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
11 #include "otk/property.hh"
12 #include "otk/assassin.hh"
13 #include "otk/property.hh"
14 #include "otk/util.hh"
15 #include "otk/rendercolor.hh"
16 #include "otk/renderstyle.hh"
17 #include "otk/messagedialog.hh"
20 #include <X11/cursorfont.h>
24 #endif // HAVE_SIGNAL_H
28 #endif // HAVE_FCNTL_H
30 #ifdef HAVE_SYS_WAIT_H
31 # include <sys/wait.h>
32 #endif // HAVE_SYS_WAIT_H
35 #define _(str) gettext(str)
43 extern void initialize();
44 extern void destroy();
49 Openbox
*openbox
= (Openbox
*) 0;
52 void Openbox::signalHandler(int signal
)
56 printf("Caught SIGUSR1 signal. Restarting.\n");
68 printf("Caught signal %d. Exiting.\n", signal
);
74 printf("Caught signal %d. Aborting and dumping core.\n", signal
);
80 Openbox::Openbox(int argc
, char **argv
)
81 : otk::EventDispatcher(),
84 struct sigaction action
;
86 _state
= State_Starting
; // initializing everything
93 _rcfilepath
= otk::expandTilde("~/.openbox/rc3");
94 _scriptfilepath
= otk::expandTilde("~/.openbox/user.py");
100 parseCommandLine(argc
, argv
);
104 XSynchronize(**otk::display
, _sync
);
106 // set up the signal handler
107 action
.sa_handler
= Openbox::signalHandler
;
108 action
.sa_mask
= sigset_t();
109 action
.sa_flags
= SA_NOCLDSTOP
| SA_NODEFER
;
110 sigaction(SIGUSR1
, &action
, (struct sigaction
*) 0);
111 sigaction(SIGPIPE
, &action
, (struct sigaction
*) 0);
112 sigaction(SIGSEGV
, &action
, (struct sigaction
*) 0);
113 sigaction(SIGFPE
, &action
, (struct sigaction
*) 0);
114 sigaction(SIGTERM
, &action
, (struct sigaction
*) 0);
115 sigaction(SIGINT
, &action
, (struct sigaction
*) 0);
116 sigaction(SIGHUP
, &action
, (struct sigaction
*) 0);
117 sigaction(SIGCHLD
, &action
, (struct sigaction
*) 0);
119 // anything that died while we were restarting won't give us a SIGCHLD
120 while (waitpid(-1, NULL
, WNOHANG
) > 0);
122 _actions
= new Actions();
123 _bindings
= new Bindings();
125 setMasterHandler(_actions
); // set as the master event handler
127 // create the mouse cursors we'll use
128 _cursors
.session
= XCreateFontCursor(**otk::display
, XC_left_ptr
);
129 _cursors
.move
= XCreateFontCursor(**otk::display
, XC_fleur
);
130 _cursors
.ll_angle
= XCreateFontCursor(**otk::display
, XC_ll_angle
);
131 _cursors
.lr_angle
= XCreateFontCursor(**otk::display
, XC_lr_angle
);
132 _cursors
.ul_angle
= XCreateFontCursor(**otk::display
, XC_ul_angle
);
133 _cursors
.ur_angle
= XCreateFontCursor(**otk::display
, XC_ur_angle
);
135 // initialize all the screens
138 for (int i
= 0, max
= ScreenCount(**otk::display
); i
< max
; ++i
) {
140 // in single mode skip the screens we don't want to manage
141 if (_single
&& i
!= DefaultScreen(**otk::display
)) {
142 _screens
.push_back(0);
145 // try manage the screen
146 screen
= new Screen(i
);
147 if (screen
->managed()) {
148 _screens
.push_back(screen
);
149 if (!_focused_screen
) // set this to the first screen managed
150 _focused_screen
= screen
;
153 _screens
.push_back(0);
157 if (_screens
.empty()) {
158 printf(_("No screens were found without a window manager. Exiting.\n"));
162 assert(_focused_screen
);
164 ScreenList::iterator it
, end
= _screens
.end();
166 // run the user's script or the system defaults if that fails
169 // initialize scripting
170 python_init(argv
[0]);
172 // load all of the screens' configs here so we have a theme set if
173 // we decide to show the dialog below
174 for (it
= _screens
.begin(); it
!= end
; ++it
)
175 (*it
)->config().load(); // load the defaults from config.py
177 pyerr
= doretry
= false;
179 // reset all the python stuff
180 _bindings
->removeAllKeys();
181 _bindings
->removeAllButtons();
182 _bindings
->removeAllEvents();
184 int ret
= python_exec(_scriptfilepath
.c_str());
189 // reset all the python stuff
190 _bindings
->removeAllKeys();
191 _bindings
->removeAllButtons();
192 _bindings
->removeAllEvents();
194 if (python_exec(SCRIPTDIR
"/defaults.py")) // system default bahaviors
200 msg
+= _("An error occured while executing the python scripts.");
202 msg
+= _("See the exact error message in Openbox's output for details.");
203 otk::MessageDialog
dia(this, _("Python Error"), msg
);
204 otk::DialogButton
ok(_("Okay"), true);
205 otk::DialogButton
retry(_("Retry"));
207 dia
.addButton(retry
);
210 const otk::DialogButton
&res
= dia
.run();
213 python_destroy(); // kill all the python modules so they reinit right
216 } while (pyerr
&& doretry
);
218 for (it
= _screens
.begin(); it
!= end
; ++it
) {
219 (*it
)->config().load(); // load the config as the scripts may change it
220 (*it
)->manageExisting();
223 // grab any keys set up before the screens existed
224 //_bindings->grabKeys(true);
226 // set up input focus
229 _state
= State_Normal
; // done starting
235 _state
= State_Exiting
; // time to kill everything
237 std::for_each(_screens
.begin(), _screens
.end(), otk::PointerAssassin());
244 XSetInputFocus(**otk::display
, PointerRoot
, RevertToNone
,
246 XSync(**otk::display
, false);
252 void Openbox::parseCommandLine(int argc
, char **argv
)
256 for (int i
= 1; i
< argc
; ++i
) {
257 std::string
arg(argv
[i
]);
263 _rcfilepath
= argv
[i
];
264 } else if (arg
== "-menu") {
268 _menufilepath
= argv
[i
];
269 } else if (arg
== "-script") {
273 _scriptfilepath
= argv
[i
];
274 } else if (arg
== "-sync") {
276 } else if (arg
== "-single") {
278 } else if (arg
== "-remote") {
280 } else if (arg
== "-version") {
283 } else if (arg
== "-help") {
297 void Openbox::showVersion()
299 printf(_("Openbox - version %s\n"), VERSION
);
300 printf(" (c) 2002 - 2002 Ben Jansens\n\n");
304 void Openbox::showHelp()
306 showVersion(); // show the version string and copyright
308 // print program usage and command line options
309 printf(_("Usage: %s [OPTIONS...]\n\
311 -remote optimize for a remote (low bandwidth) connection to the\n\
313 -single run on a single screen (default is to run every one).\n\
314 -rc <string> use alternate resource file.\n\
315 -menu <string> use alternate menu file.\n\
316 -script <string> use alternate startup script file.\n\
317 -sync run in synchronous mode (for debugging X errors).\n\
318 -version display version and exit.\n\
319 -help display this help text and exit.\n\n"), _argv
[0]);
321 printf(_("Compile time options:\n\
353 void Openbox::eventLoop()
356 dispatchEvents(false); // from otk::EventDispatcher
357 // XFlush(**otk::display); // flush here before we go wait for timers
358 // .. the XPending() should have done this last
359 // already, it does a flush when it returns 0
360 // don't wait if we're to shutdown
361 if (_shutdown
) break;
362 otk::Timer::dispatchTimers(!_sync
); // wait if not in sync mode
367 void Openbox::addClient(Window window
, Client
*client
)
369 _clients
[window
] = client
;
373 void Openbox::removeClient(Window window
)
375 _clients
.erase(window
);
379 Client
*Openbox::findClient(Window window
)
382 NOTE: we dont use _clients[] to find the value because that will insert
383 a new null into the hash, which really sucks when we want to clean up the
386 ClientMap::iterator it
= _clients
.find(window
);
387 if (it
!= _clients
.end())
394 void Openbox::setFocusedClient(Client
*c
)
396 // sometimes this is called with the already-focused window, this is
397 // important for the python scripts to work (eg, c = 0 twice). don't just
398 // return if _focused_client == c
400 assert(_focused_screen
);
402 // uninstall the old colormap
404 _focused_client
->installColormap(false);
406 _focused_screen
->installColormap(false);
410 _focused_screen
= _screens
[c
->screen()];
412 // install the client's colormap
413 c
->installColormap(true);
415 XSetInputFocus(**otk::display
, _focused_screen
->focuswindow(),
416 RevertToNone
, CurrentTime
);
418 // install the root window colormap
419 _focused_screen
->installColormap(true);
421 // set the NET_ACTIVE_WINDOW hint for all screens
422 ScreenList::iterator it
, end
= _screens
.end();
423 for (it
= _screens
.begin(); it
!= end
; ++it
) {
424 int num
= (*it
)->number();
425 Window root
= otk::display
->screenInfo(num
)->rootWindow();
426 otk::Property::set(root
, otk::Property::atoms
.net_active_window
,
427 otk::Property::atoms
.window
,
428 (c
&& _focused_screen
== *it
) ? c
->window() : None
);
431 // call the python Focus callbacks
432 EventData
data(_focused_screen
->number(), c
, EventAction::Focus
, 0);
433 _bindings
->fireEvent(&data
);
This page took 0.056471 seconds and 5 git commands to generate.