2 * Window Maker window manager
4 * Copyright (c) 1997-2002 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_
30 #include <WINGs/WINGs.h>
32 #if defined(HAVE_LIBINTL_H) && defined(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,
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,
64 WMBackLevel
= INT_MIN
+1, /* Very lowest level */
65 WMDesktopLevel
= -1000, /* Lowest level of normal use */
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 */
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) */
111 WSRestartPreparationMode
115 /* internal buttons */
117 #define WBUT_BROKENCLOSE 1
118 #define WBUT_ICONIFY 2
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 */
127 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
128 #endif /* XKB_BUTTON_HINT */
131 #define WCUR_DEFAULT 0
132 #define WCUR_NORMAL 0
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
142 #define WCUR_ARROW 10
143 #define WCUR_QUESTION 11
145 #define WCUR_SELECT 13
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 */
160 /* colormap change mode */
162 #define WCM_POINTER 1
164 /* window placement mode */
166 #define WPM_CASCADE 1
171 /* text justification */
176 /* iconification styles */
181 #define WIS_RANDOM 4 /* secret */
183 /* switchmenu actions */
185 #define ACTION_REMOVE 1
186 #define ACTION_CHANGE 2
187 #define ACTION_CHANGE_WORKSPACE 3
188 #define ACTION_CHANGE_STATE 4
192 #define SPEED_ULTRAFAST 0
194 #define SPEED_MEDIUM 2
196 #define SPEED_ULTRASLOW 4
201 #define WS_UNFOCUSED 1
202 #define WS_PFOCUSED 2
204 /* clip title colors */
205 #define CLIP_NORMAL 0
206 #define CLIP_COLLAPSED 1
209 /* icon yard position */
220 #define MS_SINGLE_TEXTURE 1
223 /* workspace actions */
225 #define WA_SELECT_WINDOWS 1
226 #define WA_OPEN_APPMENU 2
227 #define WA_OPEN_WINLISTMENU 3
228 #define WA_SWITCH_WORKSPACES 4
230 /* workspace display position */
236 #define WD_TOPRIGHT 5
237 #define WD_BOTTOMLEFT 6
238 #define WD_BOTTOMRIGHT 7
241 /* workspace border position */
243 #define WB_LEFTRIGHT 1
244 #define WB_TOPBOTTOM 2
245 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
249 #define WSTATE_NORMAL 0
250 #define WSTATE_NEED_EXIT 1
251 #define WSTATE_NEED_RESTART 2
252 #define WSTATE_EXITING 3
253 #define WSTATE_RESTARTING 4
254 #define WSTATE_MODAL 5
255 #define WSTATE_NEED_REREAD 6
258 #define WCHECK_STATE(state) (state == WProgramState)
261 #define WCHANGE_STATE(nstate) {\
262 if (WProgramState == WSTATE_NORMAL\
263 || nstate != WSTATE_MODAL)\
264 WProgramState = (nstate); \
265 if (WProgramSigState != 0)\
266 WProgramState = WProgramSigState;\
270 /* only call inside signal handlers, with signals blocked */
271 #define SIG_WCHANGE_STATE(nstate) {\
272 WProgramSigState = (nstate);\
273 WProgramState = (nstate);\
277 /* Flags for the Window Maker state when restarting/crash situations */
278 #define WFLAGS_NONE (0)
279 #define WFLAGS_CRASHED (1<<0)
285 #define NOTIFICATION(n) char *WN##n = #n
287 #define NOTIFICATION(n) extern char *WN##n
290 NOTIFICATION(WindowAppearanceSettingsChanged
);
292 NOTIFICATION(IconAppearanceSettingsChanged
);
294 NOTIFICATION(IconTileSettingsChanged
);
296 NOTIFICATION(MenuAppearanceSettingsChanged
);
298 NOTIFICATION(MenuTitleAppearanceSettingsChanged
);
301 /* appearance settings clientdata flags */
303 WFontSettings
= 1 << 0,
304 WTextureSettings
= 1 << 1,
305 WColorSettings
= 1 << 2
315 typedef struct WCoord
{
319 typedef struct WPreferences
{
320 char *pixmap_path
; /* : separate list of */
321 /* paths to find pixmaps */
322 char *icon_path
; /* : separated list of */
323 /* paths to find icons */
324 WMArray
*fallbackWMs
; /* fallback window manager list */
326 char *logger_shell
; /* shell to log child stdi/o */
328 RImage
*button_images
; /* titlebar button images */
330 char smooth_workspace_back
;
331 signed char size_display
; /* display type for resize geometry */
332 signed char move_display
; /* display type for move geometry */
333 signed char window_placement
; /* window placement mode */
334 signed char colormap_mode
; /* colormap focus mode */
335 signed char focus_mode
; /* window focusing mode */
337 char opaque_move
; /* update window position during */
340 char wrap_menus
; /* wrap menus at edge of screen */
341 char scrollable_menus
; /* let them be scrolled */
342 char align_menus
; /* align menu with their parents */
344 char use_saveunders
; /* turn on SaveUnders for menus,
346 char no_window_over_dock
;
348 char no_window_over_icons
;
350 WCoord window_place_origin
; /* Offset for windows placed on
353 char constrain_window_size
; /* don't let windows get bigger than
356 char windows_cycling
; /* windoze cycling */
357 char circ_raise
; /* raise window after Alt-tabbing */
359 char ignore_focus_click
;
361 char open_transients_with_parent
; /* open transient window in
362 same workspace as parent */
363 signed char title_justification
; /* titlebar text alignment */
365 int window_title_clearance
;
366 int menu_title_clearance
;
367 int menu_text_clearance
;
369 char multi_byte_text
;
370 #ifdef KEEP_XKB_LOCK_STATUS
374 char no_dithering
; /* use dithering or not */
376 char no_sound
; /* enable/disable sound */
377 char no_animations
; /* enable/disable animations */
379 char no_autowrap
; /* wrap workspace when window is moved
382 char auto_arrange_icons
; /* automagically arrange icons */
384 char icon_box_position
; /* position to place icons */
386 signed char iconification_style
; /* position to place icons */
388 char disable_root_mouse
; /* disable button events in root window */
390 char auto_focus
; /* focus window when it's mapped */
393 char *icon_back_file
; /* background image for icons */
395 WCoord
*root_menu_pos
; /* initial position of the root menu*/
396 WCoord
*app_menu_pos
;
398 WCoord
*win_menu_pos
;
400 signed char icon_yard
; /* aka iconbox */
402 int raise_delay
; /* delay for autoraise. 0 is disabled */
404 int cmap_size
; /* size of dithering colormap in colors
407 int icon_size
; /* size of the icon */
409 signed char menu_style
; /* menu decoration style */
411 signed char workspace_name_display_position
;
413 unsigned int modifier_mask
; /* mask to use as kbd modifier */
416 char ws_advance
; /* Create new workspace and advance */
418 #ifdef VIRTUAL_DESKTOP
419 unsigned int vedge_thickness
;
420 unsigned int vedge_bordersize
;
421 unsigned int vedge_hscrollspeed
;
422 unsigned int vedge_vscrollspeed
;
423 unsigned int vedge_maxheight
;
424 unsigned int vedge_maxwidth
;
427 char ws_cycle
; /* Cycle existing workspaces */
429 char save_session_on_exit
; /* automatically save session on exit */
431 char sticky_icons
; /* If miniwindows will be onmipresent */
433 char dont_confirm_kill
; /* do not confirm Kill application */
435 char disable_miniwindows
;
437 char dont_blink
; /* do not blink icon selection */
439 /* Appearance options */
440 char new_style
; /* Use newstyle buttons */
441 char superfluous
; /* Use superfluous things */
443 /* root window mouse bindings */
444 signed char mouse_button1
; /* action for left mouse button */
445 signed char mouse_button2
; /* action for middle mouse button */
446 signed char mouse_button3
; /* action for right mouse button */
447 signed char mouse_wheel
; /* action for mouse wheel */
451 char miniwin_balloon
;
452 char appicon_balloon
;
456 int dblclick_time
; /* double click delay time in ms */
459 signed char menu_scroll_speed
; /* how fast menus are scrolled */
461 /* animate icon sliding */
462 signed char icon_slide_speed
; /* icon slide animation speed */
464 /* shading animation */
465 signed char shade_speed
;
470 unsigned int workspace_border_size
; /* Size in pixels of the workspace border */
471 char workspace_border_position
; /* Where to leave a workspace border */
474 unsigned int nodock
:1; /* don't display the dock */
475 unsigned int noclip
:1; /* don't display the clip */
476 unsigned int nocpp
:1; /* don't use cpp */
477 unsigned int noupdates
:1; /* don't require ~/GNUstep (-static) */
478 unsigned int noautolaunch
:1; /* don't autolaunch apps */
479 unsigned int norestore
:1; /* don't restore session */
480 unsigned int create_stdcmap
:1; /* create std colormap */
481 unsigned int nopolling
:1; /* don't poll for defaults changes */
482 } flags
; /* internal flags */
487 /****** Global Variables ******/
489 extern char *ProgName
;
490 extern unsigned int ValidModMask
;
491 extern char WProgramState
;
492 extern char WProgramSigState
;
495 /****** Global Functions ******/
496 extern void wAbort(Bool dumpCore
);
499 /****** Notifications ******/
500 extern const char *WMNManaged
;
501 extern const char *WMNUnmanaged
;
502 extern const char *WMNChangedWorkspace
;
503 extern const char *WMNChangedState
;
504 extern const char *WMNChangedFocus
;
505 extern const char *WMNChangedStacking
;
506 extern const char *WMNChangedName
;
508 extern const char *WMNWorkspaceCreated
;
509 extern const char *WMNWorkspaceDestroyed
;
510 extern const char *WMNWorkspaceChanged
;
511 extern const char *WMNWorkspaceNameChanged
;
513 extern const char *WMNResetStacking
;