Changes relate to virtual edge.
[wmaker-crm.git] / src / WindowMaker.h
blob8e292507fa525e1d09f0e9588d276983ac45c2f5
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
70 * WObjDescriptor will be used by the event dispatcher to
71 * send events to a particular object through the methods in the
72 * method table. If all objects of the same class share the
73 * same methods, the class method table should be used, otherwise
74 * a new method table must be created for each object.
75 * It is also assigned to find the parent structure of a given
76 * window (like the WWindow or WMenu for a button)
79 typedef struct WObjDescriptor {
80 void *self; /* the object that will be called */
81 /* event handlers */
82 void (*handle_expose)(struct WObjDescriptor *sender, XEvent *event);
84 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
86 void (*handle_anything)(struct WObjDescriptor *sender, XEvent *event);
88 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
89 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
91 WClassType parent_type; /* type code of the parent */
92 void *parent; /* parent object (WWindow or WMenu) */
93 } WObjDescriptor;
96 /* shutdown modes */
97 typedef enum {
98 WSExitMode,
99 WSLogoutMode,
100 WSKillMode,
101 WSRestartPreparationMode
102 } WShutdownMode;
105 /* internal buttons */
106 #define WBUT_CLOSE 0
107 #define WBUT_BROKENCLOSE 1
108 #define WBUT_ICONIFY 2
109 #define WBUT_KILL 3
110 #ifdef XKB_BUTTON_HINT
111 #define WBUT_XKBGROUP1 4
112 #define WBUT_XKBGROUP2 5
113 #define WBUT_XKBGROUP3 6
114 #define WBUT_XKBGROUP4 7
115 #define PRED_BPIXMAPS 8 /* reserved for 4 groups */
116 #else
117 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
118 #endif /* XKB_BUTTON_HINT */
120 /* cursors */
121 #define WCUR_DEFAULT 0
122 #define WCUR_NORMAL 0
123 #define WCUR_MOVE 1
124 #define WCUR_RESIZE 2
125 #define WCUR_TOPLEFTRESIZE 3
126 #define WCUR_TOPRIGHTRESIZE 4
127 #define WCUR_BOTTOMLEFTRESIZE 5
128 #define WCUR_BOTTOMRIGHTRESIZE 6
129 #define WCUR_VERTICALRESIZE 7
130 #define WCUR_HORIZONRESIZE 8
131 #define WCUR_WAIT 9
132 #define WCUR_ARROW 10
133 #define WCUR_QUESTION 11
134 #define WCUR_TEXT 12
135 #define WCUR_SELECT 13
136 #define WCUR_ROOT 14
137 #define WCUR_LAST 15
139 /* geometry displays */
140 #define WDIS_NEW 0 /* new style */
141 #define WDIS_CENTER 1 /* center of screen */
142 #define WDIS_TOPLEFT 2 /* top left corner of screen */
143 #define WDIS_FRAME_CENTER 3 /* center of the frame */
146 /* keyboard input focus mode */
147 #define WKF_CLICK 0
148 #define WKF_POINTER 1
149 #define WKF_SLOPPY 2
151 /* window placement mode */
152 #define WPM_MANUAL 0
153 #define WPM_CASCADE 1
154 #define WPM_SMART 2
155 #define WPM_RANDOM 3
156 #define WPM_AUTO 4
158 /* text justification */
159 #define WTJ_CENTER 0
160 #define WTJ_LEFT 1
161 #define WTJ_RIGHT 2
163 /* iconification styles */
164 #define WIS_ZOOM 0
165 #define WIS_TWIST 1
166 #define WIS_FLIP 2
167 #define WIS_NONE 3
168 #define WIS_RANDOM 4 /* secret */
170 /* switchmenu actions */
171 #define ACTION_ADD 0
172 #define ACTION_REMOVE 1
173 #define ACTION_CHANGE 2
174 #define ACTION_CHANGE_WORKSPACE 3
175 #define ACTION_CHANGE_STATE 4
178 /* speeds */
179 #define SPEED_ULTRAFAST 0
180 #define SPEED_FAST 1
181 #define SPEED_MEDIUM 2
182 #define SPEED_SLOW 3
183 #define SPEED_ULTRASLOW 4
186 /* window states */
187 #define WS_FOCUSED 0
188 #define WS_UNFOCUSED 1
189 #define WS_PFOCUSED 2
191 /* clip title colors */
192 #define CLIP_NORMAL 0
193 #define CLIP_COLLAPSED 1
196 /* icon yard position */
197 #define IY_VERT 1
198 #define IY_HORIZ 0
199 #define IY_TOP 2
200 #define IY_BOTTOM 0
201 #define IY_RIGHT 4
202 #define IY_LEFT 0
205 /* menu styles */
206 #define MS_NORMAL 0
207 #define MS_SINGLE_TEXTURE 1
208 #define MS_FLAT 2
211 /* workspace display position */
212 #define WD_NONE 0
213 #define WD_CENTER 1
214 #define WD_TOP 2
215 #define WD_BOTTOM 3
216 #define WD_TOPLEFT 4
217 #define WD_TOPRIGHT 5
218 #define WD_BOTTOMLEFT 6
219 #define WD_BOTTOMRIGHT 7
222 /* workspace border position */
223 #define WB_NONE 0
224 #define WB_LEFTRIGHT 1
225 #define WB_TOPBOTTOM 2
226 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
229 /* program states */
230 #define WSTATE_NORMAL 0
231 #define WSTATE_NEED_EXIT 1
232 #define WSTATE_NEED_RESTART 2
233 #define WSTATE_EXITING 3
234 #define WSTATE_RESTARTING 4
235 #define WSTATE_MODAL 5
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 } flags; /* internal flags */
442 } WPreferences;
446 /****** Global Variables ******/
447 extern Display *dpy;
448 extern char *ProgName;
449 extern unsigned int ValidModMask;
450 extern char WProgramState;
452 /****** Global Functions ******/
453 extern void wAbort(Bool dumpCore);
455 #endif