2 * Window Maker window manager
4 * Copyright (c) 1997, 1998 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,
22 #ifndef WINDOWMAKER_H_
23 #define WINDOWMAKER_H_
32 #if HAVE_LIBINTL_H && I18N
34 # define _(text) gettext(text)
36 # define _(text) (text)
45 WCLASS_WINDOW
= 1, /* managed client windows */
46 WCLASS_MENU
= 2, /* root menus */
48 WCLASS_DUMMYWINDOW
= 4, /* window that holds window group leader */
49 WCLASS_MINIWINDOW
= 5,
52 WCLASS_TEXT_INPUT
= 8,
57 /* generic window levels (a superset of the N*XTSTEP ones) */
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 */
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) */
101 WSRestartPreparationMode
105 /* internal buttons */
107 #define WBUT_BROKENCLOSE 1
108 #define WBUT_ICONIFY 2
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 */
117 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
118 #endif /* XKB_BUTTON_HINT */
121 #define WCUR_DEFAULT 0
122 #define WCUR_NORMAL 0
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
132 #define WCUR_ARROW 10
133 #define WCUR_QUESTION 11
135 #define WCUR_SELECT 13
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 */
148 #define WKF_POINTER 1
151 /* window placement mode */
153 #define WPM_CASCADE 1
158 /* text justification */
163 /* iconification styles */
168 #define WIS_RANDOM 4 /* secret */
170 /* switchmenu actions */
172 #define ACTION_REMOVE 1
173 #define ACTION_CHANGE 2
174 #define ACTION_CHANGE_WORKSPACE 3
175 #define ACTION_CHANGE_STATE 4
179 #define SPEED_ULTRAFAST 0
181 #define SPEED_MEDIUM 2
183 #define SPEED_ULTRASLOW 4
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 */
207 #define MS_SINGLE_TEXTURE 1
211 /* workspace display position */
217 #define WD_TOPRIGHT 5
218 #define WD_BOTTOMLEFT 6
219 #define WD_BOTTOMRIGHT 7
222 /* workspace border position */
224 #define WB_LEFTRIGHT 1
225 #define WB_TOPBOTTOM 2
226 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
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)
248 #define NOTIFICATION(n) char *WN##n = #n
250 #define NOTIFICATION(n) extern char *WN##n
253 NOTIFICATION(WindowAppearanceSettingsChanged
);
255 NOTIFICATION(IconAppearanceSettingsChanged
);
257 NOTIFICATION(IconTileSettingsChanged
);
259 NOTIFICATION(MenuAppearanceSettingsChanged
);
261 NOTIFICATION(MenuTitleAppearanceSettingsChanged
);
264 /* appearance settings clientdata flags */
266 WFontSettings
= 1 << 0,
267 WTextureSettings
= 1 << 1,
268 WColorSettings
= 1 << 2
278 typedef struct 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 */
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,
308 char no_window_over_dock
;
310 char no_window_over_icons
;
312 WCoord window_place_origin
; /* Offset for windows placed on
315 char constrain_window_size
; /* don't let windows get bigger than
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
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
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
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_height
; /* could be change to workspace specific one day */
385 unsigned int vedge_width
;
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 */
411 char miniwin_balloon
;
412 char appicon_balloon
;
416 int dblclick_time
; /* double click delay time in ms */
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
;
430 unsigned int workspace_border_size
; /* Size in pixels of the workspace border */
431 char workspace_border_position
; /* Where to leave a workspace border */
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 */
446 /****** Global Variables ******/
448 extern char *ProgName
;
449 extern unsigned int ValidModMask
;
450 extern char WProgramState
;
452 /****** Global Functions ******/
453 extern void wAbort(Bool dumpCore
);