]> Dogcows Code - chaz/openbox/blob - src/openbox.cc
HRM manageExisting() isnt working!
[chaz/openbox] / 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 "screen.hh"
10 #include "otk/property.hh"
11 #include "otk/display.hh"
12 #include "otk/assassin.hh"
13 #include "otk/util.hh" // TEMPORARY
14
15 extern "C" {
16 #include <X11/cursorfont.h>
17
18 #ifdef HAVE_STDIO_H
19 # include <stdio.h>
20 #endif // HAVE_STDIO_H
21
22 #ifdef HAVE_STDLIB_H
23 # include <stdlib.h>
24 #endif // HAVE_STDLIB_H
25
26 #ifdef HAVE_SIGNAL_H
27 # include <signal.h>
28 #endif // HAVE_SIGNAL_H
29
30 #ifdef HAVE_FCNTL_H
31 # include <fcntl.h>
32 #endif // HAVE_FCNTL_H
33
34 #ifdef HAVE_UNISTD_H
35 # include <sys/types.h>
36 # include <unistd.h>
37 #endif // HAVE_UNISTD_H
38
39 #ifdef HAVE_SYS_SELECT_H
40 # include <sys/select.h>
41 #endif // HAVE_SYS_SELECT_H
42
43 #include "gettext.h"
44 #define _(str) gettext(str)
45 }
46
47 #include <algorithm>
48
49 namespace ob {
50
51 Openbox *Openbox::instance = (Openbox *) 0;
52
53
54 void Openbox::signalHandler(int signal)
55 {
56 switch (signal) {
57 case SIGHUP:
58 // XXX: Do something with HUP? Really shouldn't, we get this when X shuts
59 // down and hangs-up on us.
60
61 case SIGINT:
62 case SIGTERM:
63 case SIGPIPE:
64 printf("Caught signal %d. Exiting.\n", signal);
65 instance->shutdown();
66
67 break;
68 case SIGFPE:
69 case SIGSEGV:
70 printf("Caught signal %d. Aborting and dumping core.\n", signal);
71 abort();
72 }
73 }
74
75
76 Openbox::Openbox(int argc, char **argv)
77 {
78 struct sigaction action;
79
80 _state = State_Starting; // initializing everything
81
82 Openbox::instance = this;
83
84 _displayreq = (char*) 0;
85 _argv0 = argv[0];
86 _doshutdown = false;
87 _rcfilepath = otk::expandTilde("~/.openbox/rc3");
88
89 parseCommandLine(argc, argv);
90
91 // TEMPORARY: using the xrdb rc3
92 _config.setFile(_rcfilepath);
93 if (!_config.load()) {
94 printf("failed to load rc file %s\n", _config.file().c_str());
95 ::exit(2);
96 }
97 std::string s;
98 _config.getValue("session.styleFile", s);
99 _config.setFile(s);
100 if (!_config.load()) {
101 printf("failed to load style %s\n", _config.file().c_str());
102 ::exit(2);
103 }
104
105 // open the X display (and gets some info about it, and its screens)
106 otk::OBDisplay::initialize(_displayreq);
107 assert(otk::OBDisplay::display);
108
109 // set up the signal handler
110 action.sa_handler = Openbox::signalHandler;
111 action.sa_mask = sigset_t();
112 action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
113 sigaction(SIGPIPE, &action, (struct sigaction *) 0);
114 sigaction(SIGSEGV, &action, (struct sigaction *) 0);
115 sigaction(SIGFPE, &action, (struct sigaction *) 0);
116 sigaction(SIGTERM, &action, (struct sigaction *) 0);
117 sigaction(SIGINT, &action, (struct sigaction *) 0);
118 sigaction(SIGHUP, &action, (struct sigaction *) 0);
119
120 _property = new otk::OBProperty();
121
122 // create the mouse cursors we'll use
123 _cursors.session = XCreateFontCursor(otk::OBDisplay::display, XC_left_ptr);
124 _cursors.move = XCreateFontCursor(otk::OBDisplay::display, XC_fleur);
125 _cursors.ll_angle = XCreateFontCursor(otk::OBDisplay::display, XC_ll_angle);
126 _cursors.lr_angle = XCreateFontCursor(otk::OBDisplay::display, XC_lr_angle);
127 _cursors.ul_angle = XCreateFontCursor(otk::OBDisplay::display, XC_ul_angle);
128 _cursors.ur_angle = XCreateFontCursor(otk::OBDisplay::display, XC_ur_angle);
129
130 // initialize all the screens
131 _screens.push_back(new OBScreen(0, _config));
132 _screens[0]->manageExisting();
133 // XXX: "change to" the first workspace on the screen to initialize stuff
134
135 _state = State_Normal; // done starting
136 }
137
138
139 Openbox::~Openbox()
140 {
141 _state = State_Exiting; // time to kill everything
142
143 std::for_each(_screens.begin(), _screens.end(), otk::PointerAssassin());
144
145 // close the X display
146 otk::OBDisplay::destroy();
147 }
148
149
150 void Openbox::parseCommandLine(int argc, char **argv)
151 {
152 bool err = false;
153
154 for (int i = 1; i < argc; ++i) {
155 std::string arg(argv[i]);
156
157 if (arg == "-display") {
158 if (++i >= argc)
159 err = true;
160 else
161 _displayreq = argv[i];
162 } else if (arg == "-rc") {
163 if (++i >= argc)
164 err = true;
165 else
166 _rcfilepath = argv[i];
167 } else if (arg == "-menu") {
168 if (++i >= argc)
169 err = true;
170 else
171 _menufilepath = argv[i];
172 } else if (arg == "-version") {
173 showVersion();
174 ::exit(0);
175 } else if (arg == "-help") {
176 showHelp();
177 ::exit(0);
178 } else
179 err = true;
180
181 if (err) {
182 showHelp();
183 exit(1);
184 }
185 }
186 }
187
188
189 void Openbox::showVersion()
190 {
191 printf(_("Openbox - version %s\n"), OPENBOX_VERSION);
192 printf(" (c) 2002 - 2002 Ben Jansens\n\n");
193 }
194
195
196 void Openbox::showHelp()
197 {
198 showVersion(); // show the version string and copyright
199
200 // print program usage and command line options
201 printf(_("Usage: %s [OPTIONS...]\n\
202 Options:\n\
203 -display <string> use display connection.\n\
204 -rc <string> use alternate resource file.\n\
205 -menu <string> use alternate menu file.\n\
206 -version display version and exit.\n\
207 -help display this help text and exit.\n\n"), _argv0);
208
209 printf(_("Compile time options:\n\
210 Debugging: %s\n\
211 Shape: %s\n\
212 Xinerama: %s\n"),
213 #ifdef DEBUG
214 _("yes"),
215 #else // !DEBUG
216 _("no"),
217 #endif // DEBUG
218
219 #ifdef SHAPE
220 _("yes"),
221 #else // !SHAPE
222 _("no"),
223 #endif // SHAPE
224
225 #ifdef XINERAMA
226 _("yes")
227 #else // !XINERAMA
228 _("no")
229 #endif // XINERAMA
230 );
231 }
232
233
234 void Openbox::eventLoop()
235 {
236 while (!_doshutdown) {
237 if (XPending(otk::OBDisplay::display)) {
238 XEvent e;
239 XNextEvent(otk::OBDisplay::display, &e);
240 //process_event(&e);
241 _xeventhandler.handle(e);
242 } else {
243 _timermanager.fire();
244 }
245 }
246 }
247
248
249 void Openbox::addClient(Window window, OBClient *client)
250 {
251 _clients[window] = client;
252 }
253
254
255 void Openbox::removeClient(Window window)
256 {
257 ClientMap::iterator it = _clients.find(window);
258 if (it != _clients.end())
259 _clients.erase(it);
260 }
261
262
263 OBClient *Openbox::findClient(Window window)
264 {
265 /*
266 NOTE: we dont use _clients[] to find the value because that will insert
267 a new null into the hash, which really sucks when we want to clean up the
268 hash at shutdown!
269 */
270 ClientMap::iterator it = _clients.find(window);
271 if (it != _clients.end())
272 return it->second;
273 else
274 return (OBClient*) 0;
275 }
276
277 }
278
This page took 0.048833 seconds and 5 git commands to generate.