wmaker: Moved global var with list of cursors to the preferences variable
[wmaker-crm.git] / src / WindowMaker.h
blob6e4c0c944b404d89844755af9b1c819c5bf0f9b0
1 /*
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 along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef WINDOWMAKER_H_
22 #define WINDOWMAKER_H_
24 #include "wconfig.h"
25 #include <assert.h>
26 #include <limits.h>
27 #include <WINGs/WINGs.h>
30 /* class codes */
31 typedef enum {
32 WCLASS_UNKNOWN = 0,
33 WCLASS_WINDOW = 1, /* managed client windows */
34 WCLASS_MENU = 2, /* root menus */
35 WCLASS_APPICON = 3,
36 WCLASS_DUMMYWINDOW = 4, /* window that holds window group leader */
37 WCLASS_MINIWINDOW = 5,
38 WCLASS_DOCK_ICON = 6,
39 WCLASS_PAGER = 7,
40 WCLASS_TEXT_INPUT = 8,
41 WCLASS_FRAME = 9
42 } WClassType;
46 * generic window levels (a superset of the N*XTSTEP ones)
47 * Applications should use levels between WMDesktopLevel and
48 * WMScreensaverLevel anything boyond that range is allowed,
49 * but discouraged.
51 enum {
52 WMBackLevel = INT_MIN+1, /* Very lowest level */
53 WMDesktopLevel = -1000, /* Lowest level of normal use */
54 WMSunkenLevel = -1,
55 WMNormalLevel = 0,
56 WMFloatingLevel = 3,
57 WMDockLevel = 5,
58 WMSubmenuLevel = 15,
59 WMMainMenuLevel = 20,
60 WMStatusLevel = 21,
61 WMFullscreenLevel = 50,
62 WMModalLevel = 100,
63 WMPopUpLevel = 101,
64 WMScreensaverLevel = 1000,
65 WMOuterSpaceLevel = INT_MAX
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);
82 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
83 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
84 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
86 WClassType parent_type; /* type code of the parent */
87 void *parent; /* parent object (WWindow or WMenu) */
88 } WObjDescriptor;
90 /* internal buttons */
91 #define WBUT_CLOSE 0
92 #define WBUT_BROKENCLOSE 1
93 #define WBUT_ICONIFY 2
94 #define WBUT_KILL 3
95 #ifdef XKB_BUTTON_HINT
96 #define WBUT_XKBGROUP1 4
97 #define WBUT_XKBGROUP2 5
98 #define WBUT_XKBGROUP3 6
99 #define WBUT_XKBGROUP4 7
100 #define PRED_BPIXMAPS 8 /* reserved for 4 groups */
101 #else
102 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
103 #endif /* XKB_BUTTON_HINT */
105 /* Mouse cursors */
106 typedef enum {
107 WCUR_NORMAL,
108 WCUR_MOVE,
109 WCUR_RESIZE,
110 WCUR_TOPLEFTRESIZE,
111 WCUR_TOPRIGHTRESIZE,
112 WCUR_BOTTOMLEFTRESIZE,
113 WCUR_BOTTOMRIGHTRESIZE,
114 WCUR_VERTICALRESIZE,
115 WCUR_HORIZONRESIZE,
116 WCUR_WAIT,
117 WCUR_ARROW,
118 WCUR_QUESTION,
119 WCUR_TEXT,
120 WCUR_SELECT,
121 WCUR_ROOT,
122 WCUR_EMPTY,
124 /* Count of the number of cursors defined */
125 WCUR_LAST,
127 /* Alias for the Default cursor */
128 WCUR_DEFAULT = WCUR_NORMAL
129 } w_cursor;
131 /* geometry displays */
132 #define WDIS_NEW 0 /* new style */
133 #define WDIS_CENTER 1 /* center of screen */
134 #define WDIS_TOPLEFT 2 /* top left corner of screen */
135 #define WDIS_FRAME_CENTER 3 /* center of the frame */
136 #define WDIS_NONE 4
138 /* keyboard input focus mode */
139 #define WKF_CLICK 0
140 #define WKF_SLOPPY 2
142 /* colormap change mode */
143 #define WCM_CLICK 0
144 #define WCM_POINTER 1
146 /* window placement mode */
147 #define WPM_MANUAL 0
148 #define WPM_CASCADE 1
149 #define WPM_SMART 2
150 #define WPM_RANDOM 3
151 #define WPM_AUTO 4
152 #define WPM_CENTER 5
154 /* text justification */
155 #define WTJ_CENTER 0
156 #define WTJ_LEFT 1
157 #define WTJ_RIGHT 2
159 /* iconification styles */
160 #define WIS_ZOOM 0
161 #define WIS_TWIST 1
162 #define WIS_FLIP 2
163 #define WIS_NONE 3
164 #define WIS_RANDOM 4 /* secret */
166 /* switchmenu actions */
167 #define ACTION_ADD 0
168 #define ACTION_REMOVE 1
169 #define ACTION_CHANGE 2
170 #define ACTION_CHANGE_WORKSPACE 3
171 #define ACTION_CHANGE_STATE 4
174 /* speeds */
175 #define SPEED_ULTRAFAST 0
176 #define SPEED_FAST 1
177 #define SPEED_MEDIUM 2
178 #define SPEED_SLOW 3
179 #define SPEED_ULTRASLOW 4
182 /* window states */
183 #define WS_FOCUSED 0
184 #define WS_UNFOCUSED 1
185 #define WS_PFOCUSED 2
187 /* clip title colors */
188 #define CLIP_NORMAL 0
189 #define CLIP_COLLAPSED 1
192 /* icon yard position */
193 #define IY_VERT 1
194 #define IY_HORIZ 0
195 #define IY_TOP 2
196 #define IY_BOTTOM 0
197 #define IY_RIGHT 4
198 #define IY_LEFT 0
201 /* menu styles */
202 #define MS_NORMAL 0
203 #define MS_SINGLE_TEXTURE 1
204 #define MS_FLAT 2
206 /* workspace actions */
207 #define WA_NONE 0
208 #define WA_SELECT_WINDOWS 1
209 #define WA_OPEN_APPMENU 2
210 #define WA_OPEN_WINLISTMENU 3
211 #define WA_SWITCH_WORKSPACES 4
213 /* workspace display position */
214 #define WD_NONE 0
215 #define WD_CENTER 1
216 #define WD_TOP 2
217 #define WD_BOTTOM 3
218 #define WD_TOPLEFT 4
219 #define WD_TOPRIGHT 5
220 #define WD_BOTTOMLEFT 6
221 #define WD_BOTTOMRIGHT 7
223 /* titlebar style */
224 #define TS_NEW 0
225 #define TS_OLD 1
226 #define TS_NEXT 2
228 /* workspace border position */
229 #define WB_NONE 0
230 #define WB_LEFTRIGHT 1
231 #define WB_TOPBOTTOM 2
232 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
235 /* program states */
236 typedef enum {
237 WSTATE_NORMAL = 0,
238 WSTATE_NEED_EXIT = 1,
239 WSTATE_NEED_RESTART = 2,
240 WSTATE_EXITING = 3,
241 WSTATE_RESTARTING = 4,
242 WSTATE_MODAL = 5,
243 WSTATE_NEED_REREAD = 6
244 } wprog_state;
247 #define WCHECK_STATE(chk_state) (w_global.program.state == (chk_state))
250 #define WCHANGE_STATE(nstate) {\
251 if (w_global.program.state == WSTATE_NORMAL\
252 || (nstate) != WSTATE_MODAL) \
253 w_global.program.state = (nstate); \
254 if (w_global.program.signal_state != 0)\
255 w_global.program.state = w_global.program.signal_state;\
259 /* only call inside signal handlers, with signals blocked */
260 #define SIG_WCHANGE_STATE(nstate) {\
261 w_global.program.signal_state = (nstate);\
262 w_global.program.state = (nstate);\
266 /* Flags for the Window Maker state when restarting/crash situations */
267 #define WFLAGS_NONE (0)
268 #define WFLAGS_CRASHED (1<<0)
271 /* notifications */
273 #ifdef MAINFILE
274 #define NOTIFICATION(n) const char WN##n [] = #n
275 #else
276 #define NOTIFICATION(n) extern const char WN##n []
277 #endif
279 NOTIFICATION(WindowAppearanceSettingsChanged);
281 NOTIFICATION(IconAppearanceSettingsChanged);
283 NOTIFICATION(IconTileSettingsChanged);
285 NOTIFICATION(MenuAppearanceSettingsChanged);
287 NOTIFICATION(MenuTitleAppearanceSettingsChanged);
290 /* appearance settings clientdata flags */
291 enum {
292 WFontSettings = 1 << 0,
293 WTextureSettings = 1 << 1,
294 WColorSettings = 1 << 2
299 typedef struct {
300 int x1, y1;
301 int x2, y2;
302 } WArea;
304 typedef struct WCoord {
305 int x, y;
306 } WCoord;
308 extern struct WPreferences {
309 char *pixmap_path; /* : separated list of paths to find pixmaps */
310 char *icon_path; /* : separated list of paths to find icons */
311 WMArray *fallbackWMs; /* fallback window manager list */
312 char *logger_shell; /* shell to log child stdi/o */
313 RImage *button_images; /* titlebar button images */
314 char smooth_workspace_back;
315 signed char size_display; /* display type for resize geometry */
316 signed char move_display; /* display type for move geometry */
317 signed char window_placement; /* window placement mode */
318 signed char colormap_mode; /* colormap focus mode */
319 signed char focus_mode; /* window focusing mode */
321 char opaque_move; /* update window position during move */
322 char opaque_resize; /* update window position during resize */
323 char opaque_move_resize_keyboard; /* update window position during move,resize with keyboard */
324 char wrap_menus; /* wrap menus at edge of screen */
325 char scrollable_menus; /* let them be scrolled */
326 char vi_key_menus; /* use h/j/k/l to select */
327 char align_menus; /* align menu with their parents */
328 char use_saveunders; /* turn on SaveUnders for menus, icons etc. */
329 char no_window_over_dock;
330 char no_window_over_icons;
331 WCoord window_place_origin; /* Offset for windows placed on screen */
333 char constrain_window_size; /* don't let windows get bigger than screen */
334 char windows_cycling; /* windoze cycling */
335 char circ_raise; /* raise window after Alt-tabbing */
336 char ignore_focus_click;
337 char open_transients_with_parent; /* open transient window in same workspace as parent */
338 signed char title_justification; /* titlebar text alignment */
339 int window_title_clearance;
340 int window_title_min_height;
341 int window_title_max_height;
342 int menu_title_clearance;
343 int menu_title_min_height;
344 int menu_title_max_height;
345 int menu_text_clearance;
346 char multi_byte_text;
347 #ifdef KEEP_XKB_LOCK_STATUS
348 char modelock;
349 #endif
350 char no_dithering; /* use dithering or not */
351 char no_animations; /* enable/disable animations */
352 char no_autowrap; /* wrap workspace when window is moved to the edge */
354 char highlight_active_app; /* show the focused app by highlighting its icon */
355 char auto_arrange_icons; /* automagically arrange icons */
356 char icon_box_position; /* position to place icons */
357 signed char iconification_style; /* position to place icons */
358 char disable_root_mouse; /* disable button events in root window */
359 char auto_focus; /* focus window when it's mapped */
360 char *icon_back_file; /* background image for icons */
362 WCoord *root_menu_pos; /* initial position of the root menu*/
363 WCoord *app_menu_pos;
364 WCoord *win_menu_pos;
366 signed char icon_yard; /* aka iconbox */
368 int raise_delay; /* delay for autoraise. 0 is disabled */
369 int cmap_size; /* size of dithering colormap in colors per channel */
371 int icon_size; /* size of the icon */
372 signed char menu_style; /* menu decoration style */
373 signed char workspace_name_display_position;
374 unsigned int modifier_mask; /* mask to use as kbd modifier */
375 char *modifier_labels[7]; /* Names of the modifiers */
377 unsigned int supports_tiff; /* Use tiff files */
379 char ws_advance; /* Create new workspace and advance */
380 char ws_cycle; /* Cycle existing workspaces */
381 char save_session_on_exit; /* automatically save session on exit */
382 char sticky_icons; /* If miniwindows will be onmipresent */
383 char dont_confirm_kill; /* do not confirm Kill application */
384 char disable_miniwindows;
385 char dont_blink; /* do not blink icon selection */
387 /* Appearance options */
388 char new_style; /* Use newstyle buttons */
389 char superfluous; /* Use superfluous things */
391 /* root window mouse bindings */
392 signed char mouse_button1; /* action for left mouse button */
393 signed char mouse_button2; /* action for middle mouse button */
394 signed char mouse_button3; /* action for right mouse button */
395 signed char mouse_wheel; /* action for mouse wheel */
397 /* balloon text */
398 char window_balloon;
399 char miniwin_balloon;
400 char appicon_balloon;
401 char help_balloon;
403 /* some constants */
404 int dblclick_time; /* double click delay time in ms */
406 /* animate menus */
407 signed char menu_scroll_speed; /* how fast menus are scrolled */
409 /* animate icon sliding */
410 signed char icon_slide_speed; /* icon slide animation speed */
412 /* shading animation */
413 signed char shade_speed;
415 /* bouncing animation */
416 char bounce_appicons_when_urgent;
417 char raise_appicons_when_bouncing;
418 char do_not_make_appicons_bounce;
420 int edge_resistance;
421 int resize_increment;
422 char attract;
424 unsigned int workspace_border_size; /* Size in pixels of the workspace border */
425 char workspace_border_position; /* Where to leave a workspace border */
426 char single_click; /* single click to lauch applications */
427 int history_lines; /* history of "Run..." dialog */
428 char cycle_active_head_only; /* Cycle only windows on the active head */
429 char cycle_ignore_minimized; /* Ignore minimized windows when cycling */
430 char strict_windoze_cycle; /* don't close switchpanel when shift is released */
431 char panel_only_open; /* Only open the switchpanel; don't switch */
433 /* All delays here are in ms. 0 means instant auto-action. */
434 int clip_auto_raise_delay; /* Delay after which the clip will be raised when entered */
435 int clip_auto_lower_delay; /* Delay after which the clip will be lowered when leaved */
436 int clip_auto_expand_delay; /* Delay after which the clip will expand when entered */
437 int clip_auto_collapse_delay; /* Delay after which the clip will collapse when leaved */
439 RImage *swtileImage;
440 RImage *swbackImage[9];
442 int show_clip_title;
444 struct {
445 unsigned int nodock:1; /* don't display the dock */
446 unsigned int noclip:1; /* don't display the clip */
447 unsigned int clip_merged_in_dock:1; /* disable clip, dock gets its workspace switching functionality */
448 unsigned int nodrawer:1; /* don't use drawers */
449 unsigned int wrap_appicons_in_dock:1; /* Whether to wrap appicons when Dock is moved up and down */
450 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
451 unsigned int noautolaunch:1; /* don't autolaunch apps */
452 unsigned int norestore:1; /* don't restore session */
453 #ifndef HAVE_INOTIFY
454 unsigned int nopolling:1; /* don't poll the defaults database for changes */
455 #endif
456 unsigned int restarting:2;
457 } flags; /* internal flags */
459 /* Map table between w_cursor and actual X id */
460 Cursor cursor[WCUR_LAST];
462 } wPreferences;
464 /****** Global Variables ******/
465 extern Display *dpy;
467 extern struct wmaker_global_variables {
468 /* Tracking of the state of the program */
469 struct {
470 wprog_state state;
471 wprog_state signal_state;
472 } program;
474 /* locale to use. NULL==POSIX or C */
475 const char *locale;
477 /* Tracking of X events timestamps */
478 struct {
479 /* ts of the last event we received */
480 Time last_event;
482 /* ts on the last time we did XSetInputFocus() */
483 Time focus_change;
485 } timestamp;
487 } w_global;
489 extern unsigned int ValidModMask;
491 /****** Notifications ******/
492 extern const char WMNManaged[];
493 extern const char WMNUnmanaged[];
494 extern const char WMNChangedWorkspace[];
495 extern const char WMNChangedState[];
496 extern const char WMNChangedFocus[];
497 extern const char WMNChangedStacking[];
498 extern const char WMNChangedName[];
500 extern const char WMNWorkspaceCreated[];
501 extern const char WMNWorkspaceDestroyed[];
502 extern const char WMNWorkspaceChanged[];
503 extern const char WMNWorkspaceNameChanged[];
505 extern const char WMNResetStacking[];
507 #endif