Remove unused functions
[wmaker-crm.git] / src / session.h
blob0b0e520776c5c87d574f804d5b66f989c781fff4
1 /* session.h
3 * Copyright (c) 1999-2003 Alfredo K. Kojima
5 * Window Maker window manager
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 along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef WMSESSION_H_
23 #define WMSESSION_H_
26 typedef struct {
27 int x;
28 int y;
29 unsigned int w; /* client size */
30 unsigned int h;
32 int workspace;
33 unsigned shortcuts; /* mask like 1<<shortcut_number */
35 WWindowAttributes mflags;
36 WWindowAttributes flags;
38 char miniaturized;
39 char shaded;
40 char maximized;
42 char user_changed_width;
43 char user_changed_height;
44 } WSessionData;
46 void wSessionSaveState(WScreen *scr);
47 void wSessionClearState(WScreen *scr);
48 void wSessionRestoreState(WScreen *scr);
49 void wSessionRestoreLastWorkspace(WScreen *scr);
50 Bool wSessionGetStateFor(WWindow *wwin, WSessionData *state);
51 #endif