f19f064c535bd89a9d9ba350f1567a4e43a9ff0c
[mikachu/openbox.git] / openbox / openbox.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    openbox.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "debug.h"
21 #include "openbox.h"
22 #include "session.h"
23 #include "dock.h"
24 #include "modkeys.h"
25 #include "event.h"
26 #include "menu.h"
27 #include "client.h"
28 #include "xerror.h"
29 #include "prop.h"
30 #include "screen.h"
31 #include "actions.h"
32 #include "startupnotify.h"
33 #include "focus.h"
34 #include "focus_cycle.h"
35 #include "focus_cycle_indicator.h"
36 #include "focus_cycle_popup.h"
37 #include "moveresize.h"
38 #include "frame.h"
39 #include "framerender.h"
40 #include "keyboard.h"
41 #include "mouse.h"
42 #include "extensions.h"
43 #include "menuframe.h"
44 #include "grab.h"
45 #include "group.h"
46 #include "config.h"
47 #include "ping.h"
48 #include "mainloop.h"
49 #include "prompt.h"
50 #include "gettext.h"
51 #include "parser/parse.h"
52 #include "render/render.h"
53 #include "render/theme.h"
54
55 #ifdef HAVE_FCNTL_H
56 #  include <fcntl.h>
57 #endif
58 #ifdef HAVE_SIGNAL_H
59 #  include <signal.h>
60 #endif
61 #ifdef HAVE_STDLIB_H
62 #  include <stdlib.h>
63 #endif
64 #ifdef HAVE_LOCALE_H
65 #  include <locale.h>
66 #endif
67 #ifdef HAVE_SYS_STAT_H
68 #  include <sys/stat.h>
69 #  include <sys/types.h>
70 #endif
71 #ifdef HAVE_SYS_WAIT_H
72 #  include <sys/types.h>
73 #  include <sys/wait.h>
74 #endif
75 #ifdef HAVE_UNISTD_H
76 #  include <unistd.h>
77 #endif
78 #include <errno.h>
79
80 #include <X11/cursorfont.h>
81 #if USE_XCURSOR
82 #include <X11/Xcursor/Xcursor.h>
83 #endif
84
85 #include <X11/Xlib.h>
86 #include <X11/keysym.h>
87
88 RrInstance   *ob_rr_inst;
89 RrImageCache *ob_rr_icons;
90 RrTheme      *ob_rr_theme;
91 ObMainLoop   *ob_main_loop;
92 Display      *ob_display;
93 gint          ob_screen;
94 gboolean      ob_replace_wm = FALSE;
95 gboolean      ob_sm_use = TRUE;
96 gchar        *ob_sm_id = NULL;
97 gchar        *ob_sm_save_file = NULL;
98 gboolean      ob_sm_restore = TRUE;
99 gboolean      ob_debug_xinerama = FALSE;
100
101 static ObState   state;
102 static gboolean  xsync = FALSE;
103 static gboolean  reconfigure = FALSE;
104 static gboolean  restart = FALSE;
105 static gchar    *restart_path = NULL;
106 static Cursor    cursors[OB_NUM_CURSORS];
107 static KeyCode  *keys[OB_NUM_KEYS];
108 static gint      exitcode = 0;
109 static guint     remote_control = 0;
110 static gboolean  being_replaced = FALSE;
111 static gchar    *config_file = NULL;
112
113 static void signal_handler(gint signal, gpointer data);
114 static void remove_args(gint *argc, gchar **argv, gint index, gint num);
115 static void parse_env();
116 static void parse_args(gint *argc, gchar **argv);
117 static Cursor load_cursor(const gchar *name, guint fontval);
118
119 gint main(gint argc, gchar **argv)
120 {
121     gchar *program_name;
122
123     ob_set_state(OB_STATE_STARTING);
124
125     /* initialize the locale */
126     if (!setlocale(LC_ALL, ""))
127         g_message("Couldn't set locale from environment.");
128     bindtextdomain(PACKAGE_NAME, LOCALEDIR);
129     bind_textdomain_codeset(PACKAGE_NAME, "UTF-8");
130     textdomain(PACKAGE_NAME);
131
132     if (chdir(g_get_home_dir()) == -1)
133         g_message(_("Unable to change to home directory \"%s\": %s"),
134                   g_get_home_dir(), g_strerror(errno));
135
136     /* parse the command line args, which can change the argv[0] */
137     parse_args(&argc, argv);
138     /* parse the environment variables */
139     parse_env();
140
141     program_name = g_path_get_basename(argv[0]);
142     g_set_prgname(program_name);
143
144     if (!remote_control) {
145         parse_paths_startup();
146
147         session_startup(argc, argv);
148     }
149
150     ob_display = XOpenDisplay(NULL);
151     if (ob_display == NULL)
152         ob_exit_with_error(_("Failed to open the display from the DISPLAY environment variable."));
153     if (fcntl(ConnectionNumber(ob_display), F_SETFD, 1) == -1)
154         ob_exit_with_error("Failed to set display as close-on-exec");
155
156     if (remote_control) {
157         prop_startup();
158
159         /* Send client message telling the OB process to:
160          * remote_control = 1 -> reconfigure
161          * remote_control = 2 -> restart */
162         PROP_MSG(RootWindow(ob_display, ob_screen),
163                  ob_control, remote_control, 0, 0, 0);
164         XCloseDisplay(ob_display);
165         exit(EXIT_SUCCESS);
166     }
167
168     ob_main_loop = ob_main_loop_new(ob_display);
169
170     /* set up signal handler */
171     ob_main_loop_signal_add(ob_main_loop, SIGUSR1, signal_handler, NULL, NULL);
172     ob_main_loop_signal_add(ob_main_loop, SIGUSR2, signal_handler, NULL, NULL);
173     ob_main_loop_signal_add(ob_main_loop, SIGTERM, signal_handler, NULL, NULL);
174     ob_main_loop_signal_add(ob_main_loop, SIGINT, signal_handler, NULL, NULL);
175     ob_main_loop_signal_add(ob_main_loop, SIGHUP, signal_handler, NULL, NULL);
176     ob_main_loop_signal_add(ob_main_loop, SIGPIPE, signal_handler, NULL, NULL);
177     ob_main_loop_signal_add(ob_main_loop, SIGCHLD, signal_handler, NULL, NULL);
178     ob_main_loop_signal_add(ob_main_loop, SIGTTIN, signal_handler, NULL,NULL);
179     ob_main_loop_signal_add(ob_main_loop, SIGTTOU, signal_handler, NULL,NULL);
180
181     ob_screen = DefaultScreen(ob_display);
182
183     ob_rr_inst = RrInstanceNew(ob_display, ob_screen);
184     if (ob_rr_inst == NULL)
185         ob_exit_with_error(_("Failed to initialize the obrender library."));
186     /* Saving 3 resizes of an RrImage makes a lot of sense for icons, as there
187        are generally 3 icon sizes needed: the titlebar icon, the menu icon,
188        and the alt-tab icon
189     */
190     ob_rr_icons = RrImageCacheNew(3);
191
192     XSynchronize(ob_display, xsync);
193
194     /* check for locale support */
195     if (!XSupportsLocale())
196         g_message(_("X server does not support locale."));
197     if (!XSetLocaleModifiers(""))
198         g_message(_("Cannot set locale modifiers for the X server."));
199
200     /* set our error handler */
201     XSetErrorHandler(xerror_handler);
202
203     /* set the DISPLAY environment variable for any lauched children, to the
204        display we're using, so they open in the right place. */
205     setenv("DISPLAY", DisplayString(ob_display), TRUE);
206
207     /* create available cursors */
208     cursors[OB_CURSOR_NONE] = None;
209     cursors[OB_CURSOR_POINTER] = load_cursor("left_ptr", XC_left_ptr);
210     cursors[OB_CURSOR_BUSYPOINTER] = load_cursor("left_ptr_watch",XC_left_ptr);
211     cursors[OB_CURSOR_BUSY] = load_cursor("watch", XC_watch);
212     cursors[OB_CURSOR_MOVE] = load_cursor("fleur", XC_fleur);
213     cursors[OB_CURSOR_NORTH] = load_cursor("top_side", XC_top_side);
214     cursors[OB_CURSOR_NORTHEAST] = load_cursor("top_right_corner",
215                                                XC_top_right_corner);
216     cursors[OB_CURSOR_EAST] = load_cursor("right_side", XC_right_side);
217     cursors[OB_CURSOR_SOUTHEAST] = load_cursor("bottom_right_corner",
218                                                XC_bottom_right_corner);
219     cursors[OB_CURSOR_SOUTH] = load_cursor("bottom_side", XC_bottom_side);
220     cursors[OB_CURSOR_SOUTHWEST] = load_cursor("bottom_left_corner",
221                                                XC_bottom_left_corner);
222     cursors[OB_CURSOR_WEST] = load_cursor("left_side", XC_left_side);
223     cursors[OB_CURSOR_NORTHWEST] = load_cursor("top_left_corner",
224                                                XC_top_left_corner);
225
226     prop_startup(); /* get atoms values for the display */
227     extensions_query_all(); /* find which extensions are present */
228
229     if (screen_annex()) { /* it will be ours! */
230         do {
231             ObPrompt *xmlprompt = NULL;
232
233             modkeys_startup(reconfigure);
234
235             /* get the keycodes for keys we use */
236             keys[OB_KEY_RETURN] = modkeys_sym_to_code(XK_Return);
237             keys[OB_KEY_ESCAPE] = modkeys_sym_to_code(XK_Escape);
238             keys[OB_KEY_LEFT] = modkeys_sym_to_code(XK_Left);
239             keys[OB_KEY_RIGHT] = modkeys_sym_to_code(XK_Right);
240             keys[OB_KEY_UP] = modkeys_sym_to_code(XK_Up);
241             keys[OB_KEY_DOWN] = modkeys_sym_to_code(XK_Down);
242             keys[OB_KEY_TAB] = modkeys_sym_to_code(XK_Tab);
243             keys[OB_KEY_SPACE] = modkeys_sym_to_code(XK_space);
244             keys[OB_KEY_HOME] = modkeys_sym_to_code(XK_Home);
245             keys[OB_KEY_END] = modkeys_sym_to_code(XK_End);
246
247             {
248                 ObParseInst *i;
249                 xmlDocPtr doc;
250                 xmlNodePtr node;
251
252                 /* startup the parsing so everything can register sections
253                    of the rc */
254                 i = parse_startup();
255
256                 /* register all the available actions */
257                 actions_startup(reconfigure);
258                 /* start up config which sets up with the parser */
259                 config_startup(i);
260
261                 /* parse/load user options */
262                 if (parse_load_rc(config_file, &doc, &node)) {
263                     parse_tree(i, doc, node->xmlChildrenNode);
264                     parse_close(doc);
265                 }
266                 else {
267                     g_message(_("Unable to find a valid config file, using some simple defaults"));
268                     config_file = NULL;
269                 }
270
271                 if (config_file) {
272                     gchar *p = g_filename_to_utf8(config_file, -1,
273                                                   NULL, NULL, NULL);
274                     if (p)
275                         PROP_SETS(RootWindow(ob_display, ob_screen),
276                                   ob_config_file, p);
277                     g_free(p);
278                 }
279                 else
280                     PROP_ERASE(RootWindow(ob_display, ob_screen),
281                                ob_config_file);
282
283                 /* we're done with parsing now, kill it */
284                 parse_shutdown(i);
285             }
286
287             /* load the theme specified in the rc file */
288             {
289                 RrTheme *theme;
290                 if ((theme = RrThemeNew(ob_rr_inst, config_theme, TRUE,
291                                         config_font_activewindow,
292                                         config_font_inactivewindow,
293                                         config_font_menutitle,
294                                         config_font_menuitem,
295                                         config_font_osd)))
296                 {
297                     RrThemeFree(ob_rr_theme);
298                     ob_rr_theme = theme;
299                 }
300                 if (ob_rr_theme == NULL)
301                     ob_exit_with_error(_("Unable to load a theme."));
302
303                 PROP_SETS(RootWindow(ob_display, ob_screen),
304                           ob_theme, ob_rr_theme->name);
305             }
306
307             if (reconfigure) {
308                 GList *it;
309
310                 /* update all existing windows for the new theme */
311                 for (it = client_list; it; it = g_list_next(it)) {
312                     ObClient *c = it->data;
313                     frame_adjust_theme(c->frame);
314                 }
315             }
316             event_startup(reconfigure);
317             /* focus_backup is used for stacking, so this needs to come before
318                anything that calls stacking_add */
319             sn_startup(reconfigure);
320             window_startup(reconfigure);
321             focus_startup(reconfigure);
322             focus_cycle_startup(reconfigure);
323             focus_cycle_indicator_startup(reconfigure);
324             focus_cycle_popup_startup(reconfigure);
325             screen_startup(reconfigure);
326             grab_startup(reconfigure);
327             group_startup(reconfigure);
328             ping_startup(reconfigure);
329             client_startup(reconfigure);
330             dock_startup(reconfigure);
331             moveresize_startup(reconfigure);
332             keyboard_startup(reconfigure);
333             mouse_startup(reconfigure);
334             menu_frame_startup(reconfigure);
335             menu_startup(reconfigure);
336             prompt_startup(reconfigure);
337
338             if (!reconfigure) {
339                 guint32 xid;
340                 ObWindow *w;
341
342                 /* get all the existing windows */
343                 client_manage_all();
344                 focus_nothing();
345
346                 /* focus what was focused if a wm was already running */
347                 if (PROP_GET32(RootWindow(ob_display, ob_screen),
348                                net_active_window, window, &xid) &&
349                     (w = g_hash_table_lookup(window_map, &xid)) &&
350                     WINDOW_IS_CLIENT(w))
351                 {
352                     client_focus(WINDOW_AS_CLIENT(w));
353                 }
354             } else {
355                 GList *it;
356
357                 /* redecorate all existing windows */
358                 for (it = client_list; it; it = g_list_next(it)) {
359                     ObClient *c = it->data;
360
361                     /* the new config can change the window's decorations */
362                     client_setup_decor_and_functions(c, FALSE);
363                     /* redraw the frames */
364                     frame_adjust_area(c->frame, TRUE, TRUE, FALSE);
365                     /* the decor sizes may have changed, so the windows may
366                        end up in new positions */
367                     client_reconfigure(c, FALSE);
368                 }
369             }
370
371             reconfigure = FALSE;
372
373             ob_set_state(OB_STATE_RUNNING);
374
375             /* look for parsing errors */
376             {
377                 xmlErrorPtr e = xmlGetLastError();
378                 if (e) {
379                     gchar *m;
380
381                     m = g_strdup_printf(_("One or more XML syntax errors were found while parsing the Openbox configuration files.  See stdout for more information.  The last error seen was in file \"%s\" line %d, with message: %s"), e->file, e->line, e->message);
382                     xmlprompt =
383                         prompt_show_message(m, _("Openbox Syntax Error"), _("Close"));
384                     g_free(m);
385                     xmlResetError(e);
386                 }
387             }
388
389             ob_main_loop_run(ob_main_loop);
390             ob_set_state(reconfigure ?
391                          OB_STATE_RECONFIGURING : OB_STATE_EXITING);
392
393             if (xmlprompt) {
394                 prompt_unref(xmlprompt);
395                 xmlprompt = NULL;
396             }
397
398             if (!reconfigure) {
399                 dock_remove_all();
400                 client_unmanage_all();
401             }
402
403             prompt_shutdown(reconfigure);
404             menu_shutdown(reconfigure);
405             menu_frame_shutdown(reconfigure);
406             mouse_shutdown(reconfigure);
407             keyboard_shutdown(reconfigure);
408             moveresize_shutdown(reconfigure);
409             dock_shutdown(reconfigure);
410             client_shutdown(reconfigure);
411             ping_shutdown(reconfigure);
412             group_shutdown(reconfigure);
413             grab_shutdown(reconfigure);
414             screen_shutdown(reconfigure);
415             focus_cycle_popup_shutdown(reconfigure);
416             focus_cycle_indicator_shutdown(reconfigure);
417             focus_cycle_shutdown(reconfigure);
418             focus_shutdown(reconfigure);
419             window_shutdown(reconfigure);
420             sn_shutdown(reconfigure);
421             event_shutdown(reconfigure);
422             config_shutdown();
423             actions_shutdown(reconfigure);
424
425             /* Free the key codes for built in keys */
426             g_free(keys[OB_KEY_RETURN]);
427             g_free(keys[OB_KEY_ESCAPE]);
428             g_free(keys[OB_KEY_LEFT]);
429             g_free(keys[OB_KEY_RIGHT]);
430             g_free(keys[OB_KEY_UP]);
431             g_free(keys[OB_KEY_DOWN]);
432             g_free(keys[OB_KEY_TAB]);
433             g_free(keys[OB_KEY_SPACE]);
434             g_free(keys[OB_KEY_HOME]);
435             g_free(keys[OB_KEY_END]);
436
437             modkeys_shutdown(reconfigure);
438         } while (reconfigure);
439     }
440
441     XSync(ob_display, FALSE);
442
443     RrThemeFree(ob_rr_theme);
444     RrImageCacheUnref(ob_rr_icons);
445     RrInstanceFree(ob_rr_inst);
446
447     session_shutdown(being_replaced);
448
449     XCloseDisplay(ob_display);
450
451     parse_paths_shutdown();
452
453     if (restart) {
454         if (restart_path != NULL) {
455             gint argcp;
456             gchar **argvp;
457             GError *err = NULL;
458
459             /* run other window manager */
460             if (g_shell_parse_argv(restart_path, &argcp, &argvp, &err)) {
461                 execvp(argvp[0], argvp);
462                 g_strfreev(argvp);
463             } else {
464                 g_message(
465                     _("Restart failed to execute new executable \"%s\": %s"),
466                     restart_path, err->message);
467                 g_error_free(err);
468             }
469         }
470
471         /* we remove the session arguments from argv, so put them back,
472            also don't restore the session on restart */
473         if (ob_sm_save_file != NULL || ob_sm_id != NULL) {
474             gchar **nargv;
475             gint i, l;
476
477             l = argc + 1 +
478                 (ob_sm_save_file != NULL ? 2 : 0) +
479                 (ob_sm_id != NULL ? 2 : 0);
480             nargv = g_new0(gchar*, l+1);
481             for (i = 0; i < argc; ++i)
482                 nargv[i] = argv[i];
483
484             if (ob_sm_save_file != NULL) {
485                 nargv[i++] = g_strdup("--sm-save-file");
486                 nargv[i++] = ob_sm_save_file;
487             }
488             if (ob_sm_id != NULL) {
489                 nargv[i++] = g_strdup("--sm-client-id");
490                 nargv[i++] = ob_sm_id;
491             }
492             nargv[i++] = g_strdup("--sm-no-load");
493             g_assert(i == l);
494             argv = nargv;
495         }
496
497         /* re-run me */
498         execvp(argv[0], argv); /* try how we were run */
499         execlp(argv[0], program_name, (gchar*)NULL); /* last resort */
500     }
501
502     /* free stuff passed in from the command line or environment */
503     g_free(ob_sm_save_file);
504     g_free(ob_sm_id);
505     g_free(program_name);
506
507     return exitcode;
508 }
509
510 static void signal_handler(gint signal, gpointer data)
511 {
512     switch (signal) {
513     case SIGUSR1:
514         ob_debug("Caught signal %d. Restarting.\n", signal);
515         ob_restart();
516         break;
517     case SIGUSR2:
518         ob_debug("Caught signal %d. Reconfiguring.\n", signal);
519         ob_reconfigure();
520         break;
521     case SIGCHLD:
522         /* reap children */
523         while (waitpid(-1, NULL, WNOHANG) > 0);
524         break;
525     case SIGTTIN:
526     case SIGTTOU:
527         ob_debug("Caught signal %d. Ignoring.", signal);
528         break;
529     default:
530         ob_debug("Caught signal %d. Exiting.\n", signal);
531         /* TERM and INT return a 0 code */
532         ob_exit(!(signal == SIGTERM || signal == SIGINT));
533     }
534 }
535
536 static void print_version(void)
537 {
538     g_print("Openbox %s\n", PACKAGE_VERSION);
539     g_print(_("Copyright (c)"));
540     g_print(" 2008        Mikael Magnusson\n");
541     g_print(_("Copyright (c)"));
542     g_print(" 2003-2006   Dana Jansens\n\n");
543     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
544     g_print("This is free software, and you are welcome to redistribute it\n");
545     g_print("under certain conditions. See the file COPYING for details.\n\n");
546 }
547
548 static void print_help(void)
549 {
550     g_print(_("Syntax: openbox [options]\n"));
551     g_print(_("\nOptions:\n"));
552     g_print(_("  --help              Display this help and exit\n"));
553     g_print(_("  --version           Display the version and exit\n"));
554     g_print(_("  --replace           Replace the currently running window manager\n"));
555     /* TRANSLATORS: if you translate "FILE" here, make sure to keep the "Specify..."
556        aligned still, if you have to, make a new line with \n and 22 spaces. It's
557        fine to leave it as FILE though. */
558     g_print(_("  --config-file FILE  Specify the path to the config file to use\n"));
559     g_print(_("  --sm-disable        Disable connection to the session manager\n"));
560     g_print(_("\nPassing messages to a running Openbox instance:\n"));
561     g_print(_("  --reconfigure       Reload Openbox's configuration\n"));
562     g_print(_("  --restart           Restart Openbox\n"));
563     g_print(_("  --exit              Exit Openbox\n"));
564     g_print(_("\nDebugging options:\n"));
565     g_print(_("  --sync              Run in synchronous mode\n"));
566     g_print(_("  --debug             Display debugging output\n"));
567     g_print(_("  --debug-focus       Display debugging output for focus handling\n"));
568     g_print(_("  --debug-xinerama    Split the display into fake xinerama screens\n"));
569     g_print(_("\nPlease report bugs at %s\n"), PACKAGE_BUGREPORT);
570 }
571
572 static void remove_args(gint *argc, gchar **argv, gint index, gint num)
573 {
574     gint i;
575
576     for (i = index; i < *argc - num; ++i)
577         argv[i] = argv[i+num];
578     for (; i < *argc; ++i)
579         argv[i] = NULL;
580     *argc -= num;
581 }
582
583 static void parse_env(void)
584 {
585     const gchar *id;
586
587     /* unset this so we don't pass it on unknowingly */
588     unsetenv("DESKTOP_STARTUP_ID");
589
590     /* this is how gnome-session passes in a session client id */
591     id = g_getenv("DESKTOP_AUTOSTART_ID");
592     if (id) {
593         unsetenv("DESKTOP_AUTOSTART_ID");
594         if (ob_sm_id) g_free(ob_sm_id);
595         ob_sm_id = g_strdup(id);
596         ob_debug_type(OB_DEBUG_SM,
597                       "DESKTOP_AUTOSTART_ID %s supercedes --sm-client-id\n",
598                       ob_sm_id);
599     }
600 }
601
602 static void parse_args(gint *argc, gchar **argv)
603 {
604     gint i;
605
606     for (i = 1; i < *argc; ++i) {
607         if (!strcmp(argv[i], "--version")) {
608             print_version();
609             exit(0);
610         }
611         else if (!strcmp(argv[i], "--help")) {
612             print_help();
613             exit(0);
614         }
615         else if (!strcmp(argv[i], "--g-fatal-warnings")) {
616             g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL);
617         }
618         else if (!strcmp(argv[i], "--replace")) {
619             ob_replace_wm = TRUE;
620             remove_args(argc, argv, i, 1);
621             --i; /* this arg was removed so go back */
622         }
623         else if (!strcmp(argv[i], "--sync")) {
624             xsync = TRUE;
625         }
626         else if (!strcmp(argv[i], "--debug")) {
627             ob_debug_show_output(TRUE);
628             ob_debug_enable(OB_DEBUG_SM, TRUE);
629             ob_debug_enable(OB_DEBUG_APP_BUGS, TRUE);
630         }
631         else if (!strcmp(argv[i], "--debug-focus")) {
632             ob_debug_show_output(TRUE);
633             ob_debug_enable(OB_DEBUG_SM, TRUE);
634             ob_debug_enable(OB_DEBUG_APP_BUGS, TRUE);
635             ob_debug_enable(OB_DEBUG_FOCUS, TRUE);
636         }
637         else if (!strcmp(argv[i], "--debug-xinerama")) {
638             ob_debug_xinerama = TRUE;
639         }
640         else if (!strcmp(argv[i], "--reconfigure")) {
641             remote_control = 1;
642         }
643         else if (!strcmp(argv[i], "--restart")) {
644             remote_control = 2;
645         }
646         else if (!strcmp(argv[i], "--exit")) {
647             remote_control = 3;
648         }
649         else if (!strcmp(argv[i], "--config-file")) {
650             if (i == *argc - 1) /* no args left */
651                 g_printerr(_("--config-file requires an argument\n"));
652             else {
653                 /* this will be in the current locale encoding, which is
654                    what we want */
655                 config_file = argv[i+1];
656                 ++i; /* skip the argument */
657                 ob_debug("--config-file %s\n", config_file);
658             }
659         }
660         else if (!strcmp(argv[i], "--sm-save-file")) {
661             if (i == *argc - 1) /* no args left */
662                 /* not translated cuz it's sekret */
663                 g_printerr("--sm-save-file requires an argument\n");
664             else {
665                 ob_sm_save_file = g_strdup(argv[i+1]);
666                 remove_args(argc, argv, i, 2);
667                 --i; /* this arg was removed so go back */
668                 ob_debug_type(OB_DEBUG_SM, "--sm-save-file %s\n",
669                               ob_sm_save_file);
670             }
671         }
672         else if (!strcmp(argv[i], "--sm-client-id")) {
673             if (i == *argc - 1) /* no args left */
674                 /* not translated cuz it's sekret */
675                 g_printerr("--sm-client-id requires an argument\n");
676             else {
677                 ob_sm_id = g_strdup(argv[i+1]);
678                 remove_args(argc, argv, i, 2);
679                 --i; /* this arg was removed so go back */
680                 ob_debug_type(OB_DEBUG_SM, "--sm-client-id %s\n", ob_sm_id);
681             }
682         }
683         else if (!strcmp(argv[i], "--sm-disable")) {
684             ob_sm_use = FALSE;
685         }
686         else if (!strcmp(argv[i], "--sm-no-load")) {
687             ob_sm_restore = FALSE;
688             remove_args(argc, argv, i, 1);
689             --i; /* this arg was removed so go back */
690         }
691         else {
692             /* this is a memleak.. oh well.. heh */
693             gchar *err = g_strdup_printf
694                 (_("Invalid command line argument \"%s\"\n"), argv[i]);
695             ob_exit_with_error(err);
696         }
697     }
698 }
699
700 static Cursor load_cursor(const gchar *name, guint fontval)
701 {
702     Cursor c = None;
703
704 #if USE_XCURSOR
705     c = XcursorLibraryLoadCursor(ob_display, name);
706 #endif
707     if (c == None)
708         c = XCreateFontCursor(ob_display, fontval);
709     return c;
710 }
711
712 void ob_exit_with_error(const gchar *msg)
713 {
714     g_message(msg);
715     session_shutdown(TRUE);
716     exit(EXIT_FAILURE);
717 }
718
719 void ob_restart_other(const gchar *path)
720 {
721     restart_path = g_strdup(path);
722     ob_restart();
723 }
724
725 void ob_restart(void)
726 {
727     restart = TRUE;
728     ob_exit(0);
729 }
730
731 void ob_reconfigure(void)
732 {
733     reconfigure = TRUE;
734     ob_exit(0);
735 }
736
737 void ob_exit(gint code)
738 {
739     exitcode = code;
740     ob_main_loop_exit(ob_main_loop);
741 }
742
743 void ob_exit_replace(void)
744 {
745     exitcode = 0;
746     being_replaced = TRUE;
747     ob_main_loop_exit(ob_main_loop);
748 }
749
750 Cursor ob_cursor(ObCursor cursor)
751 {
752     g_assert(cursor < OB_NUM_CURSORS);
753     return cursors[cursor];
754 }
755
756 gboolean ob_keycode_match(KeyCode code, ObKey key)
757 {
758     KeyCode *k;
759     
760     g_assert(key < OB_NUM_KEYS);
761     for (k = keys[key]; *k; ++k)
762         if (*k == code) return TRUE;
763     return FALSE;
764 }
765
766 ObState ob_state(void)
767 {
768     return state;
769 }
770
771 void ob_set_state(ObState s)
772 {
773     state = s;
774 }