]> Dogcows Code - chaz/openbox/blob - openbox/openbox.c
put the render theme into a struct
[chaz/openbox] / openbox / openbox.c
1 #include "openbox.h"
2 #include "dock.h"
3 #include "event.h"
4 #include "menu.h"
5 #include "client.h"
6 #include "dispatch.h"
7 #include "xerror.h"
8 #include "prop.h"
9 #include "startup.h"
10 #include "screen.h"
11 #include "focus.h"
12 #include "moveresize.h"
13 #include "frame.h"
14 #include "extensions.h"
15 #include "grab.h"
16 #include "plugin.h"
17 #include "timer.h"
18 #include "group.h"
19 #include "config.h"
20 #include "gettext.h"
21 #include "parser/parse.h"
22 #include "render/render.h"
23 #include "render/theme.h"
24
25 #ifdef HAVE_FCNTL_H
26 # include <fcntl.h>
27 #endif
28 #ifdef HAVE_SIGNAL_H
29 # include <signal.h>
30 #endif
31 #ifdef HAVE_STDLIB_H
32 # include <stdlib.h>
33 #endif
34 #ifdef HAVE_LOCALE_H
35 # include <locale.h>
36 #endif
37 #ifdef HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
40 #ifdef HAVE_SYS_STAT_H
41 # include <sys/stat.h>
42 # include <sys/types.h>
43 #endif
44
45 #include <X11/cursorfont.h>
46
47 RrInstance *ob_rr_inst = NULL;
48 RrTheme *ob_rr_theme = NULL;
49 Display *ob_display = NULL;
50 int ob_screen;
51 Window ob_root;
52 State ob_state;
53 gboolean ob_shutdown = FALSE;
54 gboolean ob_restart = FALSE;
55 char *ob_restart_path = NULL;
56 gboolean ob_remote = TRUE;
57 gboolean ob_sync = FALSE;
58 Cursors ob_cursors;
59 char *ob_rc_path = NULL;
60
61 void signal_handler(const ObEvent *e, void *data);
62 void parse_args(int argc, char **argv);
63
64 int main(int argc, char **argv)
65 {
66 struct sigaction action;
67 sigset_t sigset;
68 char *path;
69 xmlDocPtr doc;
70 xmlNodePtr node;
71
72 ob_state = State_Starting;
73
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);
80
81 /* start our event dispatcher and register for signals */
82 dispatch_startup();
83 dispatch_register(Event_Signal, signal_handler, NULL);
84
85 /* set up signal handler */
86 sigemptyset(&sigset);
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);
97
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));
102 g_free(path);
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));
107 g_free(path);
108
109 /* parse out command line args */
110 parse_args(argc, argv);
111
112 ob_display = XOpenDisplay(NULL);
113 if (ob_display == NULL) {
114 /* print a message and exit */
115 g_critical("Failed to open the display.");
116 exit(1);
117 }
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.");
121 exit(1);
122 }
123
124 #ifdef USE_LIBSN
125 ob_sn_display = sn_display_new(ob_display, NULL, NULL);
126 #endif
127
128 ob_screen = DefaultScreen(ob_display);
129 ob_root = RootWindow(ob_display, ob_screen);
130
131 ob_rr_inst = RrInstanceNew(ob_display, ob_screen);
132 if (ob_rr_inst == NULL) {
133 g_critical("Failed to initialize the render library.");
134 exit(1);
135 }
136
137 /* XXX fork self onto other screens */
138
139 XSynchronize(ob_display, ob_sync);
140
141 /* check for locale support */
142 if (!XSupportsLocale())
143 g_warning("X server does not support locale.");
144 if (!XSetLocaleModifiers(""))
145 g_warning("Cannot set locale modifiers for the X server.");
146
147 /* set our error handler */
148 XSetErrorHandler(xerror_handler);
149
150 /* set the DISPLAY environment variable for any lauched children, to the
151 display we're using, so they open in the right place. */
152 putenv(g_strdup_printf("DISPLAY=%s", DisplayString(ob_display)));
153
154 ob_cursors.ptr = XCreateFontCursor(ob_display, XC_left_ptr);
155 ob_cursors.busy = XCreateFontCursor(ob_display, XC_watch);
156 ob_cursors.move = XCreateFontCursor(ob_display, XC_fleur);
157 ob_cursors.tl = XCreateFontCursor(ob_display, XC_top_left_corner);
158 ob_cursors.tr = XCreateFontCursor(ob_display, XC_top_right_corner);
159 ob_cursors.bl = XCreateFontCursor(ob_display, XC_bottom_left_corner);
160 ob_cursors.br = XCreateFontCursor(ob_display, XC_bottom_right_corner);
161 ob_cursors.t = XCreateFontCursor(ob_display, XC_top_side);
162 ob_cursors.r = XCreateFontCursor(ob_display, XC_right_side);
163 ob_cursors.b = XCreateFontCursor(ob_display, XC_bottom_side);
164 ob_cursors.l = XCreateFontCursor(ob_display, XC_left_side);
165
166 prop_startup(); /* get atoms values for the display */
167 extensions_query_all(); /* find which extensions are present */
168
169 /* save stuff that we can use to restore state */
170 startup_save();
171
172 if (screen_annex()) { /* it will be ours! */
173 /* startup the parsing so everything can register sections of the rc */
174 parse_startup();
175
176 /* anything that is going to read data from the rc file needs to be
177 in this group */
178 timer_startup();
179 font_startup();
180 event_startup();
181 grab_startup();
182 plugin_startup();
183 /* load the plugins specified in the pluginrc */
184 plugin_loadall();
185
186 /* set up the kernel config shit */
187 config_startup();
188 /* parse/load user options */
189 if (parse_load_rc(&doc, &node))
190 parse_tree(doc, node->xmlChildrenNode, NULL);
191 /* we're done with parsing now, kill it */
192 parse_shutdown();
193
194 /* load the theme specified in the rc file */
195 ob_rr_theme = RrThemeNew(ob_rr_inst, config_theme);
196 if (ob_rr_theme == NULL) {
197 g_critical("Unable to load a theme.");
198 exit(1);
199 }
200
201 window_startup();
202 menu_startup();
203 frame_startup();
204 moveresize_startup();
205 focus_startup();
206 screen_startup();
207 group_startup();
208 client_startup();
209 dock_startup();
210
211 /* call startup for all the plugins */
212 plugin_startall();
213
214 /* get all the existing windows */
215 client_manage_all();
216
217 ob_state = State_Running;
218 while (!ob_shutdown)
219 event_loop();
220 ob_state = State_Exiting;
221
222 dock_remove_all();
223 client_unmanage_all();
224
225 plugin_shutdown(); /* calls all the plugins' shutdown functions */
226 dock_shutdown();
227 client_shutdown();
228 group_shutdown();
229 screen_shutdown();
230 focus_shutdown();
231 moveresize_shutdown();
232 frame_shutdown();
233 menu_shutdown();
234 window_shutdown();
235 grab_shutdown();
236 event_shutdown();
237 timer_shutdown();
238 config_shutdown();
239 }
240
241 dispatch_shutdown();
242
243 RrThemeFree(ob_rr_theme);
244 RrInstanceFree(ob_rr_inst);
245 XCloseDisplay(ob_display);
246
247 if (ob_restart) {
248 if (ob_restart_path != NULL) {
249 int argcp;
250 char **argvp;
251 GError *err = NULL;
252
253 /* run other shit */
254 if (g_shell_parse_argv(ob_restart_path, &argcp, &argvp, &err)) {
255 execvp(argvp[0], argvp);
256 g_strfreev(argvp);
257 } else {
258 g_warning("failed to execute '%s': %s", ob_restart_path,
259 err->message);
260 }
261 }
262
263 /* re-run me */
264 execvp(argv[0], argv); /* try how we were run */
265 execlp(BINARY, BINARY, NULL); /* try this as a last resort */
266 }
267
268 return 0;
269 }
270
271 void signal_handler(const ObEvent *e, void *data)
272 {
273 int s;
274
275 s = e->data.s.signal;
276 switch (s) {
277 case SIGUSR1:
278 g_message("Caught SIGUSR1 signal. Restarting.");
279 ob_shutdown = ob_restart = TRUE;
280 break;
281
282 case SIGHUP:
283 case SIGINT:
284 case SIGTERM:
285 case SIGPIPE:
286 g_message("Caught signal %d. Exiting.", s);
287 ob_shutdown = TRUE;
288 break;
289
290 case SIGFPE:
291 case SIGSEGV:
292 g_message("Caught signal %d. Aborting and dumping core.", s);
293 abort();
294 }
295 }
296
297 void print_version()
298 {
299 g_print("Openbox %s\n\n", PACKAGE_VERSION);
300 g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
301 g_print("This is free software, and you are welcome to redistribute it\n");
302 g_print("under certain conditions. See the file COPYING for details.\n\n");
303 }
304
305 void print_help()
306 {
307 print_version();
308 g_print("Syntax: %s [options]\n\n", BINARY);
309 g_print("Options:\n\n");
310 g_print(" -rc PATH Specify the path to the rc file to use\n");
311 g_print(" -help Display this help and exit\n");
312 g_print(" -version Display the version and exit\n");
313 g_print(" -sync Run in synchronous mode (this is slow and meant\n"
314 " for debugging X routines)\n");
315 g_print("\nPlease report bugs at %s\n", PACKAGE_BUGREPORT);
316 }
317
318 void parse_args(int argc, char **argv)
319 {
320 int i;
321
322 for (i = 1; i < argc; ++i) {
323 if (!strcmp(argv[i], "-version")) {
324 print_version();
325 exit(0);
326 } else if (!strcmp(argv[i], "-help")) {
327 print_help();
328 exit(0);
329 } else if (!strcmp(argv[i], "-sync")) {
330 ob_sync = TRUE;
331 } else if (!strcmp(argv[i], "-rc")) {
332 if (i == argc - 1) /* no args left */
333 g_printerr("-rc requires an argument\n");
334 else
335 ob_rc_path = argv[++i];
336 } else {
337 g_printerr("Invalid option: '%s'\n\n", argv[i]);
338 print_help();
339 exit(1);
340 }
341 }
342 }
343
344 gboolean ob_pointer_pos(int *x, int *y)
345 {
346 Window w;
347 int i;
348 guint u;
349
350 return !!XQueryPointer(ob_display, ob_root, &w, &w, x, y, &i, &i, &u);
351 }
This page took 0.04774 seconds and 4 git commands to generate.