]> icculus.org git repositories - dana/openbox.git/blob - src/openbox.cc
fix compiling with the new strut (new namespace)
[dana/openbox.git] / src / openbox.cc
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 #include "../version.h"
8 #include "openbox.hh"
9 #include "otk/property.hh"
10 #include "otk/display.hh"
11
12 extern "C" {
13 #ifdef    HAVE_STDIO_H
14 #  include <stdio.h>
15 #endif // HAVE_STDIO_H
16
17 #ifdef    HAVE_STDLIB_H
18 #  include <stdlib.h>
19 #endif // HAVE_STDLIB_H
20
21 #ifdef    HAVE_SIGNAL_H
22 #  include <signal.h>
23 #endif // HAVE_SIGNAL_H
24
25 #ifdef    HAVE_FCNTL_H
26 #  include <fcntl.h>
27 #endif // HAVE_FCNTL_H
28
29 #ifdef    HAVE_UNISTD_H
30 #  include <sys/types.h>
31 #  include <unistd.h>
32 #endif // HAVE_UNISTD_H
33
34 #ifdef    HAVE_SYS_SELECT_H
35 #  include <sys/select.h>
36 #endif // HAVE_SYS_SELECT_H
37
38 #include "gettext.h"
39 #define _(str) gettext(str)
40 }
41
42 namespace ob {
43
44 Openbox *Openbox::instance = (Openbox *) 0;
45
46
47 void Openbox::signalHandler(int signal)
48 {
49   switch (signal) {
50   case SIGHUP:
51     // XXX: Do something with HUP? Really shouldn't, we get this when X shuts
52     //      down and hangs-up on us.
53     
54   case SIGINT:
55   case SIGTERM:
56   case SIGPIPE:
57     printf("Caught signal %d. Exiting.", signal);
58     instance->shutdown();
59
60     break;
61   case SIGFPE:
62   case SIGSEGV:
63     printf("Caught signal %d. Aborting and dumping core.", signal);
64     abort();
65   }
66 }
67
68
69 Openbox::Openbox(int argc, char **argv)
70 {
71   struct sigaction action;
72
73   _state = State_Starting; // initializing everything
74
75   Openbox::instance = this;
76
77   _displayreq = (char*) 0;
78   _argv0 = argv[0];
79   _doshutdown = false;
80
81   parseCommandLine(argc, argv);
82
83   // open the X display (and gets some info about it, and its screens)
84   otk::OBDisplay::initialize(_displayreq);
85   assert(otk::OBDisplay::display);
86     
87   // set up the signal handler
88   action.sa_handler = Openbox::signalHandler;
89   action.sa_mask = sigset_t();
90   action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
91   sigaction(SIGPIPE, &action, (struct sigaction *) 0);
92   sigaction(SIGSEGV, &action, (struct sigaction *) 0);
93   sigaction(SIGFPE, &action, (struct sigaction *) 0);
94   sigaction(SIGTERM, &action, (struct sigaction *) 0);
95   sigaction(SIGINT, &action, (struct sigaction *) 0);
96   sigaction(SIGHUP, &action, (struct sigaction *) 0);
97
98   _property = new otk::OBProperty();
99   
100   
101   _state = State_Normal; // done starting
102 }
103
104
105 Openbox::~Openbox()
106 {
107   _state = State_Exiting; // time to kill everything
108   
109   // close the X display
110   otk::OBDisplay::destroy();
111 }
112
113
114 void Openbox::parseCommandLine(int argc, char **argv)
115 {
116   bool err = false;
117
118   for (int i = 1; i < argc; ++i) {
119     std::string arg(argv[i]);
120
121     if (arg == "-display") {
122       if (++i >= argc)
123         err = true;
124       else
125         _displayreq = argv[i];
126     } else if (arg == "-rc") {
127       if (++i >= argc)
128         err = true;
129       else
130         _rcfilepath = argv[i];
131     } else if (arg == "-menu") {
132       if (++i >= argc)
133         err = true;
134       else
135         _menufilepath = argv[i];
136     } else if (arg == "-version") {
137       showVersion();
138       ::exit(0);
139     } else if (arg == "-help") {
140       showHelp();
141       ::exit(0);
142     } else
143       err = true;
144
145     if (err) {
146       showHelp();
147       exit(1);
148     }
149   }
150 }
151
152
153 void Openbox::showVersion()
154 {
155   printf(_("Openbox - version %s\n"), OPENBOX_VERSION);
156   printf("    (c) 2002 - 2002 Ben Jansens\n\n");
157 }
158
159
160 void Openbox::showHelp()
161 {
162   showVersion(); // show the version string and copyright
163
164   // print program usage and command line options
165   printf(_("Usage: %s [OPTIONS...]\n\
166   Options:\n\
167   -display <string>  use display connection.\n\
168   -rc <string>       use alternate resource file.\n\
169   -menu <string>     use alternate menu file.\n\
170   -version           display version and exit.\n\
171   -help              display this help text and exit.\n\n"), _argv0);
172
173   printf(_("Compile time options:\n\
174   Debugging: %s\n\
175   Shape:     %s\n\
176   Xinerama:  %s\n"),
177 #ifdef    DEBUG
178          _("yes"),
179 #else // !DEBUG
180          _("no"),
181 #endif // DEBUG
182
183 #ifdef    SHAPE
184          _("yes"),
185 #else // !SHAPE
186          _("no"),
187 #endif // SHAPE
188
189 #ifdef    XINERAMA
190          _("yes")
191 #else // !XINERAMA
192          _("no")
193 #endif // XINERAMA
194     );
195 }
196
197
198 void Openbox::eventLoop()
199 {
200   while (!_doshutdown) {
201     if (XPending(otk::OBDisplay::display)) {
202       XEvent e;
203       XNextEvent(otk::OBDisplay::display, &e);
204       //process_event(&e);
205       _xeventhandler.handle(e);
206     } else {
207       _timermanager.fire();
208     }
209   }
210 }
211
212
213 void Openbox::addClient(Window window, OBClient *client)
214 {
215   _clients[window] = client;
216 }
217
218
219 void Openbox::removeClient(Window window)
220 {
221   _clients[window] = (OBClient *) 0;
222 }
223
224
225 OBClient *Openbox::findClient(Window window)
226 {
227   return _clients[window];
228 }
229
230 }
231