2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
5 * Copyright (c) 2014 Window Maker Team
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef WINDOWMAKER_H_
23 #define WINDOWMAKER_H_
28 #include <WINGs/WINGs.h>
34 WCLASS_WINDOW
= 1, /* managed client windows */
35 WCLASS_MENU
= 2, /* root menus */
37 WCLASS_DUMMYWINDOW
= 4, /* window that holds window group leader */
38 WCLASS_MINIWINDOW
= 5,
41 WCLASS_TEXT_INPUT
= 8,
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,
53 WMBackLevel
= INT_MIN
+1, /* Very lowest level */
54 WMDesktopLevel
= -1000, /* Lowest level of normal use */
64 WMScreensaverLevel
= 1000,
65 WMOuterSpaceLevel
= INT_MAX
69 * WObjDescriptor will be used by the event dispatcher to
70 * send events to a particular object through the methods in the
71 * method table. If all objects of the same class share the
72 * same methods, the class method table should be used, otherwise
73 * a new method table must be created for each object.
74 * It is also assigned to find the parent structure of a given
75 * window (like the WWindow or WMenu for a button)
78 typedef struct WObjDescriptor
{
79 void *self
; /* the object that will be called */
81 void (*handle_expose
)(struct WObjDescriptor
*sender
, XEvent
*event
);
82 void (*handle_mousedown
)(struct WObjDescriptor
*sender
, XEvent
*event
);
83 void (*handle_enternotify
)(struct WObjDescriptor
*sender
, XEvent
*event
);
84 void (*handle_leavenotify
)(struct WObjDescriptor
*sender
, XEvent
*event
);
86 WClassType parent_type
; /* type code of the parent */
87 void *parent
; /* parent object (WWindow or WMenu) */
90 /* internal buttons */
92 #define WBUT_BROKENCLOSE 1
93 #define WBUT_ICONIFY 2
95 #ifdef XKB_BUTTON_HINT
96 #define WBUT_XKBGROUP1 4
97 #define WBUT_XKBGROUP2 5
98 #define WBUT_XKBGROUP3 6
99 #define WBUT_XKBGROUP4 7
100 #define PRED_BPIXMAPS 8 /* reserved for 4 groups */
102 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
103 #endif /* XKB_BUTTON_HINT */
112 WCUR_BOTTOMLEFTRESIZE
,
113 WCUR_BOTTOMRIGHTRESIZE
,
124 /* Count of the number of cursors defined */
128 /* geometry displays */
129 #define WDIS_NEW 0 /* new style */
130 #define WDIS_CENTER 1 /* center of screen */
131 #define WDIS_TOPLEFT 2 /* top left corner of screen */
132 #define WDIS_FRAME_CENTER 3 /* center of the frame */
135 /* keyboard input focus mode */
139 /* colormap change mode */
141 #define WCM_POINTER 1
143 /* window placement mode */
145 #define WPM_CASCADE 1
151 /* text justification */
156 /* iconification styles */
161 #define WIS_RANDOM 4 /* secret */
163 /* switchmenu actions */
165 #define ACTION_REMOVE 1
166 #define ACTION_CHANGE 2
167 #define ACTION_CHANGE_WORKSPACE 3
168 #define ACTION_CHANGE_STATE 4
172 #define SPEED_ULTRAFAST 0
174 #define SPEED_MEDIUM 2
176 #define SPEED_ULTRASLOW 4
181 #define WS_UNFOCUSED 1
182 #define WS_PFOCUSED 2
184 /* clip title colors */
185 #define CLIP_NORMAL 0
186 #define CLIP_COLLAPSED 1
189 /* icon yard position */
200 #define MS_SINGLE_TEXTURE 1
203 /* workspace actions */
205 #define WA_SELECT_WINDOWS 1
206 #define WA_OPEN_APPMENU 2
207 #define WA_OPEN_WINLISTMENU 3
208 #define WA_SWITCH_WORKSPACES 4
209 #define WA_MOVE_PREVWORKSPACE 5
210 #define WA_MOVE_NEXTWORKSPACE 6
211 #define WA_SWITCH_WINDOWS 7
212 #define WA_MOVE_PREVWINDOW 8
213 #define WA_MOVE_NEXTWINDOW 9
215 /* workspace display position */
221 #define WD_TOPRIGHT 5
222 #define WD_BOTTOMLEFT 6
223 #define WD_BOTTOMRIGHT 7
230 /* workspace border position */
232 #define WB_LEFTRIGHT 1
233 #define WB_TOPBOTTOM 2
234 #define WB_ALLDIRS (WB_LEFTRIGHT|WB_TOPBOTTOM)
236 /* drag maximized window behaviors */
247 WSTATE_NEED_EXIT
= 1,
248 WSTATE_NEED_RESTART
= 2,
250 WSTATE_RESTARTING
= 4,
252 WSTATE_NEED_REREAD
= 6
256 #define WCHECK_STATE(chk_state) (w_global.program.state == (chk_state))
259 #define WCHANGE_STATE(nstate) {\
260 if (w_global.program.state == WSTATE_NORMAL \
261 || (nstate) != WSTATE_MODAL) \
262 w_global.program.state = (nstate); \
263 if (w_global.program.signal_state != 0) \
264 w_global.program.state = w_global.program.signal_state; \
268 /* only call inside signal handlers, with signals blocked */
269 #define SIG_WCHANGE_STATE(nstate) {\
270 w_global.program.signal_state = (nstate); \
271 w_global.program.state = (nstate); \
275 /* Flags for the Window Maker state when restarting/crash situations */
276 #define WFLAGS_NONE (0)
277 #define WFLAGS_CRASHED (1<<0)
283 #define NOTIFICATION(n) const char WN##n [] = #n
285 #define NOTIFICATION(n) extern const char WN##n []
288 NOTIFICATION(WindowAppearanceSettingsChanged
);
290 NOTIFICATION(IconAppearanceSettingsChanged
);
292 NOTIFICATION(IconTileSettingsChanged
);
294 NOTIFICATION(MenuAppearanceSettingsChanged
);
296 NOTIFICATION(MenuTitleAppearanceSettingsChanged
);
299 /* appearance settings clientdata flags */
301 WFontSettings
= 1 << 0,
302 WTextureSettings
= 1 << 1,
303 WColorSettings
= 1 << 2
313 typedef struct WCoord
{
317 extern struct WPreferences
{
318 char *pixmap_path
; /* : separated list of paths to find pixmaps */
319 char *icon_path
; /* : separated list of paths to find icons */
320 WMArray
*fallbackWMs
; /* fallback window manager list */
321 char *logger_shell
; /* shell to log child stdi/o */
322 RImage
*button_images
; /* titlebar button images */
323 char smooth_workspace_back
;
324 signed char size_display
; /* display type for resize geometry */
325 signed char move_display
; /* display type for move geometry */
326 signed char window_placement
; /* window placement mode */
327 signed char colormap_mode
; /* colormap focus mode */
328 signed char focus_mode
; /* window focusing mode */
330 char opaque_move
; /* update window position during move */
331 char opaque_resize
; /* update window position during resize */
332 char opaque_move_resize_keyboard
; /* update window position during move,resize with keyboard */
333 char wrap_menus
; /* wrap menus at edge of screen */
334 char scrollable_menus
; /* let them be scrolled */
335 char vi_key_menus
; /* use h/j/k/l to select */
336 char align_menus
; /* align menu with their parents */
337 char use_saveunders
; /* turn on SaveUnders for menus, icons etc. */
338 char no_window_over_dock
;
339 char no_window_over_icons
;
340 WCoord window_place_origin
; /* Offset for windows placed on screen */
342 char constrain_window_size
; /* don't let windows get bigger than screen */
343 char windows_cycling
; /* windoze cycling */
344 char circ_raise
; /* raise window after Alt-tabbing */
345 char ignore_focus_click
;
346 char open_transients_with_parent
; /* open transient window in same workspace as parent */
347 signed char title_justification
; /* titlebar text alignment */
348 int window_title_clearance
;
349 int window_title_min_height
;
350 int window_title_max_height
;
351 int menu_title_clearance
;
352 int menu_title_min_height
;
353 int menu_title_max_height
;
354 int menu_text_clearance
;
355 char multi_byte_text
;
356 #ifdef KEEP_XKB_LOCK_STATUS
359 char no_dithering
; /* use dithering or not */
360 char no_animations
; /* enable/disable animations */
361 char no_autowrap
; /* wrap workspace when window is moved to the edge */
362 char window_snapping
; /* enable window snapping */
363 char drag_maximized_window
; /* behavior when a maximized window is dragged */
365 char highlight_active_app
; /* show the focused app by highlighting its icon */
366 char auto_arrange_icons
; /* automagically arrange icons */
367 char icon_box_position
; /* position to place icons */
368 signed char iconification_style
; /* position to place icons */
369 char disable_root_mouse
; /* disable button events in root window */
370 char auto_focus
; /* focus window when it's mapped */
371 char *icon_back_file
; /* background image for icons */
373 WCoord
*root_menu_pos
; /* initial position of the root menu*/
374 WCoord
*app_menu_pos
;
375 WCoord
*win_menu_pos
;
377 signed char icon_yard
; /* aka iconbox */
379 int raise_delay
; /* delay for autoraise. 0 is disabled */
380 int cmap_size
; /* size of dithering colormap in colors per channel */
382 int icon_size
; /* size of the icon */
383 signed char menu_style
; /* menu decoration style */
384 signed char workspace_name_display_position
;
385 unsigned int modifier_mask
; /* mask to use as kbd modifier */
386 char *modifier_labels
[7]; /* Names of the modifiers */
388 unsigned int supports_tiff
; /* Use tiff files */
390 char ws_advance
; /* Create new workspace and advance */
391 char ws_cycle
; /* Cycle existing workspaces */
392 char save_session_on_exit
; /* automatically save session on exit */
393 char sticky_icons
; /* If miniwindows will be onmipresent */
394 char dont_confirm_kill
; /* do not confirm Kill application */
395 char disable_miniwindows
;
396 char disable_workspace_pager
;
397 char ignore_gtk_decoration_hints
;
399 char dont_blink
; /* do not blink icon selection */
401 /* Appearance options */
402 char new_style
; /* Use newstyle buttons */
403 char superfluous
; /* Use superfluous things */
405 /* root window mouse bindings */
406 signed char mouse_button1
; /* action for left mouse button */
407 signed char mouse_button2
; /* action for middle mouse button */
408 signed char mouse_button3
; /* action for right mouse button */
409 signed char mouse_button8
; /* action for 4th button aka backward mouse button */
410 signed char mouse_button9
; /* action for 5th button aka forward mouse button */
411 signed char mouse_wheel_scroll
; /* action for mouse wheel scroll */
412 signed char mouse_wheel_tilt
; /* action for mouse wheel tilt */
416 char miniwin_title_balloon
;
417 char miniwin_preview_balloon
;
418 char appicon_balloon
;
422 int dblclick_time
; /* double click delay time in ms */
425 signed char menu_scroll_speed
; /* how fast menus are scrolled */
427 /* animate icon sliding */
428 signed char icon_slide_speed
; /* icon slide animation speed */
430 /* shading animation */
431 signed char shade_speed
;
433 /* bouncing animation */
434 char bounce_appicons_when_urgent
;
435 char raise_appicons_when_bouncing
;
436 char do_not_make_appicons_bounce
;
439 int resize_increment
;
442 unsigned int workspace_border_size
; /* Size in pixels of the workspace border */
443 char workspace_border_position
; /* Where to leave a workspace border */
444 char single_click
; /* single click to lauch applications */
445 int history_lines
; /* history of "Run..." dialog */
446 char cycle_active_head_only
; /* Cycle only windows on the active head */
447 char cycle_ignore_minimized
; /* Ignore minimized windows when cycling */
448 char strict_windoze_cycle
; /* don't close switch panel when shift is released */
449 char panel_only_open
; /* Only open the switch panel; don't switch */
450 int minipreview_size
; /* Size of Mini-Previews in pixels */
452 /* All delays here are in ms. 0 means instant auto-action. */
453 int clip_auto_raise_delay
; /* Delay after which the clip will be raised when entered */
454 int clip_auto_lower_delay
; /* Delay after which the clip will be lowered when leaved */
455 int clip_auto_expand_delay
; /* Delay after which the clip will expand when entered */
456 int clip_auto_collapse_delay
; /* Delay after which the clip will collapse when leaved */
459 RImage
*swbackImage
[9];
461 union WTexture
*wsmbackTexture
;
463 char show_clip_title
;
466 unsigned int replace
:1; /* replace existing window manager */
467 unsigned int nodock
:1; /* don't display the dock */
468 unsigned int noclip
:1; /* don't display the clip */
469 unsigned int clip_merged_in_dock
:1; /* disable clip, switch workspaces with dock */
470 unsigned int nodrawer
:1; /* don't use drawers */
471 unsigned int wrap_appicons_in_dock
:1; /* Whether to wrap appicons when Dock is moved up and down */
472 unsigned int noupdates
:1; /* don't require ~/GNUstep (-static) */
473 unsigned int noautolaunch
:1; /* don't autolaunch apps */
474 unsigned int norestore
:1; /* don't restore session */
475 unsigned int restarting
:2;
476 } flags
; /* internal flags */
478 /* Map table between w_cursor and actual X id */
479 Cursor cursor
[WCUR_LAST
];
483 /****** Global Variables ******/
486 extern struct wmaker_global_variables
{
487 /* Tracking of the state of the program */
490 wprog_state signal_state
;
493 /* locale to use. NULL==POSIX or C */
496 /* Tracking of X events timestamps */
498 /* ts of the last event we received */
501 /* ts on the last time we did XSetInputFocus() */
506 /* Global Domains, for storing dictionaries */
508 /* Note: you must #include <defaults.h> if you want to use them */
509 struct WDDomain
*wmaker
;
510 struct WDDomain
*window_attr
;
511 struct WDDomain
*root_menu
;
514 /* Screens related */
518 * Ignore Workspace Change:
519 * this variable is used to prevent workspace switch while certain
520 * operations are ongoing.
522 Bool ignore_workspace_change
;
525 * Process WorkspaceMap Event:
526 * this variable is set when the Workspace Map window is being displayed,
527 * it is mainly used to avoid re-opening another one at the same time
529 Bool process_workspacemap_event
;
533 int fd_event_queue
; /* Inotify's queue file descriptor */
534 int wd_defaults
; /* Watch Descriptor for the 'Defaults' configuration file */
538 /* definition for X Atoms */
541 /* Window-Manager related */
550 Atom colormap_windows
;
551 Atom colormap_notify
;
552 Atom ignore_focus_events
;
555 /* GNUStep related */
558 Atom wm_miniaturize_window
;
563 /* Destkop-environment related */
565 Atom gtk_object_path
;
568 /* WindowMaker specific */
600 #ifdef KEEP_XKB_LOCK_STATUS
615 * If no extension were activated, we would end up with an empty
616 * structure, which old compilers may not appreciate, so let's
617 * work around this with a simple:
622 /* Keyboard and shortcuts */
625 * Bit-mask to hide special key modifiers which we don't want to
626 * impact the shortcuts (typically: CapsLock, NumLock, ScrollLock)
628 unsigned int modifiers_mask
;
632 /****** Notifications ******/
633 extern const char WMNManaged
[];
634 extern const char WMNUnmanaged
[];
635 extern const char WMNChangedWorkspace
[];
636 extern const char WMNChangedState
[];
637 extern const char WMNChangedFocus
[];
638 extern const char WMNChangedStacking
[];
639 extern const char WMNChangedName
[];
641 extern const char WMNWorkspaceCreated
[];
642 extern const char WMNWorkspaceDestroyed
[];
643 extern const char WMNWorkspaceChanged
[];
644 extern const char WMNWorkspaceNameChanged
[];
646 extern const char WMNResetStacking
[];