2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
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,
29 #include <X11/Xutil.h>
31 #include "WindowMaker.h"
35 #include "properties.h"
37 #include "winspector.h"
40 extern Atom _XA_WM_DELETE_WINDOW;
41 extern Time LastTimestamp;
42 extern int wScreenCount;
45 static void wipeDesktop(WScreen *scr);
49 *----------------------------------------------------------------------
51 * Exits the window manager cleanly. If mode is WSLogoutMode,
52 * the whole X session will be closed, by killing all clients if
53 * no session manager is running or by asking a shutdown to
56 *----------------------------------------------------------------------
59 Shutdown(WShutdownMode mode)
67 wSessionRequestShutdown();
74 /* if there is no session manager, send SAVE_YOURSELF to
78 if (!wSessionIsManaged())
80 for (i = 0; i < wScreenCount; i++) {
83 scr = wScreenWithNumber(i);
85 wSessionSendSaveYourself(scr);
90 for (i = 0; i < wScreenCount; i++) {
93 scr = wScreenWithNumber(i);
96 kill(scr->helper_pid, SIGKILL);
98 /* if the session is not being managed, save restart info */
100 if (!wSessionIsManaged())
102 wSessionSaveClients(scr);
104 wScreenSaveState(scr);
106 if (mode == WSKillMode)
116 case WSRestartPreparationMode:
117 for (i=0; i<wScreenCount; i++) {
121 scr = wScreenWithNumber(i);
124 kill(scr->helper_pid, SIGKILL);
125 wScreenSaveState(scr);
135 restoreWindows(WMBag *bag, WMBagIterator iter)
143 core = WMBagFirst(bag, &iter);
145 core = WMBagNext(bag, &iter);
151 restoreWindows(bag, iter);
153 /* go to the end of the list */
154 while (core->stacking->under)
155 core = core->stacking->under;
158 next = core->stacking->above;
160 if (core->descriptor.parent_type==WCLASS_WINDOW) {
163 wwin = core->descriptor.parent;
164 window = wwin->client_win;
165 wUnmanageWindow(wwin, !wwin->flags.internal_window, False);
166 XMapWindow(dpy, window);
174 *----------------------------------------------------------------------
176 * Puts the desktop in a usable state when exiting.
179 * All frame windows are removed and windows are reparented
180 * back to root. Windows that are outside the screen are
181 * brought to a viable place.
183 *----------------------------------------------------------------------
186 RestoreDesktop(WScreen *scr)
188 if (scr->helper_pid > 0) {
189 kill(scr->helper_pid, SIGTERM);
194 wDestroyInspectorPanels();
196 /* reparent windows back to the root window, keeping the stacking order */
197 restoreWindows(scr->stacking_list, NULL);
200 XSetInputFocus(dpy, PointerRoot, RevertToParent, CurrentTime);
201 wColormapInstallForWindow(scr, NULL);
202 PropCleanUp(scr->root_win);
209 *----------------------------------------------------------------------
211 * Kills all windows in a screen. Send DeleteWindow to all windows
212 * that support it and KillClient on all windows that don't.
215 * All managed windows are closed.
217 * TODO: change to XQueryTree()
218 *----------------------------------------------------------------------
221 wipeDesktop(WScreen *scr)
225 wwin = scr->focused_window;
227 if (wwin->protocols.DELETE_WINDOW)
228 wClientSendProtocol(wwin, _XA_WM_DELETE_WINDOW, LastTimestamp);