fixed timerhandler cpu eater
[wmaker-crm.git] / src / WindowMaker.h
blobb5f29f113aae7a2f45951c0672302a9203d86280
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>
28 #include <limits.h>
30 #include <WINGs/WINGs.h>
32 #if defined(HAVE_LIBINTL_H) && defined(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;
58 * generic window levels (a superset of the N*XTSTEP ones)
59 * Applications should use levels between WMDesktopLevel and
60 * WMScreensaverLevel anything boyond that range is allowed,
61 * but discouraged.
63 enum {
64 WMBackLevel = INT_MIN+1, /* Very lowest level */
65 WMDesktopLevel = -1000, /* Lowest level of normal use */
66 WMSunkenLevel = -1,
67 WMNormalLevel = 0,
68 WMFloatingLevel = 3,
69 WMDockLevel = 5,
70 WMSubmenuLevel = 6,
71 WMMainMenuLevel = 20,
72 WMStatusLevel = 21,
73 WMModalLevel = 100,
74 WMPopUpLevel = 101,
75 WMScreensaverLevel = 1000,
76 WMOuterSpaceLevel = INT_MAX
80 * WObjDescriptor will be used by the event dispatcher to
81 * send events to a particular object through the methods in the
82 * method table. If all objects of the same class share the
83 * same methods, the class method table should be used, otherwise
84 * a new method table must be created for each object.
85 * It is also assigned to find the parent structure of a given
86 * window (like the WWindow or WMenu for a button)
89 typedef struct WObjDescriptor {
90 void *self; /* the object that will be called */
91 /* event handlers */
92 void (*handle_expose)(struct WObjDescriptor *sender, XEvent *event);
94 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
96 void (*handle_anything)(struct WObjDescriptor *sender, XEvent *event);
98 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
99 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
101 WClassType parent_type; /* type code of the parent */
102 void *parent; /* parent object (WWindow or WMenu) */
103 } WObjDescriptor;
106 /* shutdown modes */
107 typedef enum {
108 WSExitMode,
109 WSLogoutMode,
110 WSKillMode,
111 WSRestartPreparationMode
112 } WShutdownMode;
115 /* internal buttons */
116 #define WBUT_CLOSE 0
117 #define WBUT_BROKENCLOSE 1
118 #define WBUT_ICONIFY 2
119 #define WBUT_KILL 3
120 #ifdef XKB_BUTTON_HINT
121 #define WBUT_XKBGROUP1 4
122 #define WBUT_XKBGROUP2 5
123 #define WBUT_XKBGROUP3 6
124 #define WBUT_XKBGROUP4 7
125 #define PRED_BPIXMAPS 8 /* reserved for 4 groups */
126 #else
127 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
128 #endif /* XKB_BUTTON_HINT */
130 /* cursors */
131 #define WCUR_DEFAULT 0
132 #define WCUR_NORMAL 0
133 #define WCUR_MOVE 1
134 #define WCUR_RESIZE 2
135 #define WCUR_TOPLEFTRESIZE 3
136 #define WCUR_TOPRIGHTRESIZE 4
137 #define WCUR_BOTTOMLEFTRESIZE 5
138 #define WCUR_BOTTOMRIGHTRESIZE 6
139 #define WCUR_VERTICALRESIZE 7
140 #define WCUR_HORIZONRESIZE 8
141 #define WCUR_WAIT 9
142 #define WCUR_ARROW 10
143 #define WCUR_QUESTION 11
144 #define WCUR_TEXT 12
145 #define WCUR_SELECT 13
146 #define WCUR_ROOT 14
147 #define WCUR_LAST 15
149 /* geometry displays */
150 #define WDIS_NEW 0 /* new style */
151 #define WDIS_CENTER 1 /* center of screen */
152 #define WDIS_TOPLEFT 2 /* top left corner of screen */
153 #define WDIS_FRAME_CENTER 3 /* center of the frame */
156 /* keyboard input focus mode */
157 #define WKF_CLICK 0
158 #define WKF_POINTER 1
159 #define WKF_SLOPPY 2
161 /* window placement mode */
162 #define WPM_MANUAL 0
163 #define WPM_CASCADE 1
164 #define WPM_SMART 2
165 #define WPM_RANDOM 3
166 #define WPM_AUTO 4
168 /* text justification */
169 #define WTJ_CENTER 0
170 #define WTJ_LEFT 1
171 #define WTJ_RIGHT 2
173 /* iconification styles */
174 #define WIS_ZOOM 0
175 #define WIS_TWIST 1
176 #define WIS_FLIP 2
177 #define WIS_NONE 3
178 #define WIS_RANDOM 4 /* secret */
180 /* switchmenu actions */
181 #define ACTION_ADD 0
182 #define ACTION_REMOVE 1
183 #define ACTION_CHANGE 2
184 #define ACTION_CHANGE_WORKSPACE 3
185 #define ACTION_CHANGE_STATE 4
188 /* speeds */
189 #define SPEED_ULTRAFAST 0
190 #define SPEED_FAST 1
191 #define SPEED_MEDIUM 2
192 #define SPEED_SLOW 3
193 #define SPEED_ULTRASLOW 4
196 /* window states */
197 #define WS_FOCUSED 0
198 #define WS_UNFOCUSED 1
199 #define WS_PFOCUSED 2
201 /* clip title colors */
202 #define CLIP_NORMAL 0
203 #define CLIP_COLLAPSED 1
206 /* icon yard position */
207 #define IY_VERT 1
208 #define IY_HORIZ 0
209 #define IY_TOP 2
210 #define IY_BOTTOM 0
211 #define IY_RIGHT 4
212 #define IY_LEFT 0
215 /* menu styles */
216 #define MS_NORMAL 0
217 #define MS_SINGLE_TEXTURE 1
218 #define MS_FLAT 2
221 /* workspace display position */
222 #define WD_NONE 0
223 #define WD_CENTER 1
224 #define WD_TOP 2
225 #define WD_BOTTOM 3
226 #define WD_TOPLEFT 4
227 #define WD_TOPRIGHT 5
228 #define WD_BOTTOMLEFT 6
229 #define WD_BOTTOMRIGHT 7
232 /* workspace border position */
233 #define WB_NONE 0
234 #define WB_LEFTRIGHT 1
235 #define WB_TOPBOTTOM 2
236 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
239 /* program states */
240 #define WSTATE_NORMAL 0
241 #define WSTATE_NEED_EXIT 1
242 #define WSTATE_NEED_RESTART 2
243 #define WSTATE_EXITING 3
244 #define WSTATE_RESTARTING 4
245 #define WSTATE_MODAL 5
246 #define WSTATE_NEED_REREAD 6
249 #define WCHECK_STATE(state) (state == WProgramState)
252 #define WCHANGE_STATE(nstate) {\
253 if (WProgramState == WSTATE_NORMAL\
254 || nstate != WSTATE_MODAL)\
255 WProgramState = (nstate); \
256 if (WProgramSigState != 0)\
257 WProgramState = WProgramSigState;\
261 /* only call inside signal handlers, with signals blocked */
262 #define SIG_WCHANGE_STATE(nstate) {\
263 WProgramSigState = (nstate);\
264 WProgramState = (nstate);\
268 /* notifications */
270 #ifdef MAINFILE
271 #define NOTIFICATION(n) char *WN##n = #n
272 #else
273 #define NOTIFICATION(n) extern char *WN##n
274 #endif
276 NOTIFICATION(WindowAppearanceSettingsChanged);
278 NOTIFICATION(IconAppearanceSettingsChanged);
280 NOTIFICATION(IconTileSettingsChanged);
282 NOTIFICATION(MenuAppearanceSettingsChanged);
284 NOTIFICATION(MenuTitleAppearanceSettingsChanged);
287 /* appearance settings clientdata flags */
288 enum {
289 WFontSettings = 1 << 0,
290 WTextureSettings = 1 << 1,
291 WColorSettings = 1 << 2
296 typedef struct {
297 int x1, y1;
298 int x2, y2;
299 } WArea;
301 typedef struct WCoord {
302 int x, y;
303 } WCoord;
305 typedef struct WPreferences {
306 char *pixmap_path; /* : separate list of */
307 /* paths to find pixmaps */
308 char *icon_path; /* : separated list of */
309 /* paths to find icons */
311 char *logger_shell; /* shell to log child stdi/o */
313 RImage *button_images; /* titlebar button images */
315 char smooth_workspace_back;
316 signed char size_display; /* display type for resize geometry */
317 signed char move_display; /* display type for move geometry */
318 signed char window_placement; /* window placement mode */
319 signed char colormap_mode; /* colormap focus mode */
320 signed char focus_mode; /* window focusing mode */
322 char opaque_move; /* update window position during */
323 /* move */
325 char wrap_menus; /* wrap menus at edge of screen */
326 char scrollable_menus; /* let them be scrolled */
327 char align_menus; /* align menu with their parents */
329 char use_saveunders; /* turn on SaveUnders for menus,
330 * icons etc. */
331 char no_window_over_dock;
333 char no_window_over_icons;
335 WCoord window_place_origin; /* Offset for windows placed on
336 * screen */
338 char constrain_window_size; /* don't let windows get bigger than
339 * screen */
341 char windows_cycling; /* windoze cycling */
342 char circ_raise; /* raise window after Alt-tabbing */
344 char ignore_focus_click;
346 char open_transients_with_parent; /* open transient window in
347 same workspace as parent */
348 signed char title_justification; /* titlebar text alignment */
350 int window_title_clearance;
351 int menu_title_clearance;
352 int menu_text_clearance;
354 char multi_byte_text;
355 #ifdef KEEP_XKB_LOCK_STATUS
356 char modelock;
357 #endif
359 char no_dithering; /* use dithering or not */
361 char no_sound; /* enable/disable sound */
362 char no_animations; /* enable/disable animations */
364 char no_autowrap; /* wrap workspace when window is moved
365 * to the edge */
367 char auto_arrange_icons; /* automagically arrange icons */
369 char icon_box_position; /* position to place icons */
371 signed char iconification_style; /* position to place icons */
373 char disable_root_mouse; /* disable button events in root window */
375 char auto_focus; /* focus window when it's mapped */
378 char *icon_back_file; /* background image for icons */
380 WCoord *root_menu_pos; /* initial position of the root menu*/
381 WCoord *app_menu_pos;
383 WCoord *win_menu_pos;
385 signed char icon_yard; /* aka iconbox */
387 int raise_delay; /* delay for autoraise. 0 is disabled */
389 int cmap_size; /* size of dithering colormap in colors
390 * per channel */
392 int icon_size; /* size of the icon */
394 signed char menu_style; /* menu decoration style */
396 signed char workspace_name_display_position;
398 unsigned int modifier_mask; /* mask to use as kbd modifier */
401 char ws_advance; /* Create new workspace and advance */
403 #ifdef VIRTUAL_DESKTOP
404 unsigned int vedge_thickness;
405 unsigned int vedge_hscrollspeed;
406 unsigned int vedge_vscrollspeed;
407 unsigned int vedge_maxheight;
408 unsigned int vedge_maxwidth;
409 #endif
411 char ws_cycle; /* Cycle existing workspaces */
413 char save_session_on_exit; /* automatically save session on exit */
415 char sticky_icons; /* If miniwindows will be onmipresent */
417 char dont_confirm_kill; /* do not confirm Kill application */
419 char disable_miniwindows;
421 char dont_blink; /* do not blink icon selection */
423 /* Appearance options */
424 char new_style; /* Use newstyle buttons */
425 char superfluous; /* Use superfluous things */
427 /* root window mouse bindings */
428 signed char select_button; /* button for window selection */
429 signed char windowl_button; /* button for window list menu */
430 signed char menu_button; /* button for app menu */
432 /* balloon text */
433 char window_balloon;
434 char miniwin_balloon;
435 char appicon_balloon;
436 char help_balloon;
438 /* some constants */
439 int dblclick_time; /* double click delay time in ms */
441 /* animate menus */
442 signed char menu_scroll_speed; /* how fast menus are scrolled */
444 /* animate icon sliding */
445 signed char icon_slide_speed; /* icon slide animation speed */
447 /* shading animation */
448 signed char shade_speed;
450 int edge_resistance;
451 char attract;
453 unsigned int workspace_border_size; /* Size in pixels of the workspace border */
454 char workspace_border_position; /* Where to leave a workspace border */
456 struct {
457 unsigned int nodock:1; /* don't display the dock */
458 unsigned int noclip:1; /* don't display the clip */
459 unsigned int nocpp:1; /* don't use cpp */
460 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
461 unsigned int noautolaunch:1; /* don't autolaunch apps */
462 unsigned int norestore:1; /* don't restore session */
463 unsigned int create_stdcmap:1; /* create std colormap */
464 unsigned int nopolling:1; /* don't poll for defaults changes */
465 } flags; /* internal flags */
466 } WPreferences;
470 /****** Global Variables ******/
471 extern Display *dpy;
472 extern char *ProgName;
473 extern unsigned int ValidModMask;
474 extern char WProgramState;
475 extern char WProgramSigState;
477 /****** Global Functions ******/
478 extern void wAbort(Bool dumpCore);
480 #endif