This update includes the 0.20.3pre3 code
[wmaker-crm.git] / src / WindowMaker.h
blob528d7e25b8570728b557e00170c138ccbbf47517
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
67 #define MAX_WINDOW_LEVELS 7
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 /* internal buttons */
97 #define WBUT_CLOSE 0
98 #define WBUT_BROKENCLOSE 1
99 #define WBUT_ICONIFY 2
100 #define WBUT_KILL 3
102 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
104 /* cursors */
105 #define WCUR_DEFAULT 0
106 #define WCUR_NORMAL 0
107 #define WCUR_MOVE 1
108 #define WCUR_RESIZE 2
109 #define WCUR_WAIT 3
110 #define WCUR_ARROW 4
111 #define WCUR_QUESTION 5
112 #define WCUR_TEXT 6
113 #define WCUR_LAST 7
116 /* geometry displays */
117 #define WDIS_NEW 0 /* new style */
118 #define WDIS_CENTER 1 /* center of screen */
119 #define WDIS_TOPLEFT 2 /* top left corner of screen */
120 #define WDIS_FRAME_CENTER 3 /* center of the frame */
123 /* keyboard input focus mode */
124 #define WKF_CLICK 0
125 #define WKF_POINTER 1
126 #define WKF_SLOPPY 2
128 /* window placement mode */
129 #define WPM_MANUAL 0
130 #define WPM_CASCADE 1
131 #define WPM_SMART 2
132 #define WPM_RANDOM 3
134 /* text justification */
135 #define WTJ_CENTER 0
136 #define WTJ_LEFT 1
137 #define WTJ_RIGHT 2
139 /* iconification styles */
140 #define WIS_ZOOM 0
141 #define WIS_TWIST 1
142 #define WIS_FLIP 2
143 #define WIS_NONE 3
146 /* switchmenu actions */
147 #define ACTION_ADD 0
148 #define ACTION_REMOVE 1
149 #define ACTION_CHANGE 2
150 #define ACTION_CHANGE_WORKSPACE 3
151 #define ACTION_CHANGE_STATE 4
154 /* speeds */
155 #define SPEED_ULTRAFAST 0
156 #define SPEED_FAST 1
157 #define SPEED_MEDIUM 2
158 #define SPEED_SLOW 3
159 #define SPEED_ULTRASLOW 4
162 /* window states */
163 #define WS_FOCUSED 0
164 #define WS_UNFOCUSED 1
165 #define WS_PFOCUSED 2
167 /* clip title colors */
168 #define CLIP_NORMAL 0
169 #define CLIP_COLLAPSED 1
172 /* icon yard position */
173 #define IY_VERT 1
174 #define IY_HORIZ 0
175 #define IY_TOP 2
176 #define IY_BOTTOM 0
177 #define IY_RIGHT 4
178 #define IY_LEFT 0
181 /* program states */
182 #define WSTATE_NORMAL 0
183 #define WSTATE_NEED_EXIT 1
184 #define WSTATE_NEED_RESTART 2
185 #define WSTATE_EXITING 3
186 #define WSTATE_RESTARTING 4
189 typedef struct WCoord {
190 int x, y;
191 } WCoord;
194 typedef struct WPreferences {
195 char **pixmap_path; /* NULL terminated array of */
196 /* paths to find pixmaps */
197 char **icon_path; /* NULL terminated array of */
198 /* paths to find icons */
200 char size_display; /* display type for resize geometry */
201 char move_display; /* display type for move geometry */
202 char window_placement; /* window placement mode */
203 char colormap_mode; /* colormap focus mode */
204 char focus_mode; /* window focusing mode */
206 char opaque_move; /* update window position during */
207 /* move */
209 char wrap_menus; /* wrap menus at edge of screen */
210 char scrollable_menus; /* let them be scrolled */
211 char align_menus; /* align menu with their parents */
213 char use_saveunders; /* turn on SaveUnders for menus,
214 * icons etc. */
215 char no_window_under_dock;
217 char no_window_over_icons;
219 WCoord window_place_origin; /* Offset for windows placed on
220 * screen */
222 char constrain_window_size; /* don't let windows get bigger than
223 * screen */
225 char circ_raise; /* raise window when Alt-tabbing */
227 char ignore_focus_click;
229 char on_top_transients; /* transient windows are kept on top
230 * of their owners */
231 char title_justification; /* titlebar text alignment */
233 #ifdef KEEP_XKB_LOCK_STATUS
234 char modelock;
235 #endif
237 char no_dithering; /* use dithering or not */
239 char no_sound; /* enable/disable sound */
240 char no_animations; /* enable/disable animations */
242 char no_autowrap; /* wrap workspace when window is moved
243 * to the edge */
245 char auto_arrange_icons; /* automagically arrange icons */
247 char icon_box_position; /* position to place icons */
249 char iconification_style; /* position to place icons */
251 char disable_root_mouse; /* disable mouse actions in root window */
253 char auto_focus; /* focus window when it's mapped */
255 char *icon_back_file; /* background image for icons */
257 WCoord *root_menu_pos; /* initial position of the root menu*/
258 WCoord *app_menu_pos;
260 WCoord *win_menu_pos;
262 char icon_yard; /* aka iconbox */
264 int raise_delay; /* delay for autoraise. 0 is disabled */
266 int cmap_size; /* size of dithering colormap in colors
267 * per channel */
269 int icon_size; /* size of the icon */
271 char ws_advance; /* Create new workspace and advance */
273 char ws_cycle; /* Cycle existing workspaces */
275 unsigned int modifier_mask; /* mask to use as kbd modifier */
277 char save_session_on_exit; /* automatically save session on exit */
279 char sticky_icons; /* If miniwindows will be onmipresent */
281 char dont_confirm_kill; /* do not confirm Kill application */
283 char dont_blink;
285 /* Appearance options */
286 char new_style; /* Use newstyle buttons */
287 char superfluous; /* Use superfluous things */
289 /* root window mouse bindings */
290 char select_button; /* button for window selection */
291 char windowl_button; /* button for window list menu */
292 char menu_button; /* button for app menu */
294 /* balloon text */
295 char window_balloon;
296 char miniwin_balloon;
297 char appicon_balloon;
299 /* some constants */
300 int dblclick_time; /* double click delay time in ms */
302 /* animate menus */
303 char menu_scroll_speed; /* how fast menus are scrolled */
305 /* animate icon sliding */
306 char icon_slide_speed; /* icon slide animation speed */
308 /* shading animation */
309 char shade_speed;
311 int edge_resistance;
313 struct {
314 unsigned int nodock:1; /* don't display the dock */
315 unsigned int noclip:1; /* don't display the clip */
316 unsigned int nocpp:1; /* don't use cpp */
317 unsigned int noupdates:1; /* don't require ~/GNUstep (-static) */
318 } flags; /* internal flags */
319 } WPreferences;
323 /****** Global Variables ******/
324 extern Display *dpy;
325 extern char *ProgName;
326 extern unsigned int ValidModMask;
328 /****** Global Functions ******/
329 extern void wAbort(Bool dumpCore);
331 #endif