1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 openbox.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
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.
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.
17 See the COPYING file for a copy of the GNU General Public License.
29 #include "startupnotify.h"
31 #include "focus_cycle.h"
32 #include "focus_cycle_indicator.h"
33 #include "focus_cycle_popup.h"
34 #include "moveresize.h"
36 #include "framerender.h"
39 #include "menuframe.h"
46 #include "obrender/render.h"
47 #include "obrender/theme.h"
48 #include "obt/display.h"
49 #include "obt/xqueue.h"
50 #include "obt/signal.h"
52 #include "obt/keyboard.h"
67 #ifdef HAVE_SYS_STAT_H
68 # include <sys/stat.h>
69 # include <sys/types.h>
71 #ifdef HAVE_SYS_WAIT_H
72 # include <sys/types.h>
73 # include <sys/wait.h>
80 #include <X11/cursorfont.h>
82 #include <X11/Xcursor/Xcursor.h>
85 RrInstance
*ob_rr_inst
;
86 RrImageCache
*ob_rr_icons
;
88 GMainLoop
*ob_main_loop
;
90 gboolean ob_replace_wm
= FALSE
;
91 gboolean ob_sm_use
= TRUE
;
92 gchar
*ob_sm_id
= NULL
;
93 gchar
*ob_sm_save_file
= NULL
;
94 gboolean ob_sm_restore
= TRUE
;
95 gboolean ob_debug_xinerama
= FALSE
;
96 const gchar
*ob_locale_msg
= NULL
;
99 static gboolean xsync
= FALSE
;
100 static gboolean reconfigure
= FALSE
;
101 static gboolean restart
= FALSE
;
102 static gchar
*restart_path
= NULL
;
103 static Cursor cursors
[OB_NUM_CURSORS
];
104 static gint exitcode
= 0;
105 static guint remote_control
= 0;
106 static gboolean being_replaced
= FALSE
;
107 static gchar
*config_file
= NULL
;
108 static gchar
*startup_cmd
= NULL
;
110 static void signal_handler(gint signal
, gpointer data
);
111 static void remove_args(gint
*argc
, gchar
**argv
, gint index
, gint num
);
112 static void parse_env();
113 static void parse_args(gint
*argc
, gchar
**argv
);
114 static Cursor
load_cursor(const gchar
*name
, guint fontval
);
115 static void run_startup_cmd(void);
117 gint
main(gint argc
, gchar
**argv
)
123 ob_set_state(OB_STATE_STARTING
);
127 /* initialize the locale */
128 if (!(ob_locale_msg
= setlocale(LC_MESSAGES
, "")))
129 g_message("Couldn't set messages locale category from environment.");
130 if (!setlocale(LC_ALL
, ""))
131 g_message("Couldn't set locale from environment.");
132 bindtextdomain(PACKAGE_NAME
, LOCALEDIR
);
133 bind_textdomain_codeset(PACKAGE_NAME
, "UTF-8");
134 textdomain(PACKAGE_NAME
);
136 if (chdir(g_get_home_dir()) == -1)
137 g_message(_("Unable to change to home directory \"%s\": %s"),
138 g_get_home_dir(), g_strerror(errno
));
140 /* parse the command line args, which can change the argv[0] */
141 parse_args(&argc
, argv
);
142 /* parse the environment variables */
145 program_name
= g_path_get_basename(argv
[0]);
146 g_set_prgname(program_name
);
149 session_startup(argc
, argv
);
151 if (!obt_display_open(NULL
))
152 ob_exit_with_error(_("Failed to open the display from the DISPLAY environment variable."));
154 if (remote_control
) {
155 /* Send client message telling the OB process to:
156 * remote_control = 1 -> reconfigure
157 * remote_control = 2 -> restart */
158 OBT_PROP_MSG(ob_screen
, obt_root(ob_screen
),
159 OB_CONTROL
, remote_control
, 0, 0, 0, 0);
164 ob_main_loop
= g_main_loop_new(NULL
, FALSE
);
166 /* set up signal handlers, they are called from the mainloop
167 in the main program's thread */
168 obt_signal_add_callback(SIGUSR1
, signal_handler
, NULL
);
169 obt_signal_add_callback(SIGUSR2
, signal_handler
, NULL
);
170 obt_signal_add_callback(SIGTERM
, signal_handler
, NULL
);
171 obt_signal_add_callback(SIGINT
, signal_handler
, NULL
);
172 obt_signal_add_callback(SIGHUP
, signal_handler
, NULL
);
173 obt_signal_add_callback(SIGPIPE
, signal_handler
, NULL
);
174 obt_signal_add_callback(SIGCHLD
, signal_handler
, NULL
);
175 obt_signal_add_callback(SIGTTIN
, signal_handler
, NULL
);
176 obt_signal_add_callback(SIGTTOU
, signal_handler
, NULL
);
178 ob_screen
= DefaultScreen(obt_display
);
180 ob_rr_inst
= RrInstanceNew(obt_display
, ob_screen
);
181 if (ob_rr_inst
== NULL
)
182 ob_exit_with_error(_("Failed to initialize the obrender library."));
183 /* Saving 3 resizes of an RrImage makes a lot of sense for icons, as there
184 are generally 3 icon sizes needed: the titlebar icon, the menu icon,
187 ob_rr_icons
= RrImageCacheNew(3);
189 XSynchronize(obt_display
, xsync
);
191 /* check for locale support */
192 if (!XSupportsLocale())
193 g_message(_("X server does not support locale."));
194 if (!XSetLocaleModifiers(""))
195 g_message(_("Cannot set locale modifiers for the X server."));
197 /* set the DISPLAY environment variable for any lauched children, to the
198 display we're using, so they open in the right place. */
199 g_setenv("DISPLAY", DisplayString(obt_display
), TRUE
);
201 /* create available cursors */
202 cursors
[OB_CURSOR_NONE
] = None
;
203 cursors
[OB_CURSOR_POINTER
] = load_cursor("left_ptr", XC_left_ptr
);
204 cursors
[OB_CURSOR_BUSYPOINTER
] = load_cursor("left_ptr_watch",XC_left_ptr
);
205 cursors
[OB_CURSOR_BUSY
] = load_cursor("watch", XC_watch
);
206 cursors
[OB_CURSOR_MOVE
] = load_cursor("fleur", XC_fleur
);
207 cursors
[OB_CURSOR_NORTH
] = load_cursor("top_side", XC_top_side
);
208 cursors
[OB_CURSOR_NORTHEAST
] = load_cursor("top_right_corner",
209 XC_top_right_corner
);
210 cursors
[OB_CURSOR_EAST
] = load_cursor("right_side", XC_right_side
);
211 cursors
[OB_CURSOR_SOUTHEAST
] = load_cursor("bottom_right_corner",
212 XC_bottom_right_corner
);
213 cursors
[OB_CURSOR_SOUTH
] = load_cursor("bottom_side", XC_bottom_side
);
214 cursors
[OB_CURSOR_SOUTHWEST
] = load_cursor("bottom_left_corner",
215 XC_bottom_left_corner
);
216 cursors
[OB_CURSOR_WEST
] = load_cursor("left_side", XC_left_side
);
217 cursors
[OB_CURSOR_NORTHWEST
] = load_cursor("top_left_corner",
220 if (screen_annex()) { /* it will be ours! */
222 /* get a timestamp from after taking over as the WM. if we use the
223 old timestamp to set focus it can fail when replacing another WM. */
227 gchar
*xml_error_string
= NULL
;
228 ObPrompt
*xmlprompt
= NULL
;
230 if (reconfigure
) obt_keyboard_reload();
235 /* startup the parsing so everything can register sections
237 i
= obt_xml_instance_new();
239 /* register all the available actions */
240 actions_startup(reconfigure
);
241 /* start up config which sets up with the parser */
244 /* parse/load user options */
246 obt_xml_load_file(i
, config_file
, "openbox_config")) ||
247 obt_xml_load_config_file(i
, "openbox", "rc.xml",
250 obt_xml_tree_from_root(i
);
254 g_message(_("Unable to find a valid config file, using some simple defaults"));
259 gchar
*p
= g_filename_to_utf8(config_file
, -1,
262 OBT_PROP_SETS(obt_root(ob_screen
), OB_CONFIG_FILE
, p
);
266 OBT_PROP_ERASE(obt_root(ob_screen
), OB_CONFIG_FILE
);
268 if (obt_xml_last_error(i
)) {
269 xml_error_string
= g_strdup_printf(
270 _("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"),
271 obt_xml_last_error_file(i
),
272 obt_xml_last_error_line(i
),
273 obt_xml_last_error_message(i
));
276 /* we're done with parsing now, kill it */
277 obt_xml_instance_unref(i
);
280 /* load the theme specified in the rc file */
283 if ((theme
= RrThemeNew(ob_rr_inst
, config_theme
, TRUE
,
284 config_font_activewindow
,
285 config_font_inactivewindow
,
286 config_font_menutitle
,
287 config_font_menuitem
,
288 config_font_activeosd
,
289 config_font_inactiveosd
)))
291 RrThemeFree(ob_rr_theme
);
294 if (ob_rr_theme
== NULL
)
295 ob_exit_with_error(_("Unable to load a theme."));
297 OBT_PROP_SETS(obt_root(ob_screen
), OB_THEME
,
304 /* update all existing windows for the new theme */
305 for (it
= client_list
; it
; it
= g_list_next(it
)) {
306 ObClient
*c
= it
->data
;
307 frame_adjust_theme(c
->frame
);
310 event_startup(reconfigure
);
311 /* focus_backup is used for stacking, so this needs to come before
312 anything that calls stacking_add */
313 sn_startup(reconfigure
);
314 window_startup(reconfigure
);
315 focus_startup(reconfigure
);
316 focus_cycle_startup(reconfigure
);
317 focus_cycle_indicator_startup(reconfigure
);
318 focus_cycle_popup_startup(reconfigure
);
319 screen_startup(reconfigure
);
320 grab_startup(reconfigure
);
321 group_startup(reconfigure
);
322 ping_startup(reconfigure
);
323 client_startup(reconfigure
);
324 dock_startup(reconfigure
);
325 moveresize_startup(reconfigure
);
326 keyboard_startup(reconfigure
);
327 mouse_startup(reconfigure
);
328 menu_frame_startup(reconfigure
);
329 menu_startup(reconfigure
);
330 prompt_startup(reconfigure
);
333 /* do this after everything is started so no events will get
340 /* get all the existing windows */
343 /* focus what was focused if a wm was already running */
344 if (OBT_PROP_GET32(obt_root(ob_screen
),
345 NET_ACTIVE_WINDOW
, WINDOW
, &xid
) &&
346 (w
= window_find(xid
)) && WINDOW_IS_CLIENT(w
))
348 client_focus(WINDOW_AS_CLIENT(w
));
353 /* redecorate all existing windows */
354 for (it
= client_list
; it
; it
= g_list_next(it
)) {
355 ObClient
*c
= it
->data
;
357 /* the new config can change the window's decorations */
358 client_setup_decor_and_functions(c
, FALSE
);
359 /* redraw the frames */
360 frame_adjust_area(c
->frame
, TRUE
, TRUE
, FALSE
);
361 /* the decor sizes may have changed, so the windows may
362 end up in new positions */
363 client_reconfigure(c
, FALSE
);
367 ob_set_state(OB_STATE_RUNNING
);
369 if (!reconfigure
&& startup_cmd
) run_startup_cmd();
373 /* look for parsing errors */
374 if (xml_error_string
) {
375 xmlprompt
= prompt_show_message(xml_error_string
,
376 _("Openbox Syntax Error"),
378 g_free(xml_error_string
);
379 xml_error_string
= NULL
;
382 g_main_loop_run(ob_main_loop
);
383 ob_set_state(reconfigure
?
384 OB_STATE_RECONFIGURING
: OB_STATE_EXITING
);
387 prompt_unref(xmlprompt
);
392 window_unmanage_all();
394 prompt_shutdown(reconfigure
);
395 menu_shutdown(reconfigure
);
396 menu_frame_shutdown(reconfigure
);
397 mouse_shutdown(reconfigure
);
398 keyboard_shutdown(reconfigure
);
399 moveresize_shutdown(reconfigure
);
400 dock_shutdown(reconfigure
);
401 client_shutdown(reconfigure
);
402 ping_shutdown(reconfigure
);
403 group_shutdown(reconfigure
);
404 grab_shutdown(reconfigure
);
405 screen_shutdown(reconfigure
);
406 focus_cycle_popup_shutdown(reconfigure
);
407 focus_cycle_indicator_shutdown(reconfigure
);
408 focus_cycle_shutdown(reconfigure
);
409 focus_shutdown(reconfigure
);
410 window_shutdown(reconfigure
);
411 sn_shutdown(reconfigure
);
412 event_shutdown(reconfigure
);
414 actions_shutdown(reconfigure
);
415 } while (reconfigure
);
418 XSync(obt_display
, FALSE
);
420 RrThemeFree(ob_rr_theme
);
421 RrImageCacheUnref(ob_rr_icons
);
422 RrInstanceFree(ob_rr_inst
);
424 session_shutdown(being_replaced
);
431 if (restart_path
!= NULL
) {
436 /* run other window manager */
437 if (g_shell_parse_argv(restart_path
, &argcp
, &argvp
, &err
)) {
438 execvp(argvp
[0], argvp
);
442 _("Restart failed to execute new executable \"%s\": %s"),
443 restart_path
, err
->message
);
448 /* we remove the session arguments from argv, so put them back,
449 also don't restore the session on restart */
450 if (ob_sm_save_file
!= NULL
|| ob_sm_id
!= NULL
) {
455 (ob_sm_save_file
!= NULL
? 2 : 0) +
456 (ob_sm_id
!= NULL
? 2 : 0);
457 nargv
= g_new0(gchar
*, l
+1);
458 for (i
= 0; i
< argc
; ++i
)
461 if (ob_sm_save_file
!= NULL
) {
462 nargv
[i
++] = g_strdup("--sm-save-file");
463 nargv
[i
++] = ob_sm_save_file
;
465 if (ob_sm_id
!= NULL
) {
466 nargv
[i
++] = g_strdup("--sm-client-id");
467 nargv
[i
++] = ob_sm_id
;
469 nargv
[i
++] = g_strdup("--sm-no-load");
475 execvp(argv
[0], argv
); /* try how we were run */
476 execlp(argv
[0], program_name
, (gchar
*)NULL
); /* last resort */
479 /* free stuff passed in from the command line or environment */
480 g_free(ob_sm_save_file
);
482 g_free(program_name
);
492 static void signal_handler(gint signal
, gpointer data
)
496 ob_debug("Caught signal %d. Restarting.", signal
);
500 ob_debug("Caught signal %d. Reconfiguring.", signal
);
505 while (waitpid(-1, NULL
, WNOHANG
) > 0);
509 ob_debug("Caught signal %d. Ignoring.", signal
);
512 ob_debug("Caught signal %d. Exiting.", signal
);
513 /* TERM and INT return a 0 code */
514 ob_exit(!(signal
== SIGTERM
|| signal
== SIGINT
));
518 static void print_version(void)
520 g_print("Openbox %s\n", PACKAGE_VERSION
);
521 g_print(_("Copyright (c)"));
522 g_print(" 2004 Mikael Magnusson\n");
523 g_print(_("Copyright (c)"));
524 g_print(" 2002 Dana Jansens\n\n");
525 g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
526 g_print("This is free software, and you are welcome to redistribute it\n");
527 g_print("under certain conditions. See the file COPYING for details.\n\n");
530 static void print_help(void)
532 g_print(_("Syntax: openbox [options]\n"));
533 g_print(_("\nOptions:\n"));
534 g_print(_(" --help Display this help and exit\n"));
535 g_print(_(" --version Display the version and exit\n"));
536 g_print(_(" --replace Replace the currently running window manager\n"));
537 /* TRANSLATORS: if you translate "FILE" here, make sure to keep the "Specify..."
538 aligned still, if you have to, make a new line with \n and 22 spaces. It's
539 fine to leave it as FILE though. */
540 g_print(_(" --config-file FILE Specify the path to the config file to use\n"));
541 g_print(_(" --sm-disable Disable connection to the session manager\n"));
542 g_print(_("\nPassing messages to a running Openbox instance:\n"));
543 g_print(_(" --reconfigure Reload Openbox's configuration\n"));
544 g_print(_(" --restart Restart Openbox\n"));
545 g_print(_(" --exit Exit Openbox\n"));
546 g_print(_("\nDebugging options:\n"));
547 g_print(_(" --sync Run in synchronous mode\n"));
548 g_print(_(" --startup CMD Run CMD after starting\n"));
549 g_print(_(" --debug Display debugging output\n"));
550 g_print(_(" --debug-focus Display debugging output for focus handling\n"));
551 g_print(_(" --debug-session Display debugging output for session management\n"));
552 g_print(_(" --debug-xinerama Split the display into fake xinerama screens\n"));
553 g_print(_("\nPlease report bugs at %s\n"), PACKAGE_BUGREPORT
);
556 static void remove_args(gint
*argc
, gchar
**argv
, gint index
, gint num
)
560 for (i
= index
; i
< *argc
- num
; ++i
)
561 argv
[i
] = argv
[i
+num
];
562 for (; i
< *argc
; ++i
)
567 static void run_startup_cmd(void)
573 if (!g_shell_parse_argv(startup_cmd
, NULL
, &argv
, &e
)) {
574 g_message("Error parsing startup command: %s",
579 ok
= g_spawn_async(NULL
, argv
, NULL
,
580 G_SPAWN_SEARCH_PATH
|
581 G_SPAWN_DO_NOT_REAP_CHILD
,
582 NULL
, NULL
, NULL
, &e
);
584 g_message("Error launching startup command: %s",
591 static void parse_env(void)
595 /* unset this so we don't pass it on unknowingly */
596 g_unsetenv("DESKTOP_STARTUP_ID");
598 /* this is how gnome-session passes in a session client id */
599 id
= g_getenv("DESKTOP_AUTOSTART_ID");
601 g_unsetenv("DESKTOP_AUTOSTART_ID");
602 if (ob_sm_id
) g_free(ob_sm_id
);
603 ob_sm_id
= g_strdup(id
);
604 ob_debug_type(OB_DEBUG_SM
,
605 "DESKTOP_AUTOSTART_ID %s supercedes --sm-client-id\n",
610 static void parse_args(gint
*argc
, gchar
**argv
)
614 for (i
= 1; i
< *argc
; ++i
) {
615 if (!strcmp(argv
[i
], "--version")) {
619 else if (!strcmp(argv
[i
], "--help")) {
623 else if (!strcmp(argv
[i
], "--g-fatal-warnings")) {
624 g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL
);
626 else if (!strcmp(argv
[i
], "--replace")) {
627 ob_replace_wm
= TRUE
;
628 remove_args(argc
, argv
, i
, 1);
629 --i
; /* this arg was removed so go back */
631 else if (!strcmp(argv
[i
], "--sync")) {
634 else if (!strcmp(argv
[i
], "--startup")) {
635 if (i
== *argc
- 1) /* no args left */
636 g_printerr(_("%s requires an argument\n"), "--startup");
638 /* this will be in the current locale encoding, which is
640 startup_cmd
= argv
[i
+1];
641 remove_args(argc
, argv
, i
, 2);
642 --i
; /* this arg was removed so go back */
643 ob_debug("--startup %s", startup_cmd
);
646 else if (!strcmp(argv
[i
], "--debug")) {
647 ob_debug_enable(OB_DEBUG_NORMAL
, TRUE
);
648 ob_debug_enable(OB_DEBUG_APP_BUGS
, TRUE
);
650 else if (!strcmp(argv
[i
], "--debug-focus")) {
651 ob_debug_enable(OB_DEBUG_FOCUS
, TRUE
);
653 else if (!strcmp(argv
[i
], "--debug-session")) {
654 ob_debug_enable(OB_DEBUG_SM
, TRUE
);
656 else if (!strcmp(argv
[i
], "--debug-xinerama")) {
657 ob_debug_xinerama
= TRUE
;
659 else if (!strcmp(argv
[i
], "--reconfigure")) {
662 else if (!strcmp(argv
[i
], "--restart")) {
665 else if (!strcmp(argv
[i
], "--exit")) {
668 else if (!strcmp(argv
[i
], "--config-file")) {
669 if (i
== *argc
- 1) /* no args left */
670 g_printerr(_("%s requires an argument\n"), "--config-file");
672 /* this will be in the current locale encoding, which is
674 config_file
= argv
[i
+1];
675 ++i
; /* skip the argument */
676 ob_debug("--config-file %s", config_file
);
679 else if (!strcmp(argv
[i
], "--sm-save-file")) {
680 if (i
== *argc
- 1) /* no args left */
681 /* not translated cuz it's sekret */
682 g_printerr("--sm-save-file requires an argument\n");
684 ob_sm_save_file
= g_strdup(argv
[i
+1]);
685 remove_args(argc
, argv
, i
, 2);
686 --i
; /* this arg was removed so go back */
687 ob_debug_type(OB_DEBUG_SM
, "--sm-save-file %s",
691 else if (!strcmp(argv
[i
], "--sm-client-id")) {
692 if (i
== *argc
- 1) /* no args left */
693 /* not translated cuz it's sekret */
694 g_printerr("--sm-client-id requires an argument\n");
696 ob_sm_id
= g_strdup(argv
[i
+1]);
697 remove_args(argc
, argv
, i
, 2);
698 --i
; /* this arg was removed so go back */
699 ob_debug_type(OB_DEBUG_SM
, "--sm-client-id %s", ob_sm_id
);
702 else if (!strcmp(argv
[i
], "--sm-disable")) {
705 else if (!strcmp(argv
[i
], "--sm-no-load")) {
706 ob_sm_restore
= FALSE
;
707 remove_args(argc
, argv
, i
, 1);
708 --i
; /* this arg was removed so go back */
711 /* this is a memleak.. oh well.. heh */
712 gchar
*err
= g_strdup_printf
713 (_("Invalid command line argument \"%s\"\n"), argv
[i
]);
714 ob_exit_with_error(err
);
719 static Cursor
load_cursor(const gchar
*name
, guint fontval
)
724 c
= XcursorLibraryLoadCursor(obt_display
, name
);
727 c
= XCreateFontCursor(obt_display
, fontval
);
731 void ob_exit_with_error(const gchar
*msg
)
733 g_message("%s", msg
);
734 session_shutdown(TRUE
);
738 void ob_restart_other(const gchar
*path
)
740 restart_path
= g_strdup(path
);
744 void ob_restart(void)
750 void ob_reconfigure(void)
756 void ob_exit(gint code
)
759 g_main_loop_quit(ob_main_loop
);
762 void ob_exit_replace(void)
765 being_replaced
= TRUE
;
766 g_main_loop_quit(ob_main_loop
);
769 Cursor
ob_cursor(ObCursor cursor
)
771 g_assert(cursor
< OB_NUM_CURSORS
);
772 return cursors
[cursor
];
775 ObState
ob_state(void)
780 void ob_set_state(ObState s
)