add support for interactive/keyboard move/resize
[mikachu/openbox.git] / openbox / openbox.c
1 #include "openbox.h"
2 #include "event.h"
3 #include "menu.h"
4 #include "client.h"
5 #include "dispatch.h"
6 #include "xerror.h"
7 #include "prop.h"
8 #include "screen.h"
9 #include "focus.h"
10 #include "moveresize.h"
11 #include "frame.h"
12 #include "extensions.h"
13 #include "parse.h"
14 #include "grab.h"
15 #include "plugin.h"
16 #include "timer.h"
17 #include "group.h"
18 #include "config.h"
19 #include "gettext.h"
20 #include "render/render.h"
21 #include "render/font.h"
22 #include "render/theme.h"
23
24 #ifdef HAVE_FCNTL_H
25 #  include <fcntl.h>
26 #endif
27 #ifdef HAVE_SIGNAL_H
28 #  include <signal.h>
29 #endif
30 #ifdef HAVE_STDLIB_H
31 #  include <stdlib.h>
32 #endif
33 #ifdef HAVE_SYS_WAIT_H
34 #  include <sys/types.h>
35 #  include <sys/wait.h>
36 #endif
37 #ifdef HAVE_LOCALE_H
38 #  include <locale.h>
39 #endif
40 #ifdef HAVE_UNISTD_H
41 #  include <unistd.h>
42 #endif
43 #ifdef HAVE_SYS_STAT_H
44 #  include <sys/stat.h>
45 #  include <sys/types.h>
46 #endif
47
48 #include <X11/cursorfont.h>
49
50 Display *ob_display  = NULL;
51 int      ob_screen;
52 Window   ob_root;
53 State    ob_state;
54 gboolean ob_shutdown = FALSE;
55 gboolean ob_restart  = FALSE;
56 char    *ob_restart_path = NULL;
57 gboolean ob_remote   = TRUE;
58 gboolean ob_sync     = FALSE;
59 Cursors  ob_cursors;
60 char    *ob_rc_path  = NULL;
61
62 void signal_handler(const ObEvent *e, void *data);
63 void parse_args(int argc, char **argv);
64
65 int main(int argc, char **argv)
66 {
67     struct sigaction action;
68     sigset_t sigset;
69     char *path;
70     char *theme;
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     sigaction(SIGCHLD, &action, (struct sigaction *) NULL);
98
99     /* anything that died while we were restarting won't give us a SIGCHLD */
100     while (waitpid(-1, NULL, WNOHANG) > 0);
101
102     /* create the ~/.openbox dir */
103     path = g_build_filename(g_get_home_dir(), ".openbox", NULL);
104     mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
105                  S_IROTH | S_IWOTH | S_IXOTH));
106     g_free(path);
107     /* create the ~/.openbox/themes dir */
108     path = g_build_filename(g_get_home_dir(), ".openbox", "themes", NULL);
109     mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
110                  S_IROTH | S_IWOTH | S_IXOTH));
111     g_free(path);
112      
113     /* parse out command line args */
114     parse_args(argc, argv);
115
116     ob_display = XOpenDisplay(NULL);
117     if (ob_display == NULL) {
118         /* print a message and exit */
119         g_critical("Failed to open the display.");
120         exit(1);
121     }
122     if (fcntl(ConnectionNumber(ob_display), F_SETFD, 1) == -1) {
123         /* print a message and exit */
124         g_critical("Failed to set display as close-on-exec.");
125         exit(1);
126     }
127           
128     ob_screen = DefaultScreen(ob_display);
129     ob_root = RootWindow(ob_display, ob_screen);
130
131     /* XXX fork self onto other screens */
132      
133     XSynchronize(ob_display, ob_sync);
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     ob_cursors.ptr = XCreateFontCursor(ob_display, XC_left_ptr);
149     ob_cursors.move = XCreateFontCursor(ob_display, XC_fleur);
150     ob_cursors.tl = XCreateFontCursor(ob_display, XC_top_left_corner);
151     ob_cursors.tr = XCreateFontCursor(ob_display, XC_top_right_corner);
152     ob_cursors.bl = XCreateFontCursor(ob_display, XC_bottom_left_corner);
153     ob_cursors.br = XCreateFontCursor(ob_display, XC_bottom_right_corner);
154
155     prop_startup(); /* get atoms values for the display */
156     extensions_query_all(); /* find which extensions are present */
157
158     if (screen_annex()) { /* it will be ours! */
159         /* startup the parsing so everything can register sections of the rc */
160         parse_startup();
161
162         /* anything that is going to read data from the rc file needs to be 
163            in this group */
164         timer_startup();
165         render_startup();
166         font_startup();
167         theme_startup();
168         event_startup();
169         moveresize_startup();
170         grab_startup();
171         plugin_startup();
172         /* load the plugins specified in the pluginrc */
173         plugin_loadall();
174
175         /* set up the kernel config shit */
176         config_startup();
177         /* parse/load user options */
178         parse_rc();
179         /* we're done with parsing now, kill it */
180         parse_shutdown();
181
182         /* load the theme specified in the rc file */
183         theme = theme_load(config_theme);
184         g_free(theme);
185         if (!theme) return 1;
186
187         menu_startup();
188         frame_startup();
189         stacking_startup();
190         focus_startup();
191         screen_startup();
192         group_startup();
193         client_startup();
194
195         /* call startup for all the plugins */
196         plugin_startall();
197
198         /* get all the existing windows */
199         client_manage_all();
200
201         ob_state = State_Running;
202         while (!ob_shutdown)
203             event_loop();
204         ob_state = State_Exiting;
205
206         client_unmanage_all();
207
208         plugin_shutdown(); /* calls all the plugins' shutdown functions */
209         client_shutdown();
210         group_shutdown();
211         screen_shutdown();
212         focus_shutdown();
213         stacking_shutdown();
214         frame_shutdown();
215         menu_shutdown();
216         grab_shutdown();
217         event_shutdown();
218         theme_shutdown();
219         render_shutdown();
220         timer_shutdown();
221         config_shutdown();
222     }
223
224     dispatch_shutdown();
225
226     XCloseDisplay(ob_display);
227
228     if (ob_restart) {
229         if (ob_restart_path != NULL) {
230             int argcp;
231             char **argvp;
232             GError *err = NULL;
233
234             /* run other shit */
235             if (g_shell_parse_argv(ob_restart_path, &argcp, &argvp, &err)) {
236                 execvp(argvp[0], argvp);
237                 g_strfreev(argvp);
238             } else {
239                 g_warning("failed to execute '%s': %s", ob_restart_path,
240                           err->message);
241             }
242         }
243
244         /* re-run me */
245         execvp(argv[0], argv); /* try how we were run */
246         execlp(BINARY, BINARY, NULL); /* try this as a last resort */
247     }
248      
249     return 0;
250 }
251
252 void signal_handler(const ObEvent *e, void *data)
253 {
254     int s;
255
256     s = e->data.s.signal;
257     switch (s) {
258     case SIGUSR1:
259         g_message("Caught SIGUSR1 signal. Restarting.");
260         ob_shutdown = ob_restart = TRUE;
261         break;
262
263     case SIGCHLD:
264         wait(NULL);
265         break;
266
267     case SIGHUP:
268     case SIGINT:
269     case SIGTERM:
270     case SIGPIPE:
271         g_message("Caught signal %d. Exiting.", s);
272         ob_shutdown = TRUE;
273         break;
274
275     case SIGFPE:
276     case SIGSEGV:
277         g_error("Caught signal %d. Aborting and dumping core.", s);
278     }
279 }
280
281 void print_version()
282 {
283     g_print("Openbox %s\n\n", PACKAGE_VERSION);
284     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
285     g_print("This is free software, and you are welcome to redistribute it\n");
286     g_print("under certain conditions. See the file COPYING for details.\n\n");
287 }
288
289 void print_help()
290 {
291     print_version();
292     g_print("Syntax: %s [options]\n\n", BINARY);
293     g_print("Options:\n\n");
294     g_print("  -rc PATH     Specify the path to the rc file to use\n");
295     g_print("  -help        Display this help and exit\n");
296     g_print("  -version     Display the version and exit\n");
297     g_print("  -sync        Run in synchronous mode (this is slow and meant\n"
298             "               for debugging X routines)\n");
299     g_print("\nPlease report bugs at %s\n", PACKAGE_BUGREPORT);
300 }
301
302 void parse_args(int argc, char **argv)
303 {
304     int i;
305
306     for (i = 1; i < argc; ++i) {
307         if (!strcmp(argv[i], "-version")) {
308             print_version();
309             exit(0);
310         } else if (!strcmp(argv[i], "-help")) {
311             print_help();
312             exit(0);
313         } else if (!strcmp(argv[i], "-sync")) {
314             ob_sync = TRUE;
315         } else if (!strcmp(argv[i], "-rc")) {
316             if (i == argc - 1) /* no args left */
317                 g_printerr("-rc requires an argument\n");
318             else
319                 ob_rc_path = argv[++i];
320         } else {
321             g_printerr("Invalid option: '%s'\n\n", argv[i]);
322             print_help();
323             exit(1);
324         }
325     }
326 }
327
328 gboolean ob_pointer_pos(int *x, int *y)
329 {
330     Window w;
331     int i, x, y;
332     guint u;
333
334     return !!XQueryPointer(ob_display, ob_root, &w, &w, x, y, &i, &i, &u);
335 }