Update to Window Maker 0.50.2
[wmaker-crm.git] / src / WindowMaker.h
blobffe60e5baadc815071f9b02180ad1adeaebf2c46
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 #ifndef WINDOWMAKER_H_
23 #define WINDOWMAKER_H_
25 #include "wconfig.h"
27 #include <assert.h>
29 #include "WINGs.h"
30 #include "WUtil.h"
32 #if HAVE_LIBINTL_H && I18N
33 # include <libintl.h>
34 # define _(text) gettext(text)
35 #else
36 # define _(text) (text)
37 #endif
42 /* class codes */
43 typedef enum {
44 WCLASS_UNKNOWN = 0,
45 WCLASS_WINDOW = 1, /* managed client windows */
46 WCLASS_MENU = 2, /* root menus */
47 WCLASS_APPICON = 3,
48 WCLASS_DUMMYWINDOW = 4, /* window that holds window group leader */
49 WCLASS_MINIWINDOW = 5,
50 WCLASS_DOCK_ICON = 6,
51 WCLASS_PAGER = 7,
52 WCLASS_TEXT_INPUT = 8,
53 WCLASS_FRAME = 9
54 } WClassType;
57 /* generic window levels (a superset of the N*XTSTEP ones) */
58 enum {
59 WMDesktopLevel = 0,
60 WMSunkenLevel = 1,
61 WMNormalLevel = 2,
62 WMFloatingLevel = 3,
63 WMDockLevel = 4,
64 WMSubmenuLevel = 5,
65 WMMainMenuLevel = 6,
66 WMOuterSpaceLevel = 7
68 #define MAX_WINDOW_LEVELS 8
71 * WObjDescriptor will be used by the event dispatcher to
72 * send events to a particular object through the methods in the
73 * method table. If all objects of the same class share the
74 * same methods, the class method table should be used, otherwise
75 * a new method table must be created for each object.
76 * It is also assigned to find the parent structure of a given
77 * window (like the WWindow or WMenu for a button)
80 typedef struct WObjDescriptor {
81 void *self; /* the object that will be called */
82 /* event handlers */
83 void (*handle_expose)(struct WObjDescriptor *sender, XEvent *event);
85 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
87 void (*handle_anything)(struct WObjDescriptor *sender, XEvent *event);
89 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
90 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
92 WClassType parent_type; /* type code of the parent */
93 void *parent; /* parent object (WWindow or WMenu) */
94 } WObjDescriptor;
97 /* shutdown modes */
98 typedef enum {
99 WSExitMode,
100 WSLogoutMode,
101 WSKillMode,
102 WSRestartPreparationMode
103 } WShutdownMode;
106 /* internal buttons */
107 #define WBUT_CLOSE 0
108 #define WBUT_BROKENCLOSE 1
109 #define WBUT_ICONIFY 2
110 #define WBUT_KILL 3
112 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
114 /* cursors */
115 #define WCUR_DEFAULT 0
116 #define WCUR_NORMAL 0
117 #define WCUR_MOVE 1
118 #define WCUR_RESIZE 2
119 #define WCUR_WAIT 3
120 #define WCUR_ARROW 4
121 #define WCUR_QUESTION 5
122 #define WCUR_TEXT 6
123 #define WCUR_LAST 7
126 /* geometry displays */
127 #define WDIS_NEW 0 /* new style */
128 #define WDIS_CENTER 1 /* center of screen */
129 #define WDIS_TOPLEFT 2 /* top left corner of screen */
130 #define WDIS_FRAME_CENTER 3 /* center of the frame */
133 /* keyboard input focus mode */
134 #define WKF_CLICK 0
135 #define WKF_POINTER 1
136 #define WKF_SLOPPY 2
138 /* window placement mode */
139 #define WPM_MANUAL 0
140 #define WPM_CASCADE 1
141 #define WPM_SMART 2
142 #define WPM_RANDOM 3
144 /* text justification */
145 #define WTJ_CENTER 0
146 #define WTJ_LEFT 1
147 #define WTJ_RIGHT 2
149 /* iconification styles */
150 #define WIS_ZOOM 0
151 #define WIS_TWIST 1
152 #define WIS_FLIP 2
153 #define WIS_NONE 3
154 #define WIS_RANDOM 4 /* secret */
156 /* switchmenu actions */
157 #define ACTION_ADD 0
158 #define ACTION_REMOVE 1
159 #define ACTION_CHANGE 2
160 #define ACTION_CHANGE_WORKSPACE 3
161 #define ACTION_CHANGE_STATE 4
164 /* speeds */
165 #define SPEED_ULTRAFAST 0
166 #define SPEED_FAST 1
167 #define SPEED_MEDIUM 2
168 #define SPEED_SLOW 3
169 #define SPEED_ULTRASLOW 4
172 /* window states */
173 #define WS_FOCUSED 0
174 #define WS_UNFOCUSED 1
175 #define WS_PFOCUSED 2
177 /* clip title colors */
178 #define CLIP_NORMAL 0
179 #define CLIP_COLLAPSED 1
182 /* icon yard position */
183 #define IY_VERT 1
184 #define IY_HORIZ 0
185 #define IY_TOP 2
186 #define IY_BOTTOM 0
187 #define IY_RIGHT 4
188 #define IY_LEFT 0
191 /* program states */
192 #define WSTATE_NORMAL 0
193 #define WSTATE_NEED_EXIT 1
194 #define WSTATE_NEED_RESTART 2
195 #define WSTATE_EXITING 3
196 #define WSTATE_RESTARTING 4
199 typedef struct {
200 int x1, y1;
201 int x2, y2;
202 } WArea;
204 typedef struct WCoord {
205 int x, y;
206 } WCoord;
208 typedef struct WPreferences {
209 char *pixmap_path; /* : separate list of */
210 /* paths to find pixmaps */
211 char *icon_path; /* : separated list of */
212 /* paths to find icons */
214 char size_display; /* display type for resize geometry */
215 char move_display; /* display type for move geometry */
216 char window_placement; /* window placement mode */
217 char colormap_mode; /* colormap focus mode */
218 char focus_mode; /* window focusing mode */
220 char opaque_move; /* update window position during */
221 /* move */
223 char wrap_menus; /* wrap menus at edge of screen */
224 char scrollable_menus; /* let them be scrolled */
225 char align_menus; /* align menu with their parents */
227 char use_saveunders; /* turn on SaveUnders for menus,
228 * icons etc. */
229 char no_window_over_dock;
231 char no_window_over_icons;
233 WCoord window_place_origin; /* Offset for windows placed on
234 * screen */
236 char constrain_window_size; /* don't let windows get bigger than
237 * screen */
239 char circ_raise; /* raise window when Alt-tabbing */
241 char ignore_focus_click;
243 char on_top_transients; /* transient windows are kept on top
244 * of their owners */
245 char title_justification; /* titlebar text alignment */
247 #ifdef KEEP_XKB_LOCK_STATUS
248 char modelock;
249 #endif
251 char no_dithering; /* use dithering or not */
253 char no_sound; /* enable/disable sound */
254 char no_animations; /* enable/disable animations */
256 char no_autowrap; /* wrap workspace when window is moved
257 * to the edge */
259 char auto_arrange_icons; /* automagically arrange icons */
261 char icon_box_position; /* position to place icons */
263 char iconification_style; /* position to place icons */
265 char disable_root_mouse; /* disable button events in root window */
267 char auto_focus; /* focus window when it's mapped */
269 char *icon_back_file; /* background image for icons */
271 WCoord *root_menu_pos; /* initial position of the root menu*/
272 WCoord *app_menu_pos;
274 WCoord *win_menu_pos;
276 char icon_yard; /* aka iconbox */
278 int raise_delay; /* delay for autoraise. 0 is disabled */
280 int cmap_size; /* size of dithering colormap in colors
281 * per channel */
283 int icon_size; /* size of the icon */
285 char ws_advance; /* Create new workspace and advance */
287 char ws_cycle; /* Cycle existing workspaces */
290 unsigned int modifier_mask; /* mask to use as kbd modifier */
292 char save_session_on_exit; /* automatically save session on exit */
294 char sticky_icons; /* If miniwindows will be onmipresent */
296 char dont_confirm_kill; /* do not confirm Kill application */
298 char dont_blink;
300 /* Appearance options */
301 char new_style; /* Use newstyle buttons */
302 char superfluous; /* Use superfluous things */
304 /* root window mouse bindings */
305 char select_button; /* button for window selection */
306 char windowl_button; /* button for window list menu */
307 char menu_button; /* button for app menu */
309 /* balloon text */
310 char window_balloon;
311 char miniwin_balloon;
312 char appicon_balloon;
314 /* some constants */
315 int dblclick_time; /* double click delay time in ms */
317 /* animate menus */
318 char menu_scroll_speed; /* how fast menus are scrolled */
320 /* animate icon sliding */
321 char icon_slide_speed; /* icon slide animation speed */
323 /* shading animation */
324 char shade_speed;
326 int edge_resistance;
328 struct {
329 unsigned int nodock:1; /* don't display the dock */
330 unsigned int noclip:1; /* don't display the clip */
331 unsigned int nocpp:1; /* don't use cpp */
332 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
333 } flags; /* internal flags */
334 } WPreferences;
338 /****** Global Variables ******/
339 extern Display *dpy;
340 extern char *ProgName;
341 extern unsigned int ValidModMask;
343 /****** Global Functions ******/
344 extern void wAbort(Bool dumpCore);
346 #endif