]> Dogcows Code - chaz/openbox/blob - openbox/openbox.c
new popups with subclasses, added an ObIconPopup for popups with icons, and ObPagerPo...
[chaz/openbox] / openbox / openbox.c
1 #include "debug.h"
2 #include "openbox.h"
3 #include "session.h"
4 #include "dock.h"
5 #include "event.h"
6 #include "menu.h"
7 #include "client.h"
8 #include "xerror.h"
9 #include "prop.h"
10 #include "screen.h"
11 #include "startupnotify.h"
12 #include "focus.h"
13 #include "moveresize.h"
14 #include "frame.h"
15 #include "keyboard.h"
16 #include "mouse.h"
17 #include "extensions.h"
18 #include "menuframe.h"
19 #include "grab.h"
20 #include "group.h"
21 #include "config.h"
22 #include "mainloop.h"
23 #include "gettext.h"
24 #include "parser/parse.h"
25 #include "render/render.h"
26 #include "render/theme.h"
27
28 #ifdef HAVE_FCNTL_H
29 # include <fcntl.h>
30 #endif
31 #ifdef HAVE_SIGNAL_H
32 #define __USE_UNIX98
33 # include <signal.h>
34 #endif
35 #ifdef HAVE_STDLIB_H
36 # include <stdlib.h>
37 #endif
38 #ifdef HAVE_LOCALE_H
39 # include <locale.h>
40 #endif
41 #ifdef HAVE_SYS_STAT_H
42 # include <sys/stat.h>
43 # include <sys/types.h>
44 #endif
45 #ifdef HAVE_UNISTD_H
46 # include <unistd.h>
47 #endif
48
49 #include <X11/cursorfont.h>
50
51 RrInstance *ob_rr_inst;
52 RrTheme *ob_rr_theme;
53 ObMainLoop *ob_main_loop;
54 Display *ob_display;
55 gint ob_screen;
56 gboolean ob_replace_wm;
57
58 static ObState state;
59 static gboolean xsync;
60 static gboolean reconfigure;
61 static gboolean restart;
62 static char *restart_path;
63 static Cursor cursors[OB_NUM_CURSORS];
64 static KeyCode keys[OB_NUM_KEYS];
65
66 static void signal_handler(int signal, gpointer data);
67 static void parse_args(int argc, char **argv);
68
69 int main(int argc, char **argv)
70 {
71 char *path;
72
73 #ifdef DEBUG
74 ob_debug_show_output(TRUE);
75 #endif
76
77 state = OB_STATE_STARTING;
78
79 /* initialize the locale */
80 if (!setlocale(LC_ALL, ""))
81 g_warning("Couldn't set locale from environment.\n");
82 bindtextdomain(PACKAGE_NAME, LOCALEDIR);
83 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8");
84 textdomain(PACKAGE_NAME);
85
86 /* create the ~/.openbox dir */
87 path = g_build_filename(g_get_home_dir(), ".openbox", NULL);
88 mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
89 S_IROTH | S_IWOTH | S_IXOTH));
90 g_free(path);
91 /* create the ~/.openbox/themes dir */
92 path = g_build_filename(g_get_home_dir(), ".openbox", "themes", NULL);
93 mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
94 S_IROTH | S_IWOTH | S_IXOTH));
95 g_free(path);
96 /* create the ~/.openbox/sessions dir */
97 path = g_build_filename(g_get_home_dir(), ".openbox", "sessions", NULL);
98 mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
99 S_IROTH | S_IWOTH | S_IXOTH));
100 g_free(path);
101
102 g_set_prgname(argv[0]);
103
104 session_startup(&argc, &argv);
105
106 /* parse out command line args */
107 parse_args(argc, argv);
108
109 ob_display = XOpenDisplay(NULL);
110 if (ob_display == NULL)
111 ob_exit_with_error("Failed to open the display.");
112 if (fcntl(ConnectionNumber(ob_display), F_SETFD, 1) == -1)
113 ob_exit_with_error("Failed to set display as close-on-exec.");
114
115 ob_main_loop = ob_main_loop_new(ob_display);
116
117 /* set up signal handler */
118 ob_main_loop_signal_add(ob_main_loop, SIGUSR1, signal_handler, NULL, NULL);
119 ob_main_loop_signal_add(ob_main_loop, SIGUSR2, signal_handler, NULL, NULL);
120 ob_main_loop_signal_add(ob_main_loop, SIGTERM, signal_handler, NULL, NULL);
121 ob_main_loop_signal_add(ob_main_loop, SIGINT, signal_handler, NULL, NULL);
122 ob_main_loop_signal_add(ob_main_loop, SIGHUP, signal_handler, NULL, NULL);
123 ob_main_loop_signal_add(ob_main_loop, SIGPIPE, signal_handler, NULL, NULL);
124
125 ob_screen = DefaultScreen(ob_display);
126
127 ob_rr_inst = RrInstanceNew(ob_display, ob_screen);
128 if (ob_rr_inst == NULL)
129 ob_exit_with_error("Failed to initialize the render library.");
130
131 /* XXX fork self onto other screens */
132
133 XSynchronize(ob_display, xsync);
134
135 /* check for locale support */
136 if (!XSupportsLocale())
137 g_warning("X server does not support locale.");
138 if (!XSetLocaleModifiers(""))
139 g_warning("Cannot set locale modifiers for the X server.");
140
141 /* set our error handler */
142 XSetErrorHandler(xerror_handler);
143
144 /* set the DISPLAY environment variable for any lauched children, to the
145 display we're using, so they open in the right place. */
146 putenv(g_strdup_printf("DISPLAY=%s", DisplayString(ob_display)));
147
148 /* create available cursors */
149 cursors[OB_CURSOR_NONE] = None;
150 cursors[OB_CURSOR_POINTER] =
151 XCreateFontCursor(ob_display, XC_left_ptr);
152 cursors[OB_CURSOR_BUSY] =
153 XCreateFontCursor(ob_display, XC_watch);
154 cursors[OB_CURSOR_MOVE] =
155 XCreateFontCursor(ob_display, XC_fleur);
156 cursors[OB_CURSOR_NORTH] =
157 XCreateFontCursor(ob_display, XC_top_side);
158 cursors[OB_CURSOR_NORTHEAST] =
159 XCreateFontCursor(ob_display, XC_top_right_corner);
160 cursors[OB_CURSOR_EAST] =
161 XCreateFontCursor(ob_display, XC_right_side);
162 cursors[OB_CURSOR_SOUTHEAST] =
163 XCreateFontCursor(ob_display, XC_bottom_right_corner);
164 cursors[OB_CURSOR_SOUTH] =
165 XCreateFontCursor(ob_display, XC_bottom_side);
166 cursors[OB_CURSOR_SOUTHWEST] =
167 XCreateFontCursor(ob_display, XC_bottom_left_corner);
168 cursors[OB_CURSOR_WEST] =
169 XCreateFontCursor(ob_display, XC_left_side);
170 cursors[OB_CURSOR_NORTHWEST] =
171 XCreateFontCursor(ob_display, XC_top_left_corner);
172
173 /* create available keycodes */
174 keys[OB_KEY_RETURN] =
175 XKeysymToKeycode(ob_display, XStringToKeysym("Return"));
176 keys[OB_KEY_ESCAPE] =
177 XKeysymToKeycode(ob_display, XStringToKeysym("Escape"));
178 keys[OB_KEY_LEFT] =
179 XKeysymToKeycode(ob_display, XStringToKeysym("Left"));
180 keys[OB_KEY_RIGHT] =
181 XKeysymToKeycode(ob_display, XStringToKeysym("Right"));
182 keys[OB_KEY_UP] =
183 XKeysymToKeycode(ob_display, XStringToKeysym("Up"));
184 keys[OB_KEY_DOWN] =
185 XKeysymToKeycode(ob_display, XStringToKeysym("Down"));
186
187 prop_startup(); /* get atoms values for the display */
188 extensions_query_all(); /* find which extensions are present */
189
190 if (screen_annex()) { /* it will be ours! */
191 do {
192 {
193 ObParseInst *i;
194 xmlDocPtr doc;
195 xmlNodePtr node;
196
197 /* startup the parsing so everything can register sections
198 of the rc */
199 i = parse_startup();
200
201 config_startup(i);
202 /* parse/load user options */
203 if (parse_load_rc(&doc, &node))
204 parse_tree(i, doc, node->xmlChildrenNode);
205 /* we're done with parsing now, kill it */
206 xmlFreeDoc(doc);
207 parse_shutdown(i);
208 }
209
210 /* load the theme specified in the rc file */
211 {
212 RrTheme *theme;
213 if ((theme = RrThemeNew(ob_rr_inst, config_theme))) {
214 RrThemeFree(ob_rr_theme);
215 ob_rr_theme = theme;
216 }
217 if (ob_rr_theme == NULL)
218 ob_exit_with_error("Unable to load a theme.");
219 }
220
221 event_startup(reconfigure);
222 grab_startup(reconfigure);
223 /* focus_backup is used for stacking, so this needs to come before
224 anything that calls stacking_add */
225 focus_startup(reconfigure);
226 window_startup(reconfigure);
227 sn_startup(reconfigure);
228 moveresize_startup(reconfigure);
229 screen_startup(reconfigure);
230 group_startup(reconfigure);
231 client_startup(reconfigure);
232 dock_startup(reconfigure);
233 keyboard_startup(reconfigure);
234 mouse_startup(reconfigure);
235 menu_startup(reconfigure);
236
237 if (!reconfigure) {
238 /* get all the existing windows */
239 client_manage_all();
240 } else {
241 GList *it;
242
243 /* redecorate all existing windows */
244 for (it = client_list; it; it = g_list_next(it)) {
245 ObClient *c = it->data;
246 frame_adjust_theme(c->frame);
247 }
248 }
249
250 reconfigure = FALSE;
251
252 state = OB_STATE_RUNNING;
253 ob_main_loop_run(ob_main_loop);
254 state = OB_STATE_EXITING;
255
256 if (!reconfigure) {
257 dock_remove_all();
258 client_unmanage_all();
259 }
260
261 menu_shutdown(reconfigure);
262 mouse_shutdown(reconfigure);
263 keyboard_shutdown(reconfigure);
264 dock_shutdown(reconfigure);
265 client_shutdown(reconfigure);
266 group_shutdown(reconfigure);
267 screen_shutdown(reconfigure);
268 focus_shutdown(reconfigure);
269 moveresize_shutdown(reconfigure);
270 sn_shutdown(reconfigure);
271 window_shutdown(reconfigure);
272 grab_shutdown(reconfigure);
273 event_shutdown(reconfigure);
274 config_shutdown();
275 } while (reconfigure);
276 }
277
278 RrThemeFree(ob_rr_theme);
279 RrInstanceFree(ob_rr_inst);
280
281 session_shutdown();
282
283 XCloseDisplay(ob_display);
284
285 if (restart) {
286 if (restart_path != NULL) {
287 int argcp;
288 char **argvp;
289 GError *err = NULL;
290
291 /* run other shit */
292 if (g_shell_parse_argv(restart_path, &argcp, &argvp, &err)) {
293 execvp(argvp[0], argvp);
294 g_strfreev(argvp);
295 } else {
296 g_warning("failed to execute '%s': %s", restart_path,
297 err->message);
298 }
299 }
300
301 /* re-run me */
302 execvp(argv[0], argv); /* try how we were run */
303 execlp(argv[0], g_path_get_basename(argv[0])); /* last resort */
304 }
305
306 return 0;
307 }
308
309 static void signal_handler(int signal, gpointer data)
310 {
311 if (signal == SIGUSR1) {
312 fprintf(stderr, "Caught signal %d. Restarting.\n", signal);
313 ob_restart();
314 } else if (signal == SIGUSR2) {
315 fprintf(stderr, "Caught signal %d. Reconfiguring.\n", signal);
316 ob_reconfigure();
317 } else {
318 fprintf(stderr, "Caught signal %d. Exiting.\n", signal);
319 ob_exit();
320 }
321 }
322
323 static void print_version()
324 {
325 g_print("Openbox %s\n\n", PACKAGE_VERSION);
326 g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
327 g_print("This is free software, and you are welcome to redistribute it\n");
328 g_print("under certain conditions. See the file COPYING for details.\n\n");
329 }
330
331 static void print_help()
332 {
333 print_version();
334 g_print("Syntax: openbox [options]\n\n");
335 g_print("Options:\n\n");
336 #ifdef USE_SM
337 g_print(" --sm-disable Disable connection to session manager\n");
338 g_print(" --sm-client-id ID Specify session management ID\n");
339 g_print(" --sm-save-file FILE Specify file to load a saved session\n"
340 " from\n");
341 #endif
342 g_print(" --replace Replace the currently running window "
343 "manager\n");
344 g_print(" --help Display this help and exit\n");
345 g_print(" --version Display the version and exit\n");
346 g_print(" --sync Run in synchronous mode (this is slow and\n"
347 " meant for debugging X routines)\n");
348 g_print(" --debug Display debugging output\n");
349 g_print("\nPlease report bugs at %s\n", PACKAGE_BUGREPORT);
350 }
351
352 static void parse_args(int argc, char **argv)
353 {
354 int i;
355
356 for (i = 1; i < argc; ++i) {
357 if (!strcmp(argv[i], "--version")) {
358 print_version();
359 exit(0);
360 } else if (!strcmp(argv[i], "--help")) {
361 print_help();
362 exit(0);
363 } else if (!strcmp(argv[i], "--g-fatal-warnings")) {
364 g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL);
365 } else if (!strcmp(argv[i], "--replace")) {
366 ob_replace_wm = TRUE;
367 } else if (!strcmp(argv[i], "--sync")) {
368 xsync = TRUE;
369 } else if (!strcmp(argv[i], "--debug")) {
370 ob_debug_show_output(TRUE);
371 } else {
372 g_printerr("Invalid option: '%s'\n\n", argv[i]);
373 print_help();
374 exit(1);
375 }
376 }
377 }
378
379 void ob_exit_with_error(gchar *msg)
380 {
381 g_critical(msg);
382 session_shutdown();
383 exit(EXIT_FAILURE);
384 }
385
386 void ob_restart_other(const gchar *path)
387 {
388 restart_path = g_strdup(path);
389 ob_restart();
390 }
391
392 void ob_restart()
393 {
394 restart = TRUE;
395 ob_exit();
396 }
397
398 void ob_exit()
399 {
400 ob_main_loop_exit(ob_main_loop);
401 }
402
403 Cursor ob_cursor(ObCursor cursor)
404 {
405 g_assert(cursor < OB_NUM_CURSORS);
406 return cursors[cursor];
407 }
408
409 KeyCode ob_keycode(ObKey key)
410 {
411 g_assert(key < OB_NUM_KEYS);
412 return keys[key];
413 }
414
415 ObState ob_state()
416 {
417 return state;
418 }
419
420 gchar *ob_expand_tilde(const gchar *f)
421 {
422 gchar **spl;
423 gchar *ret;
424
425 if (!f)
426 return NULL;
427 spl = g_strsplit(f, "~", 0);
428 ret = g_strjoinv(g_get_home_dir(), spl);
429 g_strfreev(spl);
430 return ret;
431 }
432
433 void ob_reconfigure()
434 {
435 reconfigure = TRUE;
436 ob_exit();
437 }
This page took 0.05991 seconds and 4 git commands to generate.