Make wmaker XRandR aware
[wmaker-crm.git] / src / startup.c
blobb16b979b15c4a87659dee8c53c78bfcb1f44bd38
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
5 * Copyright (c) 1998-2003 Dan Pascu
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 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
23 #include "wconfig.h"
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <string.h>
29 #include <errno.h>
30 #include <signal.h>
31 #include <sys/wait.h>
32 #ifdef __FreeBSD__
33 #include <sys/signal.h>
34 #endif
36 #include <X11/Xlib.h>
37 #include <X11/Xresource.h>
38 #include <X11/Xutil.h>
39 #include <X11/cursorfont.h>
40 #include <X11/Xproto.h>
41 #include <X11/keysym.h>
42 #ifdef SHAPE
43 #include <X11/extensions/shape.h>
44 #endif
45 #ifdef KEEP_XKB_LOCK_STATUS
46 #include <X11/XKBlib.h>
47 #endif
48 #ifdef HAVE_XRANDR
49 #include <X11/extensions/Xrandr.h>
50 #endif
52 #include "WindowMaker.h"
53 #include "GNUstep.h"
54 #include "texture.h"
55 #include "screen.h"
56 #include "window.h"
57 #include "actions.h"
58 #include "client.h"
59 #include "funcs.h"
60 #include "dock.h"
61 #include "workspace.h"
62 #include "keybind.h"
63 #include "framewin.h"
64 #include "session.h"
65 #include "defaults.h"
66 #include "properties.h"
67 #include "dialog.h"
68 #include "wmspec.h"
69 #ifdef XDND
70 #include "xdnd.h"
71 #endif
73 #include "xutil.h"
75 /* for SunOS */
76 #ifndef SA_RESTART
77 # define SA_RESTART 0
78 #endif
80 /* Just in case, for weirdo systems */
81 #ifndef SA_NODEFER
82 # define SA_NODEFER 0
83 #endif
85 /****** Global Variables ******/
86 extern WPreferences wPreferences;
87 extern WDDomain *WDWindowMaker;
88 extern WDDomain *WDRootMenu;
89 extern WDDomain *WDWindowAttributes;
90 extern WShortKey wKeyBindings[WKBD_LAST];
91 extern int wScreenCount;
93 #ifdef SHAPE
94 extern Bool wShapeSupported;
95 extern int wShapeEventBase;
96 #endif
98 #ifdef KEEP_XKB_LOCK_STATUS
99 extern Bool wXkbSupported;
100 extern int wXkbEventBase;
101 #endif
103 #ifdef HAVE_XRANDR
104 extern Bool has_randr;
105 extern int randr_event_base;
106 #endif
108 /* contexts */
109 extern XContext wWinContext;
110 extern XContext wAppWinContext;
111 extern XContext wStackContext;
112 extern XContext wVEdgeContext;
114 /* atoms */
115 extern Atom _XA_WM_STATE;
116 extern Atom _XA_WM_CHANGE_STATE;
117 extern Atom _XA_WM_PROTOCOLS;
118 extern Atom _XA_WM_TAKE_FOCUS;
119 extern Atom _XA_WM_DELETE_WINDOW;
120 extern Atom _XA_WM_SAVE_YOURSELF;
121 extern Atom _XA_WM_CLIENT_LEADER;
122 extern Atom _XA_WM_COLORMAP_WINDOWS;
123 extern Atom _XA_WM_COLORMAP_NOTIFY;
124 extern Atom _XA_GNUSTEP_WM_ATTR;
125 extern Atom _XA_WINDOWMAKER_MENU;
126 extern Atom _XA_WINDOWMAKER_WM_PROTOCOLS;
127 extern Atom _XA_WINDOWMAKER_STATE;
128 extern Atom _XA_WINDOWMAKER_WM_FUNCTION;
129 extern Atom _XA_WINDOWMAKER_NOTICEBOARD;
130 extern Atom _XA_WINDOWMAKER_COMMAND;
131 extern Atom _XA_WINDOWMAKER_ICON_SIZE;
132 extern Atom _XA_WINDOWMAKER_ICON_TILE;
133 extern Atom _XA_GNUSTEP_WM_MINIATURIZE_WINDOW;
134 extern Atom _XA_GNUSTEP_TITLEBAR_STATE;
135 extern Atom _XA_WM_IGNORE_FOCUS_EVENTS;
137 /* cursors */
138 extern Cursor wCursor[WCUR_LAST];
140 #ifndef HAVE_INOTIFY
141 /* special flags */
142 extern char WDelayedActionSet;
143 #endif
145 extern void NotifyDeadProcess(pid_t pid, unsigned char status);
147 /***** Local *****/
148 static WScreen **wScreen = NULL;
149 static unsigned int _NumLockMask = 0;
150 static unsigned int _ScrollLockMask = 0;
151 static void manageAllWindows(WScreen * scr, int crashed);
153 static int catchXError(Display * dpy, XErrorEvent * error)
155 char buffer[MAXLINE];
157 /* ignore some errors */
158 if (error->resourceid != None
159 && ((error->error_code == BadDrawable && error->request_code == X_GetGeometry)
160 || (error->error_code == BadMatch && (error->request_code == X_SetInputFocus))
161 || (error->error_code == BadWindow)
163 && (error->request_code == X_GetWindowAttributes
164 || error->request_code == X_SetInputFocus
165 || error->request_code == X_ChangeWindowAttributes
166 || error->request_code == X_GetProperty
167 || error->request_code == X_ChangeProperty
168 || error->request_code == X_QueryTree
169 || error->request_code == X_GrabButton
170 || error->request_code == X_UngrabButton
171 || error->request_code == X_SendEvent
172 || error->request_code == X_ConfigureWindow))
174 || (error->request_code == X_InstallColormap))) {
175 return 0;
177 FormatXError(dpy, error, buffer, MAXLINE);
178 wwarning(_("internal X error: %s\n"), buffer);
179 return -1;
183 *----------------------------------------------------------------------
184 * handleXIO-
185 * Handle X shutdowns and other stuff.
186 *----------------------------------------------------------------------
188 static int handleXIO(Display * xio_dpy)
190 dpy = NULL;
191 Exit(0);
192 return 0;
195 #ifndef HAVE_INOTIFY
197 *----------------------------------------------------------------------
198 * delayedAction-
199 * Action to be executed after the signal() handler is exited.
200 *----------------------------------------------------------------------
202 static void delayedAction(void *cdata)
204 if (WDelayedActionSet == 0)
205 return;
207 WDelayedActionSet--;
209 * Make the event dispatcher do whatever it needs to do,
210 * including handling zombie processes, restart and exit
211 * signals.
213 DispatchEvent(NULL);
215 #endif
218 *----------------------------------------------------------------------
219 * handleExitSig--
220 * User generated exit signal handler.
221 *----------------------------------------------------------------------
223 static RETSIGTYPE handleExitSig(int sig)
225 sigset_t sigs;
227 sigfillset(&sigs);
228 sigprocmask(SIG_BLOCK, &sigs, NULL);
230 if (sig == SIGUSR1) {
231 wwarning("got signal %i - restarting\n", sig);
232 SIG_WCHANGE_STATE(WSTATE_NEED_RESTART);
233 } else if (sig == SIGUSR2) {
234 wwarning("got signal %i - rereading defaults\n", sig);
235 SIG_WCHANGE_STATE(WSTATE_NEED_REREAD);
236 } else if (sig == SIGTERM || sig == SIGINT || sig == SIGHUP) {
237 wwarning("got signal %i - exiting...\n", sig);
238 SIG_WCHANGE_STATE(WSTATE_NEED_EXIT);
241 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
242 DispatchEvent(NULL); /* Dispatch events imediately. */
245 /* Dummy signal handler */
246 static void dummyHandler(int sig)
251 *----------------------------------------------------------------------
252 * handleSig--
253 * general signal handler. Exits the program gently.
254 *----------------------------------------------------------------------
256 static RETSIGTYPE handleSig(int sig)
258 wfatal("got signal %i\n", sig);
260 /* Setting the signal behaviour back to default and then reraising the
261 * signal is a cleaner way to make program exit and core dump than calling
262 * abort(), since it correctly returns from the signal handler and sets
263 * the flags accordingly. -Dan
265 if (sig == SIGSEGV || sig == SIGFPE || sig == SIGBUS || sig == SIGILL || sig == SIGABRT) {
266 signal(sig, SIG_DFL);
267 kill(getpid(), sig);
268 return;
271 wAbort(0);
274 static RETSIGTYPE buryChild(int foo)
276 pid_t pid;
277 int status;
278 int save_errno = errno;
279 sigset_t sigs;
281 sigfillset(&sigs);
282 /* Block signals so that NotifyDeadProcess() doesn't get fux0red */
283 sigprocmask(SIG_BLOCK, &sigs, NULL);
285 /* R.I.P. */
286 /* If 2 or more kids exit in a small time window, before this handler gets
287 * the chance to get invoked, the SIGCHLD signals will be merged and only
288 * one SIGCHLD signal will be sent to us. We use a while loop to get all
289 * exited child status because we can't count on the number of SIGCHLD
290 * signals to know exactly how many kids have exited. -Dan
292 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || (pid < 0 && errno == EINTR)) {
293 NotifyDeadProcess(pid, WEXITSTATUS(status));
296 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
298 errno = save_errno;
301 static void getOffendingModifiers(void)
303 int i;
304 XModifierKeymap *modmap;
305 KeyCode nlock, slock;
306 static int mask_table[8] = {
307 ShiftMask, LockMask, ControlMask, Mod1Mask,
308 Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
311 nlock = XKeysymToKeycode(dpy, XK_Num_Lock);
312 slock = XKeysymToKeycode(dpy, XK_Scroll_Lock);
315 * Find out the masks for the NumLock and ScrollLock modifiers,
316 * so that we can bind the grabs for when they are enabled too.
318 modmap = XGetModifierMapping(dpy);
320 if (modmap != NULL && modmap->max_keypermod > 0) {
321 for (i = 0; i < 8 * modmap->max_keypermod; i++) {
322 if (modmap->modifiermap[i] == nlock && nlock != 0)
323 _NumLockMask = mask_table[i / modmap->max_keypermod];
324 else if (modmap->modifiermap[i] == slock && slock != 0)
325 _ScrollLockMask = mask_table[i / modmap->max_keypermod];
329 if (modmap)
330 XFreeModifiermap(modmap);
333 #ifdef NUMLOCK_HACK
334 void
335 wHackedGrabKey(int keycode, unsigned int modifiers,
336 Window grab_window, Bool owner_events, int pointer_mode, int keyboard_mode)
338 if (modifiers == AnyModifier)
339 return;
341 /* grab all combinations of the modifier with CapsLock, NumLock and
342 * ScrollLock. How much memory/CPU does such a monstrosity consume
343 * in the server?
345 if (_NumLockMask)
346 XGrabKey(dpy, keycode, modifiers | _NumLockMask,
347 grab_window, owner_events, pointer_mode, keyboard_mode);
348 if (_ScrollLockMask)
349 XGrabKey(dpy, keycode, modifiers | _ScrollLockMask,
350 grab_window, owner_events, pointer_mode, keyboard_mode);
351 if (_NumLockMask && _ScrollLockMask)
352 XGrabKey(dpy, keycode, modifiers | _NumLockMask | _ScrollLockMask,
353 grab_window, owner_events, pointer_mode, keyboard_mode);
354 if (_NumLockMask)
355 XGrabKey(dpy, keycode, modifiers | _NumLockMask | LockMask,
356 grab_window, owner_events, pointer_mode, keyboard_mode);
357 if (_ScrollLockMask)
358 XGrabKey(dpy, keycode, modifiers | _ScrollLockMask | LockMask,
359 grab_window, owner_events, pointer_mode, keyboard_mode);
360 if (_NumLockMask && _ScrollLockMask)
361 XGrabKey(dpy, keycode, modifiers | _NumLockMask | _ScrollLockMask | LockMask,
362 grab_window, owner_events, pointer_mode, keyboard_mode);
363 /* phew, I guess that's all, right? */
365 #endif
367 void
368 wHackedGrabButton(unsigned int button, unsigned int modifiers,
369 Window grab_window, Bool owner_events,
370 unsigned int event_mask, int pointer_mode, int keyboard_mode, Window confine_to, Cursor cursor)
372 XGrabButton(dpy, button, modifiers, grab_window, owner_events,
373 event_mask, pointer_mode, keyboard_mode, confine_to, cursor);
375 if (modifiers == AnyModifier)
376 return;
378 XGrabButton(dpy, button, modifiers | LockMask, grab_window, owner_events,
379 event_mask, pointer_mode, keyboard_mode, confine_to, cursor);
381 #ifdef NUMLOCK_HACK
382 /* same as above, but for mouse buttons */
383 if (_NumLockMask)
384 XGrabButton(dpy, button, modifiers | _NumLockMask,
385 grab_window, owner_events, event_mask, pointer_mode,
386 keyboard_mode, confine_to, cursor);
387 if (_ScrollLockMask)
388 XGrabButton(dpy, button, modifiers | _ScrollLockMask,
389 grab_window, owner_events, event_mask, pointer_mode,
390 keyboard_mode, confine_to, cursor);
391 if (_NumLockMask && _ScrollLockMask)
392 XGrabButton(dpy, button, modifiers | _ScrollLockMask | _NumLockMask,
393 grab_window, owner_events, event_mask, pointer_mode,
394 keyboard_mode, confine_to, cursor);
395 if (_NumLockMask)
396 XGrabButton(dpy, button, modifiers | _NumLockMask | LockMask,
397 grab_window, owner_events, event_mask, pointer_mode,
398 keyboard_mode, confine_to, cursor);
399 if (_ScrollLockMask)
400 XGrabButton(dpy, button, modifiers | _ScrollLockMask | LockMask,
401 grab_window, owner_events, event_mask, pointer_mode,
402 keyboard_mode, confine_to, cursor);
403 if (_NumLockMask && _ScrollLockMask)
404 XGrabButton(dpy, button, modifiers | _ScrollLockMask | _NumLockMask | LockMask,
405 grab_window, owner_events, event_mask, pointer_mode,
406 keyboard_mode, confine_to, cursor);
407 #endif /* NUMLOCK_HACK */
410 WScreen *wScreenWithNumber(int i)
412 assert(i < wScreenCount);
414 return wScreen[i];
417 WScreen *wScreenForRootWindow(Window window)
419 int i;
421 if (wScreenCount == 1)
422 return wScreen[0];
425 * Since the number of heads will probably be small (normally 2),
426 * it should be faster to use this than a hash table, because
427 * of the overhead.
429 for (i = 0; i < wScreenCount; i++) {
430 if (wScreen[i]->root_win == window) {
431 return wScreen[i];
435 return wScreenForWindow(window);
438 WScreen *wScreenSearchForRootWindow(Window window)
440 int i;
442 if (wScreenCount == 1)
443 return wScreen[0];
446 * Since the number of heads will probably be small (normally 2),
447 * it should be faster to use this than a hash table, because
448 * of the overhead.
450 for (i = 0; i < wScreenCount; i++) {
451 if (wScreen[i]->root_win == window) {
452 return wScreen[i];
456 return wScreenForWindow(window);
459 WScreen *wScreenForWindow(Window window)
461 XWindowAttributes attr;
463 if (wScreenCount == 1)
464 return wScreen[0];
466 if (XGetWindowAttributes(dpy, window, &attr)) {
467 return wScreenForRootWindow(attr.root);
469 return NULL;
472 static char *atomNames[] = {
473 "WM_STATE",
474 "WM_CHANGE_STATE",
475 "WM_PROTOCOLS",
476 "WM_TAKE_FOCUS",
477 "WM_DELETE_WINDOW",
478 "WM_SAVE_YOURSELF",
479 "WM_CLIENT_LEADER",
480 "WM_COLORMAP_WINDOWS",
481 "WM_COLORMAP_NOTIFY",
483 "_WINDOWMAKER_MENU",
484 "_WINDOWMAKER_STATE",
485 "_WINDOWMAKER_WM_PROTOCOLS",
486 "_WINDOWMAKER_WM_FUNCTION",
487 "_WINDOWMAKER_NOTICEBOARD",
488 "_WINDOWMAKER_COMMAND",
489 "_WINDOWMAKER_ICON_SIZE",
490 "_WINDOWMAKER_ICON_TILE",
492 GNUSTEP_WM_ATTR_NAME,
493 GNUSTEP_WM_MINIATURIZE_WINDOW,
494 GNUSTEP_TITLEBAR_STATE,
496 "WM_IGNORE_FOCUS_EVENTS"
500 *----------------------------------------------------------
501 * StartUp--
502 * starts the window manager and setup global data.
503 * Called from main() at startup.
505 * Side effects:
506 * global data declared in main.c is initialized
507 *----------------------------------------------------------
509 void StartUp(Bool defaultScreenOnly)
511 struct sigaction sig_action;
512 int j, max, dummy;
513 Atom atom[sizeof(atomNames) / sizeof(char *)];
516 * Ignore CapsLock in modifiers
518 ValidModMask = 0xff & ~LockMask;
520 getOffendingModifiers();
522 * Ignore NumLock and ScrollLock too
524 ValidModMask &= ~(_NumLockMask | _ScrollLockMask);
526 memset(&wKeyBindings, 0, sizeof(wKeyBindings));
528 wWinContext = XUniqueContext();
529 wAppWinContext = XUniqueContext();
530 wStackContext = XUniqueContext();
531 wVEdgeContext = XUniqueContext();
533 /* _XA_VERSION = XInternAtom(dpy, "VERSION", False); */
535 #ifdef HAVE_XINTERNATOMS
536 XInternAtoms(dpy, atomNames, sizeof(atomNames) / sizeof(char *), False, atom);
537 #else
540 int i;
541 for (i = 0; i < sizeof(atomNames) / sizeof(char *); i++) {
542 atom[i] = XInternAtom(dpy, atomNames[i], False);
545 #endif
547 _XA_WM_STATE = atom[0];
548 _XA_WM_CHANGE_STATE = atom[1];
549 _XA_WM_PROTOCOLS = atom[2];
550 _XA_WM_TAKE_FOCUS = atom[3];
551 _XA_WM_DELETE_WINDOW = atom[4];
552 _XA_WM_SAVE_YOURSELF = atom[5];
553 _XA_WM_CLIENT_LEADER = atom[6];
554 _XA_WM_COLORMAP_WINDOWS = atom[7];
555 _XA_WM_COLORMAP_NOTIFY = atom[8];
557 _XA_WINDOWMAKER_MENU = atom[9];
558 _XA_WINDOWMAKER_STATE = atom[10];
559 _XA_WINDOWMAKER_WM_PROTOCOLS = atom[11];
560 _XA_WINDOWMAKER_WM_FUNCTION = atom[12];
561 _XA_WINDOWMAKER_NOTICEBOARD = atom[13];
562 _XA_WINDOWMAKER_COMMAND = atom[14];
563 _XA_WINDOWMAKER_ICON_SIZE = atom[15];
564 _XA_WINDOWMAKER_ICON_TILE = atom[16];
566 _XA_GNUSTEP_WM_ATTR = atom[17];
567 _XA_GNUSTEP_WM_MINIATURIZE_WINDOW = atom[18];
568 _XA_GNUSTEP_TITLEBAR_STATE = atom[19];
570 _XA_WM_IGNORE_FOCUS_EVENTS = atom[20];
572 #ifdef XDND
573 wXDNDInitializeAtoms();
574 #endif
576 /* cursors */
577 wCursor[WCUR_NORMAL] = None; /* inherit from root */
578 wCursor[WCUR_ROOT] = XCreateFontCursor(dpy, XC_left_ptr);
579 wCursor[WCUR_ARROW] = XCreateFontCursor(dpy, XC_top_left_arrow);
580 wCursor[WCUR_MOVE] = XCreateFontCursor(dpy, XC_fleur);
581 wCursor[WCUR_RESIZE] = XCreateFontCursor(dpy, XC_sizing);
582 wCursor[WCUR_TOPLEFTRESIZE] = XCreateFontCursor(dpy, XC_top_left_corner);
583 wCursor[WCUR_TOPRIGHTRESIZE] = XCreateFontCursor(dpy, XC_top_right_corner);
584 wCursor[WCUR_BOTTOMLEFTRESIZE] = XCreateFontCursor(dpy, XC_bottom_left_corner);
585 wCursor[WCUR_BOTTOMRIGHTRESIZE] = XCreateFontCursor(dpy, XC_bottom_right_corner);
586 wCursor[WCUR_VERTICALRESIZE] = XCreateFontCursor(dpy, XC_sb_v_double_arrow);
587 wCursor[WCUR_HORIZONRESIZE] = XCreateFontCursor(dpy, XC_sb_h_double_arrow);
588 wCursor[WCUR_WAIT] = XCreateFontCursor(dpy, XC_watch);
589 wCursor[WCUR_QUESTION] = XCreateFontCursor(dpy, XC_question_arrow);
590 wCursor[WCUR_TEXT] = XCreateFontCursor(dpy, XC_xterm); /* odd name??? */
591 wCursor[WCUR_SELECT] = XCreateFontCursor(dpy, XC_cross);
593 Pixmap cur = XCreatePixmap(dpy, DefaultRootWindow(dpy), 16, 16, 1);
594 GC gc = XCreateGC(dpy, cur, 0, NULL);
595 XColor black;
596 memset(&black, 0, sizeof(XColor));
597 XSetForeground(dpy, gc, 0);
598 XFillRectangle(dpy, cur, gc, 0, 0, 16, 16);
599 XFreeGC(dpy, gc);
600 wCursor[WCUR_EMPTY] = XCreatePixmapCursor(dpy, cur, cur, &black, &black, 0, 0);
601 XFreePixmap(dpy, cur);
604 #ifndef HAVE_INOTIFY
605 /* signal handler stuff that gets called when a signal is caught */
606 WMAddPersistentTimerHandler(500, delayedAction, NULL);
607 #endif
609 /* emergency exit... */
610 sig_action.sa_handler = handleSig;
611 sigemptyset(&sig_action.sa_mask);
613 sig_action.sa_flags = SA_RESTART;
614 sigaction(SIGQUIT, &sig_action, NULL);
615 /* instead of catching these, we let the default handler abort the
616 * program. The new monitor process will take appropriate action
617 * when it detects the crash.
618 sigaction(SIGSEGV, &sig_action, NULL);
619 sigaction(SIGBUS, &sig_action, NULL);
620 sigaction(SIGFPE, &sig_action, NULL);
621 sigaction(SIGABRT, &sig_action, NULL);
624 sig_action.sa_handler = handleExitSig;
626 /* Here we set SA_RESTART for safety, because SIGUSR1 may not be handled
627 * immediately. -Dan */
628 sig_action.sa_flags = SA_RESTART;
629 sigaction(SIGTERM, &sig_action, NULL);
630 sigaction(SIGINT, &sig_action, NULL);
631 sigaction(SIGHUP, &sig_action, NULL);
632 sigaction(SIGUSR1, &sig_action, NULL);
633 sigaction(SIGUSR2, &sig_action, NULL);
635 /* ignore dead pipe */
636 /* Because POSIX mandates that only signal with handlers are reset
637 * accross an exec*(), we do not want to propagate ignoring SIGPIPEs
638 * to children. Hence the dummy handler.
639 * Philippe Troin <phil@fifi.org>
641 sig_action.sa_handler = &dummyHandler;
642 sig_action.sa_flags = SA_RESTART;
643 sigaction(SIGPIPE, &sig_action, NULL);
645 /* handle dead children */
646 sig_action.sa_handler = buryChild;
647 sig_action.sa_flags = SA_NOCLDSTOP | SA_RESTART;
648 sigaction(SIGCHLD, &sig_action, NULL);
650 /* Now we unblock all signals, that may have been blocked by the parent
651 * who exec()-ed us. This can happen for example if Window Maker crashes
652 * and restarts itself or another window manager from the signal handler.
653 * In this case, the new proccess inherits the blocked signal mask and
654 * will no longer react to that signal, until unblocked.
655 * This is because the signal handler of the proccess who crashed (parent)
656 * didn't return, and the signal remained blocked. -Dan
658 sigfillset(&sig_action.sa_mask);
659 sigprocmask(SIG_UNBLOCK, &sig_action.sa_mask, NULL);
661 /* handle X shutdowns a such */
662 XSetIOErrorHandler(handleXIO);
664 /* set hook for out event dispatcher in WINGs event dispatcher */
665 WMHookEventHandler(DispatchEvent);
667 /* initialize defaults stuff */
668 WDWindowMaker = wDefaultsInitDomain("WindowMaker", True);
669 if (!WDWindowMaker->dictionary) {
670 wwarning(_("could not read domain \"%s\" from defaults database"), "WindowMaker");
673 /* read defaults that don't change until a restart and are
674 * screen independent */
675 wReadStaticDefaults(WDWindowMaker ? WDWindowMaker->dictionary : NULL);
677 /* check sanity of some values */
678 if (wPreferences.icon_size < 16) {
679 wwarning(_("icon size is configured to %i, but it's too small. Using 16, instead\n"),
680 wPreferences.icon_size);
681 wPreferences.icon_size = 16;
684 /* init other domains */
685 WDRootMenu = wDefaultsInitDomain("WMRootMenu", False);
686 if (!WDRootMenu->dictionary) {
687 wwarning(_("could not read domain \"%s\" from defaults database"), "WMRootMenu");
689 wDefaultsMergeGlobalMenus(WDRootMenu);
691 WDWindowAttributes = wDefaultsInitDomain("WMWindowAttributes", True);
692 if (!WDWindowAttributes->dictionary) {
693 wwarning(_("could not read domain \"%s\" from defaults database"), "WMWindowAttributes");
696 XSetErrorHandler((XErrorHandler) catchXError);
698 #ifdef SHAPE
699 /* ignore j */
700 wShapeSupported = XShapeQueryExtension(dpy, &wShapeEventBase, &j);
701 #endif
703 #ifdef HAVE_XRANDR
704 has_randr = XRRQueryExtension(dpy, &randr_event_base, &dummy);
705 #else
706 has_randr = false;
707 #endif
709 #ifdef KEEP_XKB_LOCK_STATUS
710 wXkbSupported = XkbQueryExtension(dpy, NULL, &wXkbEventBase, NULL, NULL, NULL);
711 if (wPreferences.modelock && !wXkbSupported) {
712 wwarning(_("XKB is not supported. KbdModeLock is automatically disabled."));
713 wPreferences.modelock = 0;
715 #endif
717 if (defaultScreenOnly) {
718 max = 1;
719 } else {
720 max = ScreenCount(dpy);
722 wScreen = wmalloc(sizeof(WScreen *) * max);
724 wScreenCount = 0;
726 /* manage the screens */
727 for (j = 0; j < max; j++) {
728 if (defaultScreenOnly || max == 1) {
729 wScreen[wScreenCount] = wScreenInit(DefaultScreen(dpy));
730 if (!wScreen[wScreenCount]) {
731 wfatal(_("it seems that there is already a window manager running"));
732 Exit(1);
734 } else {
735 wScreen[wScreenCount] = wScreenInit(j);
736 if (!wScreen[wScreenCount]) {
737 wwarning(_("could not manage screen %i"), j);
738 continue;
741 wScreenCount++;
744 InitializeSwitchMenu();
746 /* initialize/restore state for the screens */
747 for (j = 0; j < wScreenCount; j++) {
748 int lastDesktop;
750 lastDesktop = wNETWMGetCurrentDesktopFromHint(wScreen[j]);
752 wScreenRestoreState(wScreen[j]);
754 /* manage all windows that were already here before us */
755 if (!wPreferences.flags.nodock && wScreen[j]->dock)
756 wScreen[j]->last_dock = wScreen[j]->dock;
758 manageAllWindows(wScreen[j], wPreferences.flags.restarting == 2);
760 /* restore saved menus */
761 wMenuRestoreState(wScreen[j]);
763 /* If we're not restarting, restore session */
764 if (wPreferences.flags.restarting == 0 && !wPreferences.flags.norestore)
765 wSessionRestoreState(wScreen[j]);
767 if (!wPreferences.flags.noautolaunch) {
768 /* auto-launch apps */
769 if (!wPreferences.flags.nodock && wScreen[j]->dock) {
770 wScreen[j]->last_dock = wScreen[j]->dock;
771 wDockDoAutoLaunch(wScreen[j]->dock, 0);
773 /* auto-launch apps in clip */
774 if (!wPreferences.flags.noclip) {
775 int i;
776 for (i = 0; i < wScreen[j]->workspace_count; i++) {
777 if (wScreen[j]->workspaces[i]->clip) {
778 wScreen[j]->last_dock = wScreen[j]->workspaces[i]->clip;
779 wDockDoAutoLaunch(wScreen[j]->workspaces[i]->clip, i);
785 /* go to workspace where we were before restart */
786 if (lastDesktop >= 0) {
787 wWorkspaceForceChange(wScreen[j], lastDesktop);
788 } else {
789 wSessionRestoreLastWorkspace(wScreen[j]);
793 if (wScreenCount == 0) {
794 wfatal(_("could not manage any screen"));
795 Exit(1);
798 #ifndef HAVE_INOTIFY
799 if (!wPreferences.flags.nopolling && !wPreferences.flags.noupdates) {
800 /* setup defaults file polling */
801 WMAddTimerHandler(3000, wDefaultsCheckDomains, NULL);
803 #endif
807 static Bool windowInList(Window window, Window * list, int count)
809 for (; count >= 0; count--) {
810 if (window == list[count])
811 return True;
813 return False;
817 *-----------------------------------------------------------------------
818 * manageAllWindows--
819 * Manages all windows in the screen.
821 * Notes:
822 * Called when the wm is being started.
823 * No events can be processed while the windows are being
824 * reparented/managed.
825 *-----------------------------------------------------------------------
827 static void manageAllWindows(WScreen * scr, int crashRecovery)
829 Window root, parent;
830 Window *children;
831 unsigned int nchildren;
832 unsigned int i, j;
833 WWindow *wwin;
835 XGrabServer(dpy);
836 XQueryTree(dpy, scr->root_win, &root, &parent, &children, &nchildren);
838 scr->flags.startup = 1;
840 /* first remove all icon windows */
841 for (i = 0; i < nchildren; i++) {
842 XWMHints *wmhints;
844 if (children[i] == None)
845 continue;
847 wmhints = XGetWMHints(dpy, children[i]);
848 if (wmhints && (wmhints->flags & IconWindowHint)) {
849 for (j = 0; j < nchildren; j++) {
850 if (children[j] == wmhints->icon_window) {
851 XFree(wmhints);
852 wmhints = NULL;
853 children[j] = None;
854 break;
858 if (wmhints) {
859 XFree(wmhints);
863 for (i = 0; i < nchildren; i++) {
864 if (children[i] == None)
865 continue;
867 wwin = wManageWindow(scr, children[i]);
868 if (wwin) {
869 /* apply states got from WSavedState */
870 /* shaded + minimized is not restored correctly */
871 if (wwin->flags.shaded) {
872 wwin->flags.shaded = 0;
873 wShadeWindow(wwin);
875 if (wwin->flags.miniaturized
876 && (wwin->transient_for == None
877 || wwin->transient_for == scr->root_win
878 || !windowInList(wwin->transient_for, children, nchildren))) {
880 wwin->flags.skip_next_animation = 1;
881 wwin->flags.miniaturized = 0;
882 wIconifyWindow(wwin);
883 } else {
884 wClientSetState(wwin, NormalState, None);
886 if (crashRecovery) {
887 int border;
889 border = (!HAS_BORDER(wwin) ? 0 : FRAME_BORDER_WIDTH);
891 wWindowMove(wwin, wwin->frame_x - border,
892 wwin->frame_y - border -
893 (wwin->frame->titlebar ? wwin->frame->titlebar->height : 0));
897 XUngrabServer(dpy);
899 /* hide apps */
900 wwin = scr->focused_window;
901 while (wwin) {
902 if (wwin->flags.hidden) {
903 WApplication *wapp = wApplicationOf(wwin->main_window);
905 if (wapp) {
906 wwin->flags.hidden = 0;
907 wHideApplication(wapp);
908 } else {
909 wwin->flags.hidden = 0;
912 wwin = wwin->prev;
915 XFree(children);
916 scr->flags.startup = 0;
917 scr->flags.startup2 = 1;
919 while (XPending(dpy)) {
920 XEvent ev;
921 WMNextEvent(dpy, &ev);
922 WMHandleEvent(&ev);
924 wWorkspaceForceChange(scr, 0);
925 if (!wPreferences.flags.noclip)
926 wDockShowIcons(scr->workspaces[scr->current_workspace]->clip);
927 scr->flags.startup2 = 0;