fixed cosmetic bug in geom. dpy window for 8bpp
[wmaker-crm.git] / src / WindowMaker.h
blob5a94c7a8cb7e1440f3ac98365bd352c0af0c7b33
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
68 #define MAX_WINDOW_LEVELS 8
71 * WObjDescriptor will be used by the event dispatcher to
72 * send events to a particular object through the methods in the
73 * method table. If all objects of the same class share the
74 * same methods, the class method table should be used, otherwise
75 * a new method table must be created for each object.
76 * It is also assigned to find the parent structure of a given
77 * window (like the WWindow or WMenu for a button)
80 typedef struct WObjDescriptor {
81 void *self; /* the object that will be called */
82 /* event handlers */
83 void (*handle_expose)(struct WObjDescriptor *sender, XEvent *event);
85 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
87 void (*handle_anything)(struct WObjDescriptor *sender, XEvent *event);
89 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
90 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
92 WClassType parent_type; /* type code of the parent */
93 void *parent; /* parent object (WWindow or WMenu) */
94 } WObjDescriptor;
97 /* shutdown modes */
98 typedef enum {
99 WSExitMode,
100 WSLogoutMode,
101 WSKillMode,
102 WSRestartPreparationMode
103 } WShutdownMode;
106 /* internal buttons */
107 #define WBUT_CLOSE 0
108 #define WBUT_BROKENCLOSE 1
109 #define WBUT_ICONIFY 2
110 #define WBUT_KILL 3
111 #ifdef XKB_BUTTON_HINT
112 #define WBUT_XKBGROUP1 4
113 #define WBUT_XKBGROUP2 5
114 #define WBUT_XKBGROUP3 6
115 #define WBUT_XKBGROUP4 7
116 #define PRED_BPIXMAPS 8 /* reserved for 4 groups */
117 #else
118 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
119 #endif /* XKB_BUTTON_HINT */
121 /* cursors */
122 #define WCUR_DEFAULT 0
123 #define WCUR_NORMAL 0
124 #define WCUR_MOVE 1
125 #define WCUR_RESIZE 2
126 #define WCUR_WAIT 3
127 #define WCUR_ARROW 4
128 #define WCUR_QUESTION 5
129 #define WCUR_TEXT 6
130 #define WCUR_LAST 7
133 /* geometry displays */
134 #define WDIS_NEW 0 /* new style */
135 #define WDIS_CENTER 1 /* center of screen */
136 #define WDIS_TOPLEFT 2 /* top left corner of screen */
137 #define WDIS_FRAME_CENTER 3 /* center of the frame */
140 /* keyboard input focus mode */
141 #define WKF_CLICK 0
142 #define WKF_POINTER 1
143 #define WKF_SLOPPY 2
145 /* window placement mode */
146 #define WPM_MANUAL 0
147 #define WPM_CASCADE 1
148 #define WPM_SMART 2
149 #define WPM_RANDOM 3
151 /* text justification */
152 #define WTJ_CENTER 0
153 #define WTJ_LEFT 1
154 #define WTJ_RIGHT 2
156 /* iconification styles */
157 #define WIS_ZOOM 0
158 #define WIS_TWIST 1
159 #define WIS_FLIP 2
160 #define WIS_NONE 3
161 #define WIS_RANDOM 4 /* secret */
163 /* switchmenu actions */
164 #define ACTION_ADD 0
165 #define ACTION_REMOVE 1
166 #define ACTION_CHANGE 2
167 #define ACTION_CHANGE_WORKSPACE 3
168 #define ACTION_CHANGE_STATE 4
171 /* speeds */
172 #define SPEED_ULTRAFAST 0
173 #define SPEED_FAST 1
174 #define SPEED_MEDIUM 2
175 #define SPEED_SLOW 3
176 #define SPEED_ULTRASLOW 4
179 /* window states */
180 #define WS_FOCUSED 0
181 #define WS_UNFOCUSED 1
182 #define WS_PFOCUSED 2
183 #ifdef TITLE_TEXT_SHADOW
184 #define WS_SMENU 3
185 #define WS_SFOCUSED 3
186 #define WS_SUNFOCUSED 4
187 #define WS_SPFOCUSED 5
188 #endif /* TITLE_TEXT_SHADOW */
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 /* program states */
222 #define WSTATE_NORMAL 0
223 #define WSTATE_NEED_EXIT 1
224 #define WSTATE_NEED_RESTART 2
225 #define WSTATE_EXITING 3
226 #define WSTATE_RESTARTING 4
227 #define WSTATE_MODAL 5
230 #define WCHECK_STATE(state) (state == WProgramState)
231 #define WCHANGE_STATE(nstate) \
232 if (WProgramState == WSTATE_NORMAL\
233 || nstate != WSTATE_MODAL)\
234 WProgramState = (nstate)
237 /* notifications */
239 #ifdef MAINFILE
240 #define NOTIFICATION(n) char *WN##n = #n
241 #else
242 #define NOTIFICATION(n) extern char *WN##n
243 #endif
245 NOTIFICATION(WindowAppearanceSettingsChanged);
247 NOTIFICATION(IconAppearanceSettingsChanged);
249 NOTIFICATION(IconTileSettingsChanged);
251 NOTIFICATION(MenuAppearanceSettingsChanged);
253 NOTIFICATION(MenuTitleAppearanceSettingsChanged);
256 /* appearance settings clientdata flags */
257 enum {
258 WFontSettings = 1 << 0,
259 WTextureSettings = 1 << 1,
260 WColorSettings = 1 << 2
265 typedef struct {
266 int x1, y1;
267 int x2, y2;
268 } WArea;
270 typedef struct WCoord {
271 int x, y;
272 } WCoord;
274 typedef struct WPreferences {
275 char *pixmap_path; /* : separate list of */
276 /* paths to find pixmaps */
277 char *icon_path; /* : separated list of */
278 /* paths to find icons */
280 RImage *button_images; /* titlebar button images */
282 char smooth_workspace_back;
283 char size_display; /* display type for resize geometry */
284 char move_display; /* display type for move geometry */
285 char window_placement; /* window placement mode */
286 char colormap_mode; /* colormap focus mode */
287 char focus_mode; /* window focusing mode */
289 char opaque_move; /* update window position during */
290 /* move */
292 char wrap_menus; /* wrap menus at edge of screen */
293 char scrollable_menus; /* let them be scrolled */
294 char align_menus; /* align menu with their parents */
296 char use_saveunders; /* turn on SaveUnders for menus,
297 * icons etc. */
298 char no_window_over_dock;
300 char no_window_over_icons;
302 WCoord window_place_origin; /* Offset for windows placed on
303 * screen */
305 char constrain_window_size; /* don't let windows get bigger than
306 * screen */
308 char circ_raise; /* raise window when Alt-tabbing */
310 char ignore_focus_click;
312 char open_transients_with_parent; /* open transient window in
313 same workspace as parent */
314 char title_justification; /* titlebar text alignment */
316 #ifdef TITLE_TEXT_SHADOW
317 char title_shadow;
318 #endif
320 char multi_byte_text;
321 #ifdef KEEP_XKB_LOCK_STATUS
322 char modelock;
323 #endif
325 char no_dithering; /* use dithering or not */
327 char no_sound; /* enable/disable sound */
328 char no_animations; /* enable/disable animations */
330 char no_autowrap; /* wrap workspace when window is moved
331 * to the edge */
333 char auto_arrange_icons; /* automagically arrange icons */
335 char icon_box_position; /* position to place icons */
337 char iconification_style; /* position to place icons */
339 char disable_root_mouse; /* disable button events in root window */
341 char auto_focus; /* focus window when it's mapped */
344 char *icon_back_file; /* background image for icons */
346 WCoord *root_menu_pos; /* initial position of the root menu*/
347 WCoord *app_menu_pos;
349 WCoord *win_menu_pos;
351 char icon_yard; /* aka iconbox */
353 int raise_delay; /* delay for autoraise. 0 is disabled */
355 int cmap_size; /* size of dithering colormap in colors
356 * per channel */
358 int icon_size; /* size of the icon */
360 int menu_style; /* menu decoration style */
362 int workspace_name_display_position;
364 unsigned int modifier_mask; /* mask to use as kbd modifier */
367 char ws_advance; /* Create new workspace and advance */
369 char ws_cycle; /* Cycle existing workspaces */
371 char save_session_on_exit; /* automatically save session on exit */
373 char sticky_icons; /* If miniwindows will be onmipresent */
375 char dont_confirm_kill; /* do not confirm Kill application */
377 char disable_miniwindows;
379 char dont_blink; /* do not blink icon selection */
381 /* Appearance options */
382 char new_style; /* Use newstyle buttons */
383 char superfluous; /* Use superfluous things */
385 /* root window mouse bindings */
386 char select_button; /* button for window selection */
387 char windowl_button; /* button for window list menu */
388 char menu_button; /* button for app menu */
390 /* balloon text */
391 char window_balloon;
392 char miniwin_balloon;
393 char appicon_balloon;
394 char help_balloon;
396 #ifdef WEENDOZE_CYCLE
397 char windoze_cycling; /* Windoze 95 style Alt+Tabbing */
398 char popup_switchmenu; /* Popup the switchmenu when Alt+Tabbing */
399 #endif /* WEENDOZE_CYCLE */
400 /* some constants */
401 int dblclick_time; /* double click delay time in ms */
403 /* animate menus */
404 char menu_scroll_speed; /* how fast menus are scrolled */
406 /* animate icon sliding */
407 char icon_slide_speed; /* icon slide animation speed */
409 /* shading animation */
410 char shade_speed;
412 int edge_resistance;
414 struct {
415 unsigned int nodock:1; /* don't display the dock */
416 unsigned int noclip:1; /* don't display the clip */
417 unsigned int nocpp:1; /* don't use cpp */
418 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
419 } flags; /* internal flags */
420 } WPreferences;
424 /****** Global Variables ******/
425 extern Display *dpy;
426 extern char *ProgName;
427 extern unsigned int ValidModMask;
428 extern char WProgramState;
430 /****** Global Functions ******/
431 extern void wAbort(Bool dumpCore);
433 #endif