- Added Jim Knoble's 'no polling' patch.
[wmaker-crm.git] / src / WindowMaker.h
blobd4864ed1b4f1bb3a806c4826e5f7b0c1c0be3e93
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/WINGs.h>
31 #if HAVE_LIBINTL_H && I18N
32 # include <libintl.h>
33 # define _(text) gettext(text)
34 #else
35 # define _(text) (text)
36 #endif
41 /* class codes */
42 typedef enum {
43 WCLASS_UNKNOWN = 0,
44 WCLASS_WINDOW = 1, /* managed client windows */
45 WCLASS_MENU = 2, /* root menus */
46 WCLASS_APPICON = 3,
47 WCLASS_DUMMYWINDOW = 4, /* window that holds window group leader */
48 WCLASS_MINIWINDOW = 5,
49 WCLASS_DOCK_ICON = 6,
50 WCLASS_PAGER = 7,
51 WCLASS_TEXT_INPUT = 8,
52 WCLASS_FRAME = 9
53 } WClassType;
56 /* generic window levels (a superset of the N*XTSTEP ones) */
57 enum {
58 WMDesktopLevel = 0,
59 WMSunkenLevel = 1,
60 WMNormalLevel = 2,
61 WMFloatingLevel = 3,
62 WMDockLevel = 4,
63 WMSubmenuLevel = 5,
64 WMMainMenuLevel = 6,
65 WMOuterSpaceLevel = 7
69 * WObjDescriptor will be used by the event dispatcher to
70 * send events to a particular object through the methods in the
71 * method table. If all objects of the same class share the
72 * same methods, the class method table should be used, otherwise
73 * a new method table must be created for each object.
74 * It is also assigned to find the parent structure of a given
75 * window (like the WWindow or WMenu for a button)
78 typedef struct WObjDescriptor {
79 void *self; /* the object that will be called */
80 /* event handlers */
81 void (*handle_expose)(struct WObjDescriptor *sender, XEvent *event);
83 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
85 void (*handle_anything)(struct WObjDescriptor *sender, XEvent *event);
87 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
88 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
90 WClassType parent_type; /* type code of the parent */
91 void *parent; /* parent object (WWindow or WMenu) */
92 } WObjDescriptor;
95 /* shutdown modes */
96 typedef enum {
97 WSExitMode,
98 WSLogoutMode,
99 WSKillMode,
100 WSRestartPreparationMode
101 } WShutdownMode;
104 /* internal buttons */
105 #define WBUT_CLOSE 0
106 #define WBUT_BROKENCLOSE 1
107 #define WBUT_ICONIFY 2
108 #define WBUT_KILL 3
109 #ifdef XKB_BUTTON_HINT
110 #define WBUT_XKBGROUP1 4
111 #define WBUT_XKBGROUP2 5
112 #define WBUT_XKBGROUP3 6
113 #define WBUT_XKBGROUP4 7
114 #define PRED_BPIXMAPS 8 /* reserved for 4 groups */
115 #else
116 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
117 #endif /* XKB_BUTTON_HINT */
119 /* cursors */
120 #define WCUR_DEFAULT 0
121 #define WCUR_NORMAL 0
122 #define WCUR_MOVE 1
123 #define WCUR_RESIZE 2
124 #define WCUR_TOPLEFTRESIZE 3
125 #define WCUR_TOPRIGHTRESIZE 4
126 #define WCUR_BOTTOMLEFTRESIZE 5
127 #define WCUR_BOTTOMRIGHTRESIZE 6
128 #define WCUR_VERTICALRESIZE 7
129 #define WCUR_HORIZONRESIZE 8
130 #define WCUR_WAIT 9
131 #define WCUR_ARROW 10
132 #define WCUR_QUESTION 11
133 #define WCUR_TEXT 12
134 #define WCUR_SELECT 13
135 #define WCUR_ROOT 14
136 #define WCUR_LAST 15
138 /* geometry displays */
139 #define WDIS_NEW 0 /* new style */
140 #define WDIS_CENTER 1 /* center of screen */
141 #define WDIS_TOPLEFT 2 /* top left corner of screen */
142 #define WDIS_FRAME_CENTER 3 /* center of the frame */
145 /* keyboard input focus mode */
146 #define WKF_CLICK 0
147 #define WKF_POINTER 1
148 #define WKF_SLOPPY 2
150 /* window placement mode */
151 #define WPM_MANUAL 0
152 #define WPM_CASCADE 1
153 #define WPM_SMART 2
154 #define WPM_RANDOM 3
155 #define WPM_AUTO 4
157 /* text justification */
158 #define WTJ_CENTER 0
159 #define WTJ_LEFT 1
160 #define WTJ_RIGHT 2
162 /* iconification styles */
163 #define WIS_ZOOM 0
164 #define WIS_TWIST 1
165 #define WIS_FLIP 2
166 #define WIS_NONE 3
167 #define WIS_RANDOM 4 /* secret */
169 /* switchmenu actions */
170 #define ACTION_ADD 0
171 #define ACTION_REMOVE 1
172 #define ACTION_CHANGE 2
173 #define ACTION_CHANGE_WORKSPACE 3
174 #define ACTION_CHANGE_STATE 4
177 /* speeds */
178 #define SPEED_ULTRAFAST 0
179 #define SPEED_FAST 1
180 #define SPEED_MEDIUM 2
181 #define SPEED_SLOW 3
182 #define SPEED_ULTRASLOW 4
185 /* window states */
186 #define WS_FOCUSED 0
187 #define WS_UNFOCUSED 1
188 #define WS_PFOCUSED 2
190 /* clip title colors */
191 #define CLIP_NORMAL 0
192 #define CLIP_COLLAPSED 1
195 /* icon yard position */
196 #define IY_VERT 1
197 #define IY_HORIZ 0
198 #define IY_TOP 2
199 #define IY_BOTTOM 0
200 #define IY_RIGHT 4
201 #define IY_LEFT 0
204 /* menu styles */
205 #define MS_NORMAL 0
206 #define MS_SINGLE_TEXTURE 1
207 #define MS_FLAT 2
210 /* workspace display position */
211 #define WD_NONE 0
212 #define WD_CENTER 1
213 #define WD_TOP 2
214 #define WD_BOTTOM 3
215 #define WD_TOPLEFT 4
216 #define WD_TOPRIGHT 5
217 #define WD_BOTTOMLEFT 6
218 #define WD_BOTTOMRIGHT 7
221 /* workspace border position */
222 #define WB_NONE 0
223 #define WB_LEFTRIGHT 1
224 #define WB_TOPBOTTOM 2
225 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
228 /* program states */
229 #define WSTATE_NORMAL 0
230 #define WSTATE_NEED_EXIT 1
231 #define WSTATE_NEED_RESTART 2
232 #define WSTATE_EXITING 3
233 #define WSTATE_RESTARTING 4
234 #define WSTATE_MODAL 5
235 #define WSTATE_NEED_REREAD 6
238 #define WCHECK_STATE(state) (state == WProgramState)
239 #define WCHANGE_STATE(nstate) \
240 if (WProgramState == WSTATE_NORMAL\
241 || nstate != WSTATE_MODAL)\
242 WProgramState = (nstate)
245 /* notifications */
247 #ifdef MAINFILE
248 #define NOTIFICATION(n) char *WN##n = #n
249 #else
250 #define NOTIFICATION(n) extern char *WN##n
251 #endif
253 NOTIFICATION(WindowAppearanceSettingsChanged);
255 NOTIFICATION(IconAppearanceSettingsChanged);
257 NOTIFICATION(IconTileSettingsChanged);
259 NOTIFICATION(MenuAppearanceSettingsChanged);
261 NOTIFICATION(MenuTitleAppearanceSettingsChanged);
264 /* appearance settings clientdata flags */
265 enum {
266 WFontSettings = 1 << 0,
267 WTextureSettings = 1 << 1,
268 WColorSettings = 1 << 2
273 typedef struct {
274 int x1, y1;
275 int x2, y2;
276 } WArea;
278 typedef struct WCoord {
279 int x, y;
280 } WCoord;
282 typedef struct WPreferences {
283 char *pixmap_path; /* : separate list of */
284 /* paths to find pixmaps */
285 char *icon_path; /* : separated list of */
286 /* paths to find icons */
288 char *logger_shell; /* shell to log child stdi/o */
290 RImage *button_images; /* titlebar button images */
292 char smooth_workspace_back;
293 signed char size_display; /* display type for resize geometry */
294 signed char move_display; /* display type for move geometry */
295 signed char window_placement; /* window placement mode */
296 signed char colormap_mode; /* colormap focus mode */
297 signed char focus_mode; /* window focusing mode */
299 char opaque_move; /* update window position during */
300 /* move */
302 char wrap_menus; /* wrap menus at edge of screen */
303 char scrollable_menus; /* let them be scrolled */
304 char align_menus; /* align menu with their parents */
306 char use_saveunders; /* turn on SaveUnders for menus,
307 * icons etc. */
308 char no_window_over_dock;
310 char no_window_over_icons;
312 WCoord window_place_origin; /* Offset for windows placed on
313 * screen */
315 char constrain_window_size; /* don't let windows get bigger than
316 * screen */
318 char windows_cycling; /* windoze cycling */
319 char circ_raise; /* raise window after Alt-tabbing */
321 char ignore_focus_click;
323 char open_transients_with_parent; /* open transient window in
324 same workspace as parent */
325 signed char title_justification; /* titlebar text alignment */
327 int window_title_clearance;
328 int menu_title_clearance;
329 int menu_text_clearance;
331 char multi_byte_text;
332 #ifdef KEEP_XKB_LOCK_STATUS
333 char modelock;
334 #endif
336 char no_dithering; /* use dithering or not */
338 char no_sound; /* enable/disable sound */
339 char no_animations; /* enable/disable animations */
341 char no_autowrap; /* wrap workspace when window is moved
342 * to the edge */
344 char auto_arrange_icons; /* automagically arrange icons */
346 char icon_box_position; /* position to place icons */
348 signed char iconification_style; /* position to place icons */
350 char disable_root_mouse; /* disable button events in root window */
352 char auto_focus; /* focus window when it's mapped */
355 char *icon_back_file; /* background image for icons */
357 WCoord *root_menu_pos; /* initial position of the root menu*/
358 WCoord *app_menu_pos;
360 WCoord *win_menu_pos;
362 signed char icon_yard; /* aka iconbox */
364 int raise_delay; /* delay for autoraise. 0 is disabled */
366 int cmap_size; /* size of dithering colormap in colors
367 * per channel */
369 int icon_size; /* size of the icon */
371 signed char menu_style; /* menu decoration style */
373 signed char workspace_name_display_position;
375 unsigned int modifier_mask; /* mask to use as kbd modifier */
378 char ws_advance; /* Create new workspace and advance */
380 #ifdef VIRTUAL_DESKTOP
381 unsigned int vedge_thickness;
382 unsigned int vedge_hscrollspeed;
383 unsigned int vedge_vscrollspeed;
384 unsigned int vedge_maxheight;
385 unsigned int vedge_maxwidth;
386 #endif
388 char ws_cycle; /* Cycle existing workspaces */
390 char save_session_on_exit; /* automatically save session on exit */
392 char sticky_icons; /* If miniwindows will be onmipresent */
394 char dont_confirm_kill; /* do not confirm Kill application */
396 char disable_miniwindows;
398 char dont_blink; /* do not blink icon selection */
400 /* Appearance options */
401 char new_style; /* Use newstyle buttons */
402 char superfluous; /* Use superfluous things */
404 /* root window mouse bindings */
405 signed char select_button; /* button for window selection */
406 signed char windowl_button; /* button for window list menu */
407 signed char menu_button; /* button for app menu */
409 /* balloon text */
410 char window_balloon;
411 char miniwin_balloon;
412 char appicon_balloon;
413 char help_balloon;
415 /* some constants */
416 int dblclick_time; /* double click delay time in ms */
418 /* animate menus */
419 signed char menu_scroll_speed; /* how fast menus are scrolled */
421 /* animate icon sliding */
422 signed char icon_slide_speed; /* icon slide animation speed */
424 /* shading animation */
425 signed char shade_speed;
427 int edge_resistance;
428 char attract;
430 unsigned int workspace_border_size; /* Size in pixels of the workspace border */
431 char workspace_border_position; /* Where to leave a workspace border */
433 struct {
434 unsigned int nodock:1; /* don't display the dock */
435 unsigned int noclip:1; /* don't display the clip */
436 unsigned int nocpp:1; /* don't use cpp */
437 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
438 unsigned int noautolaunch:1; /* don't autolaunch apps */
439 unsigned int norestore:1; /* don't restore session */
440 unsigned int create_stdcmap:1; /* create std colormap */
441 unsigned int nopolling:1; /* don't poll for defaults changes */
442 } flags; /* internal flags */
443 } WPreferences;
447 /****** Global Variables ******/
448 extern Display *dpy;
449 extern char *ProgName;
450 extern unsigned int ValidModMask;
451 extern char WProgramState;
453 /****** Global Functions ******/
454 extern void wAbort(Bool dumpCore);
456 #endif