]>
Dogcows Code - chaz/openbox/blob - openbox/openbox.c
12 #include "moveresize.h"
14 #include "extensions.h"
21 #include "parser/parse.h"
22 #include "render/render.h"
23 #include "render/font.h"
24 #include "render/theme.h"
41 #ifdef HAVE_SYS_STAT_H
42 # include <sys/stat.h>
43 # include <sys/types.h>
46 #include <X11/cursorfont.h>
48 Display
*ob_display
= NULL
;
52 gboolean ob_shutdown
= FALSE
;
53 gboolean ob_restart
= FALSE
;
54 char *ob_restart_path
= NULL
;
55 gboolean ob_remote
= TRUE
;
56 gboolean ob_sync
= FALSE
;
58 char *ob_rc_path
= NULL
;
60 void signal_handler(const ObEvent
*e
, void *data
);
61 void parse_args(int argc
, char **argv
);
63 int main(int argc
, char **argv
)
65 struct sigaction action
;
72 ob_state
= State_Starting
;
74 /* initialize the locale */
75 if (!setlocale(LC_ALL
, ""))
76 g_warning("Couldn't set locale from environment.\n");
77 bindtextdomain(PACKAGE_NAME
, LOCALEDIR
);
78 bind_textdomain_codeset(PACKAGE_NAME
, "UTF-8");
79 textdomain(PACKAGE_NAME
);
81 /* start our event dispatcher and register for signals */
83 dispatch_register(Event_Signal
, signal_handler
, NULL
);
85 /* set up signal handler */
87 action
.sa_handler
= dispatch_signal
;
88 action
.sa_mask
= sigset
;
89 action
.sa_flags
= SA_NOCLDSTOP
;
90 sigaction(SIGUSR1
, &action
, (struct sigaction
*) NULL
);
91 sigaction(SIGPIPE
, &action
, (struct sigaction
*) NULL
);
92 sigaction(SIGSEGV
, &action
, (struct sigaction
*) NULL
);
93 sigaction(SIGFPE
, &action
, (struct sigaction
*) NULL
);
94 sigaction(SIGTERM
, &action
, (struct sigaction
*) NULL
);
95 sigaction(SIGINT
, &action
, (struct sigaction
*) NULL
);
96 sigaction(SIGHUP
, &action
, (struct sigaction
*) NULL
);
98 /* create the ~/.openbox dir */
99 path
= g_build_filename(g_get_home_dir(), ".openbox", NULL
);
100 mkdir(path
, (S_IRUSR
| S_IWUSR
| S_IXUSR
| S_IRGRP
| S_IWGRP
| S_IXGRP
|
101 S_IROTH
| S_IWOTH
| S_IXOTH
));
103 /* create the ~/.openbox/themes dir */
104 path
= g_build_filename(g_get_home_dir(), ".openbox", "themes", NULL
);
105 mkdir(path
, (S_IRUSR
| S_IWUSR
| S_IXUSR
| S_IRGRP
| S_IWGRP
| S_IXGRP
|
106 S_IROTH
| S_IWOTH
| S_IXOTH
));
109 /* parse out command line args */
110 parse_args(argc
, argv
);
112 ob_display
= XOpenDisplay(NULL
);
113 if (ob_display
== NULL
) {
114 /* print a message and exit */
115 g_critical("Failed to open the display.");
118 if (fcntl(ConnectionNumber(ob_display
), F_SETFD
, 1) == -1) {
119 /* print a message and exit */
120 g_critical("Failed to set display as close-on-exec.");
125 ob_sn_display
= sn_display_new(ob_display
, NULL
, NULL
);
128 ob_screen
= DefaultScreen(ob_display
);
129 ob_root
= RootWindow(ob_display
, ob_screen
);
131 /* XXX fork self onto other screens */
133 XSynchronize(ob_display
, ob_sync
);
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.");
141 /* set our error handler */
142 XSetErrorHandler(xerror_handler
);
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
)));
148 ob_cursors
.ptr
= XCreateFontCursor(ob_display
, XC_left_ptr
);
149 ob_cursors
.busy
= XCreateFontCursor(ob_display
, XC_watch
);
150 ob_cursors
.move
= XCreateFontCursor(ob_display
, XC_fleur
);
151 ob_cursors
.tl
= XCreateFontCursor(ob_display
, XC_top_left_corner
);
152 ob_cursors
.tr
= XCreateFontCursor(ob_display
, XC_top_right_corner
);
153 ob_cursors
.bl
= XCreateFontCursor(ob_display
, XC_bottom_left_corner
);
154 ob_cursors
.br
= XCreateFontCursor(ob_display
, XC_bottom_right_corner
);
155 ob_cursors
.t
= XCreateFontCursor(ob_display
, XC_top_side
);
156 ob_cursors
.r
= XCreateFontCursor(ob_display
, XC_right_side
);
157 ob_cursors
.b
= XCreateFontCursor(ob_display
, XC_bottom_side
);
158 ob_cursors
.l
= XCreateFontCursor(ob_display
, XC_left_side
);
160 prop_startup(); /* get atoms values for the display */
161 extensions_query_all(); /* find which extensions are present */
163 /* save stuff that we can use to restore state */
166 if (screen_annex()) { /* it will be ours! */
167 /* startup the parsing so everything can register sections of the rc */
170 /* anything that is going to read data from the rc file needs to be
179 /* load the plugins specified in the pluginrc */
182 /* set up the kernel config shit */
184 /* parse/load user options */
185 if (parse_load_rc(&doc
, &node
))
186 parse_tree(doc
, node
->xmlChildrenNode
, NULL
);
187 /* we're done with parsing now, kill it */
190 /* load the theme specified in the rc file */
191 theme
= theme_load(config_theme
);
193 if (!theme
) return 1;
198 moveresize_startup();
205 /* call startup for all the plugins */
208 /* get all the existing windows */
211 ob_state
= State_Running
;
214 ob_state
= State_Exiting
;
217 client_unmanage_all();
219 plugin_shutdown(); /* calls all the plugins' shutdown functions */
225 moveresize_shutdown();
239 XCloseDisplay(ob_display
);
242 if (ob_restart_path
!= NULL
) {
248 if (g_shell_parse_argv(ob_restart_path
, &argcp
, &argvp
, &err
)) {
249 execvp(argvp
[0], argvp
);
252 g_warning("failed to execute '%s': %s", ob_restart_path
,
258 execvp(argv
[0], argv
); /* try how we were run */
259 execlp(BINARY
, BINARY
, NULL
); /* try this as a last resort */
265 void signal_handler(const ObEvent
*e
, void *data
)
269 s
= e
->data
.s
.signal
;
272 g_message("Caught SIGUSR1 signal. Restarting.");
273 ob_shutdown
= ob_restart
= TRUE
;
280 g_message("Caught signal %d. Exiting.", s
);
286 g_message("Caught signal %d. Aborting and dumping core.", s
);
293 g_print("Openbox %s\n\n", PACKAGE_VERSION
);
294 g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
295 g_print("This is free software, and you are welcome to redistribute it\n");
296 g_print("under certain conditions. See the file COPYING for details.\n\n");
302 g_print("Syntax: %s [options]\n\n", BINARY
);
303 g_print("Options:\n\n");
304 g_print(" -rc PATH Specify the path to the rc file to use\n");
305 g_print(" -help Display this help and exit\n");
306 g_print(" -version Display the version and exit\n");
307 g_print(" -sync Run in synchronous mode (this is slow and meant\n"
308 " for debugging X routines)\n");
309 g_print("\nPlease report bugs at %s\n", PACKAGE_BUGREPORT
);
312 void parse_args(int argc
, char **argv
)
316 for (i
= 1; i
< argc
; ++i
) {
317 if (!strcmp(argv
[i
], "-version")) {
320 } else if (!strcmp(argv
[i
], "-help")) {
323 } else if (!strcmp(argv
[i
], "-sync")) {
325 } else if (!strcmp(argv
[i
], "-rc")) {
326 if (i
== argc
- 1) /* no args left */
327 g_printerr("-rc requires an argument\n");
329 ob_rc_path
= argv
[++i
];
331 g_printerr("Invalid option: '%s'\n\n", argv
[i
]);
338 gboolean
ob_pointer_pos(int *x
, int *y
)
344 return !!XQueryPointer(ob_display
, ob_root
, &w
, &w
, x
, y
, &i
, &i
, &u
);
This page took 0.047674 seconds and 4 git commands to generate.