New titlebar button style
[wmaker-crm.git] / src / WindowMaker.h
blob301e033392e484baf31946a095645bb44f86d202
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
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"
26 #include <assert.h>
27 #include <limits.h>
28 #include <WINGs/WINGs.h>
31 /* class codes */
32 typedef enum {
33 WCLASS_UNKNOWN = 0,
34 WCLASS_WINDOW = 1, /* managed client windows */
35 WCLASS_MENU = 2, /* root menus */
36 WCLASS_APPICON = 3,
37 WCLASS_DUMMYWINDOW = 4, /* window that holds window group leader */
38 WCLASS_MINIWINDOW = 5,
39 WCLASS_DOCK_ICON = 6,
40 WCLASS_PAGER = 7,
41 WCLASS_TEXT_INPUT = 8,
42 WCLASS_FRAME = 9
43 } WClassType;
47 * generic window levels (a superset of the N*XTSTEP ones)
48 * Applications should use levels between WMDesktopLevel and
49 * WMScreensaverLevel anything boyond that range is allowed,
50 * but discouraged.
52 enum {
53 WMBackLevel = INT_MIN+1, /* Very lowest level */
54 WMDesktopLevel = -1000, /* Lowest level of normal use */
55 WMSunkenLevel = -1,
56 WMNormalLevel = 0,
57 WMFloatingLevel = 3,
58 WMDockLevel = 5,
59 WMSubmenuLevel = 15,
60 WMMainMenuLevel = 20,
61 WMStatusLevel = 21,
62 WMFullscreenLevel = 50,
63 WMModalLevel = 100,
64 WMPopUpLevel = 101,
65 WMScreensaverLevel = 1000,
66 WMOuterSpaceLevel = INT_MAX
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_EMPTY 15
138 #define WCUR_LAST 16
140 /* geometry displays */
141 #define WDIS_NEW 0 /* new style */
142 #define WDIS_CENTER 1 /* center of screen */
143 #define WDIS_TOPLEFT 2 /* top left corner of screen */
144 #define WDIS_FRAME_CENTER 3 /* center of the frame */
145 #define WDIS_NONE 4
147 /* keyboard input focus mode */
148 #define WKF_CLICK 0
149 #define WKF_SLOPPY 2
151 /* colormap change mode */
152 #define WCM_CLICK 0
153 #define WCM_POINTER 1
155 /* window placement mode */
156 #define WPM_MANUAL 0
157 #define WPM_CASCADE 1
158 #define WPM_SMART 2
159 #define WPM_RANDOM 3
160 #define WPM_AUTO 4
162 /* text justification */
163 #define WTJ_CENTER 0
164 #define WTJ_LEFT 1
165 #define WTJ_RIGHT 2
167 /* iconification styles */
168 #define WIS_ZOOM 0
169 #define WIS_TWIST 1
170 #define WIS_FLIP 2
171 #define WIS_NONE 3
172 #define WIS_RANDOM 4 /* secret */
174 /* switchmenu actions */
175 #define ACTION_ADD 0
176 #define ACTION_REMOVE 1
177 #define ACTION_CHANGE 2
178 #define ACTION_CHANGE_WORKSPACE 3
179 #define ACTION_CHANGE_STATE 4
182 /* speeds */
183 #define SPEED_ULTRAFAST 0
184 #define SPEED_FAST 1
185 #define SPEED_MEDIUM 2
186 #define SPEED_SLOW 3
187 #define SPEED_ULTRASLOW 4
190 /* window states */
191 #define WS_FOCUSED 0
192 #define WS_UNFOCUSED 1
193 #define WS_PFOCUSED 2
195 /* clip title colors */
196 #define CLIP_NORMAL 0
197 #define CLIP_COLLAPSED 1
200 /* icon yard position */
201 #define IY_VERT 1
202 #define IY_HORIZ 0
203 #define IY_TOP 2
204 #define IY_BOTTOM 0
205 #define IY_RIGHT 4
206 #define IY_LEFT 0
209 /* menu styles */
210 #define MS_NORMAL 0
211 #define MS_SINGLE_TEXTURE 1
212 #define MS_FLAT 2
214 /* workspace actions */
215 #define WA_NONE 0
216 #define WA_SELECT_WINDOWS 1
217 #define WA_OPEN_APPMENU 2
218 #define WA_OPEN_WINLISTMENU 3
219 #define WA_SWITCH_WORKSPACES 4
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
231 /* titlebar style */
232 #define TS_NEW 0
233 #define TS_OLD 1
234 #define TS_NEXT 2
236 /* workspace border position */
237 #define WB_NONE 0
238 #define WB_LEFTRIGHT 1
239 #define WB_TOPBOTTOM 2
240 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
243 /* program states */
244 #define WSTATE_NORMAL 0
245 #define WSTATE_NEED_EXIT 1
246 #define WSTATE_NEED_RESTART 2
247 #define WSTATE_EXITING 3
248 #define WSTATE_RESTARTING 4
249 #define WSTATE_MODAL 5
250 #define WSTATE_NEED_REREAD 6
253 #define WCHECK_STATE(state) (state == WProgramState)
256 #define WCHANGE_STATE(nstate) {\
257 if (WProgramState == WSTATE_NORMAL\
258 || nstate != WSTATE_MODAL)\
259 WProgramState = (nstate); \
260 if (WProgramSigState != 0)\
261 WProgramState = WProgramSigState;\
265 /* only call inside signal handlers, with signals blocked */
266 #define SIG_WCHANGE_STATE(nstate) {\
267 WProgramSigState = (nstate);\
268 WProgramState = (nstate);\
272 /* Flags for the Window Maker state when restarting/crash situations */
273 #define WFLAGS_NONE (0)
274 #define WFLAGS_CRASHED (1<<0)
277 /* notifications */
279 #ifdef MAINFILE
280 #define NOTIFICATION(n) char *WN##n = #n
281 #else
282 #define NOTIFICATION(n) extern char *WN##n
283 #endif
285 NOTIFICATION(WindowAppearanceSettingsChanged);
287 NOTIFICATION(IconAppearanceSettingsChanged);
289 NOTIFICATION(IconTileSettingsChanged);
291 NOTIFICATION(MenuAppearanceSettingsChanged);
293 NOTIFICATION(MenuTitleAppearanceSettingsChanged);
296 /* appearance settings clientdata flags */
297 enum {
298 WFontSettings = 1 << 0,
299 WTextureSettings = 1 << 1,
300 WColorSettings = 1 << 2
305 typedef struct {
306 int x1, y1;
307 int x2, y2;
308 } WArea;
310 typedef struct WCoord {
311 int x, y;
312 } WCoord;
314 typedef struct WPreferences {
315 char *pixmap_path; /* : separated list of paths to find pixmaps */
316 char *icon_path; /* : separated list of paths to find icons */
317 WMArray *fallbackWMs; /* fallback window manager list */
318 char *logger_shell; /* shell to log child stdi/o */
319 RImage *button_images; /* titlebar button images */
320 char smooth_workspace_back;
321 signed char size_display; /* display type for resize geometry */
322 signed char move_display; /* display type for move geometry */
323 signed char window_placement; /* window placement mode */
324 signed char colormap_mode; /* colormap focus mode */
325 signed char focus_mode; /* window focusing mode */
327 char opaque_move; /* update window position during move */
328 char wrap_menus; /* wrap menus at edge of screen */
329 char scrollable_menus; /* let them be scrolled */
330 char align_menus; /* align menu with their parents */
331 char use_saveunders; /* turn on SaveUnders for menus, icons etc. */
332 char no_window_over_dock;
333 char no_window_over_icons;
334 WCoord window_place_origin; /* Offset for windows placed on screen */
336 char constrain_window_size; /* don't let windows get bigger than screen */
337 char windows_cycling; /* windoze cycling */
338 char circ_raise; /* raise window after Alt-tabbing */
339 char ignore_focus_click;
340 char open_transients_with_parent; /* open transient window in same workspace as parent */
341 signed char title_justification; /* titlebar text alignment */
342 int window_title_clearance;
343 int menu_title_clearance;
344 int menu_text_clearance;
345 char multi_byte_text;
346 #ifdef KEEP_XKB_LOCK_STATUS
347 char modelock;
348 #endif
349 char no_dithering; /* use dithering or not */
350 char no_animations; /* enable/disable animations */
351 char no_autowrap; /* wrap workspace when window is moved
352 * to the edge */
354 char auto_arrange_icons; /* automagically arrange icons */
355 char icon_box_position; /* position to place icons */
356 signed char iconification_style; /* position to place icons */
357 char disable_root_mouse; /* disable button events in root window */
358 char auto_focus; /* focus window when it's mapped */
359 char *icon_back_file; /* background image for icons */
361 WCoord *root_menu_pos; /* initial position of the root menu*/
362 WCoord *app_menu_pos;
363 WCoord *win_menu_pos;
365 signed char icon_yard; /* aka iconbox */
367 int raise_delay; /* delay for autoraise. 0 is disabled */
368 int cmap_size; /* size of dithering colormap in colors per channel */
370 int icon_size; /* size of the icon */
371 signed char menu_style; /* menu decoration style */
372 signed char workspace_name_display_position;
373 unsigned int modifier_mask; /* mask to use as kbd modifier */
376 char ws_advance; /* Create new workspace and advance */
377 char ws_cycle; /* Cycle existing workspaces */
378 char save_session_on_exit; /* automatically save session on exit */
379 char sticky_icons; /* If miniwindows will be onmipresent */
380 char dont_confirm_kill; /* do not confirm Kill application */
381 char disable_miniwindows;
382 char dont_blink; /* do not blink icon selection */
384 /* Appearance options */
385 char new_style; /* Use newstyle buttons */
386 char superfluous; /* Use superfluous things */
388 /* root window mouse bindings */
389 signed char mouse_button1; /* action for left mouse button */
390 signed char mouse_button2; /* action for middle mouse button */
391 signed char mouse_button3; /* action for right mouse button */
392 signed char mouse_wheel; /* action for mouse wheel */
394 /* balloon text */
395 char window_balloon;
396 char miniwin_balloon;
397 char appicon_balloon;
398 char help_balloon;
400 /* some constants */
401 int dblclick_time; /* double click delay time in ms */
403 /* animate menus */
404 signed char menu_scroll_speed; /* how fast menus are scrolled */
406 /* animate icon sliding */
407 signed char icon_slide_speed; /* icon slide animation speed */
409 /* shading animation */
410 signed char shade_speed;
412 int edge_resistance;
413 int resize_increment;
414 char attract;
416 unsigned int workspace_border_size; /* Size in pixels of the workspace border */
417 char workspace_border_position; /* Where to leave a workspace border */
418 char single_click; /* single click to lauch applications */
419 int history_lines; /* history of "Run..." dialog */
420 char cycle_active_head_only; /* Cycle only windows on the active head */
422 RImage *swtileImage;
423 RImage *swbackImage[9];
425 struct {
426 unsigned int nodock:1; /* don't display the dock */
427 unsigned int noclip:1; /* don't display the clip */
428 unsigned int nocpp:1; /* don't use cpp */
429 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
430 unsigned int noautolaunch:1; /* don't autolaunch apps */
431 unsigned int norestore:1; /* don't restore session */
432 unsigned int create_stdcmap:1; /* create std colormap */
433 #ifndef HAVE_INOTIFY
434 unsigned int nopolling:1; /* don't poll the defaults database for changes */
435 #endif
436 unsigned int restarting:2;
437 } flags; /* internal flags */
438 } WPreferences;
442 /****** Global Variables ******/
443 extern Display *dpy;
444 extern char *ProgName;
445 extern unsigned int ValidModMask;
446 extern char WProgramState;
447 extern char WProgramSigState;
450 /****** Global Functions ******/
451 extern void wAbort(Bool dumpCore);
454 /****** Notifications ******/
455 extern const char *WMNManaged;
456 extern const char *WMNUnmanaged;
457 extern const char *WMNChangedWorkspace;
458 extern const char *WMNChangedState;
459 extern const char *WMNChangedFocus;
460 extern const char *WMNChangedStacking;
461 extern const char *WMNChangedName;
463 extern const char *WMNWorkspaceCreated;
464 extern const char *WMNWorkspaceDestroyed;
465 extern const char *WMNWorkspaceChanged;
466 extern const char *WMNWorkspaceNameChanged;
468 extern const char *WMNResetStacking;
469 #endif