*** empty log message ***
[wmaker-crm.git] / src / shutdown.c
blobd351349602a093b7d283b58a71e89d8a0adb5321
1 /*
2 * Window Maker window manager
3 *
4 * Copyright (c) 1997, 1998 Alfredo K. Kojima
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 * USA.
22 #include "wconfig.h"
24 #include <stdlib.h>
25 #include <signal.h>
26 #include <unistd.h>
28 #include <X11/Xlib.h>
29 #include <X11/Xutil.h>
30 #include <X11/Intrinsic.h>
32 #include "WindowMaker.h"
33 #include "window.h"
34 #include "client.h"
35 #include "funcs.h"
36 #include "properties.h"
37 #include "session.h"
38 #include "winspector.h"
39 #ifdef KWM_HINTS
40 # include "kwm.h"
41 #endif
42 #ifdef OLWM_HINTS
43 # include "openlook.h"
44 #endif
46 extern Atom _XA_WM_DELETE_WINDOW;
47 extern Time LastTimestamp;
48 extern int wScreenCount;
51 static void wipeDesktop(WScreen *scr);
55 *----------------------------------------------------------------------
56 * Shutdown-
57 * Exits the window manager cleanly. If mode is WSLogoutMode,
58 * the whole X session will be closed, by killing all clients if
59 * no session manager is running or by asking a shutdown to
60 * it if its present.
62 *----------------------------------------------------------------------
64 void
65 Shutdown(WShutdownMode mode)
67 int i;
69 switch (mode) {
70 case WSLogoutMode:
71 #ifdef XSMP_ENABLED
72 wSessionRequestShutdown();
73 break;
74 #else
75 /* fall through */
76 #endif
77 case WSKillMode:
78 case WSExitMode:
79 /* if there is no session manager, send SAVE_YOURSELF to
80 * the clients */
81 #if 0
82 #ifdef XSMP_ENABLED
83 if (!wSessionIsManaged())
84 #endif
85 for (i = 0; i < wScreenCount; i++) {
86 WScreen *scr;
88 scr = wScreenWithNumber(i);
89 if (scr) {
90 wSessionSendSaveYourself(scr);
93 #endif
94 for (i = 0; i < wScreenCount; i++) {
95 WScreen *scr;
97 scr = wScreenWithNumber(i);
98 if (scr) {
99 if (scr->helper_pid)
100 kill(scr->helper_pid, SIGKILL);
102 /* if the session is not being managed, save restart info */
103 #ifdef XSMP_ENABLED
104 if (!wSessionIsManaged())
105 #endif
106 wSessionSaveClients(scr);
108 #ifdef KWM_HINTS
109 wKWMShutdown(scr, True);
110 #endif
111 wScreenSaveState(scr);
113 if (mode == WSKillMode)
114 wipeDesktop(scr);
115 else
116 RestoreDesktop(scr);
119 ExecExitScript();
120 Exit(0);
121 break;
123 case WSRestartPreparationMode:
124 for (i=0; i<wScreenCount; i++) {
125 WScreen *scr;
127 scr = wScreenWithNumber(i);
128 if (scr) {
129 if (scr->helper_pid)
130 kill(scr->helper_pid, SIGKILL);
131 #ifdef KWM_HINTS
132 wKWMShutdown(scr, False);
133 #endif
134 #ifdef OLWM_HINTS
135 wOLWMShutdown(scr);
136 #endif
137 wScreenSaveState(scr);
139 RestoreDesktop(scr);
142 break;
149 static restoreWindows(WMBag *bag, WMBagIterator iter)
151 WCoreWindow *next;
152 WCoreWindow *core;
153 WWindow *wwin;
156 if (iter == NULL) {
157 core = WMBagFirst(bag, &iter);
158 } else {
159 core = WMBagNext(bag, &iter);
162 if (core == NULL)
163 return;
165 restoreWindows(bag, iter);
167 /* go to the end of the list */
168 while (core->stacking->under)
169 core = core->stacking->under;
171 while (core) {
172 next = core->stacking->above;
174 if (core->descriptor.parent_type==WCLASS_WINDOW) {
175 Window window;
177 wwin = core->descriptor.parent;
178 window = wwin->client_win;
179 wUnmanageWindow(wwin, !wwin->flags.internal_window, False);
180 XMapWindow(dpy, window);
182 core = next;
188 *----------------------------------------------------------------------
189 * RestoreDesktop--
190 * Puts the desktop in a usable state when exiting.
192 * Side effects:
193 * All frame windows are removed and windows are reparented
194 * back to root. Windows that are outside the screen are
195 * brought to a viable place.
197 *----------------------------------------------------------------------
199 void
200 RestoreDesktop(WScreen *scr)
202 if (scr->helper_pid > 0) {
203 kill(scr->helper_pid, SIGTERM);
204 scr->helper_pid = 0;
207 XGrabServer(dpy);
208 wDestroyInspectorPanels();
210 /* reparent windows back to the root window, keeping the stacking order */
211 restoreWindows(scr->stacking_list, NULL);
213 XUngrabServer(dpy);
214 XSetInputFocus(dpy, PointerRoot, RevertToParent, CurrentTime);
215 wColormapInstallForWindow(scr, NULL);
216 PropCleanUp(scr->root_win);
217 XSync(dpy, 0);
222 *----------------------------------------------------------------------
223 * wipeDesktop--
224 * Kills all windows in a screen. Send DeleteWindow to all windows
225 * that support it and KillClient on all windows that don't.
227 * Side effects:
228 * All managed windows are closed.
230 * TODO: change to XQueryTree()
231 *----------------------------------------------------------------------
233 static void
234 wipeDesktop(WScreen *scr)
236 WWindow *wwin;
238 wwin = scr->focused_window;
239 while (wwin) {
240 if (wwin->protocols.DELETE_WINDOW)
241 wClientSendProtocol(wwin, _XA_WM_DELETE_WINDOW, LastTimestamp);
242 else
243 wClientKill(wwin);
244 wwin = wwin->prev;
246 XSync(dpy, False);