Initial revision
[wmaker-crm.git] / src / WindowMaker.h
blob102740a6d7632d6bebe1f0291650b47955998a1e
1 /*
2 * WindowMaker 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
40 /* max. number of distinct window levels */
41 #define MAX_WINDOW_LEVELS 5
44 /* class codes */
45 typedef enum {
46 WCLASS_UNKNOWN = 0,
47 WCLASS_WINDOW = 1, /* managed client windows */
48 WCLASS_MENU = 2, /* root menus */
49 WCLASS_APPICON = 3,
50 WCLASS_DUMMYWINDOW = 4, /* window that holds window group leader */
51 WCLASS_MINIWINDOW = 5,
52 WCLASS_DOCK_ICON = 6,
53 WCLASS_PAGER = 7,
54 WCLASS_TEXT_INPUT = 8,
55 WCLASS_FRAME = 9
56 } WClassType;
61 * WObjDescriptor will be used by the event dispatcher to
62 * send events to a particular object through the methods in the
63 * method table. If all objects of the same class share the
64 * same methods, the class method table should be used, otherwise
65 * a new method table must be created for each object.
66 * It is also assigned to find the parent structure of a given
67 * window (like the WWindow or WMenu for a button)
70 typedef struct WObjDescriptor {
71 void *self; /* the object that will be called */
72 /* event handlers */
73 void (*handle_expose)(struct WObjDescriptor *sender, XEvent *event);
75 void (*handle_mousedown)(struct WObjDescriptor *sender, XEvent *event);
77 void (*handle_anything)(struct WObjDescriptor *sender, XEvent *event);
79 void (*handle_enternotify)(struct WObjDescriptor *sender, XEvent *event);
80 void (*handle_leavenotify)(struct WObjDescriptor *sender, XEvent *event);
82 WClassType parent_type; /* type code of the parent */
83 void *parent; /* parent object (WWindow or WMenu) */
84 } WObjDescriptor;
87 /* internal buttons */
88 #define WBUT_CLOSE 0
89 #define WBUT_BROKENCLOSE 1
90 #define WBUT_ICONIFY 2
91 #define WBUT_KILL 3
93 #define PRED_BPIXMAPS 4 /* count of WBUT icons */
95 /* cursors */
96 #define WCUR_DEFAULT 0
97 #define WCUR_NORMAL 0
98 #define WCUR_MOVE 1
99 #define WCUR_RESIZE 2
100 #define WCUR_WAIT 3
101 #define WCUR_ARROW 4
102 #define WCUR_QUESTION 5
103 #define WCUR_TEXT 6
104 #define WCUR_LAST 7
107 /* geometry displays */
108 #define WDIS_NEW 0 /* new style */
109 #define WDIS_CENTER 1 /* center of screen */
110 #define WDIS_TOPLEFT 2 /* top left corner of screen */
111 #define WDIS_FRAME_CENTER 3 /* center of the frame */
114 /* keyboard input focus mode */
115 #define WKF_CLICK 0
116 #define WKF_POINTER 1
117 #define WKF_SLOPPY 2
119 /* window placement mode */
120 #define WPM_MANUAL 0
121 #define WPM_CASCADE 1
122 #define WPM_SMART 2
123 #define WPM_RANDOM 3
125 /* text justification */
126 #define WTJ_CENTER 0
127 #define WTJ_LEFT 1
128 #define WTJ_RIGHT 2
131 /* icon box positions */
132 #define WIB_BOTTOM 0
133 #define WIB_TOP 1
134 #define WIB_LEFT 2
135 #define WIB_RIGHT 3
138 /* iconification styles */
139 #define WIS_ZOOM 0
140 #define WIS_TWIST 1
141 #define WIS_FLIP 2
142 #define WIS_NONE 3
145 /* switchmenu actions */
146 #define ACTION_ADD 0
147 #define ACTION_REMOVE 1
148 #define ACTION_CHANGE 2
149 #define ACTION_CHANGE_WORKSPACE 3
150 #define ACTION_CHANGE_STATE 4
153 /* speeds */
154 #define SPEED_ULTRAFAST 0
155 #define SPEED_FAST 1
156 #define SPEED_MEDIUM 2
157 #define SPEED_SLOW 3
158 #define SPEED_ULTRASLOW 4
160 /* startup warnings */
161 #define WAR_DEFAULTS_DIR 1 /* created defaults DB directory */
164 /* window states */
165 #define WS_FOCUSED 0
166 #define WS_UNFOCUSED 1
167 #define WS_PFOCUSED 2
169 /* clip title colors */
170 #define CLIP_NORMAL 0
171 #define CLIP_COLLAPSED 1
174 /* icon yard position */
175 #define IY_VERT 1
176 #define IY_HORIZ 0
177 #define IY_TOP 2
178 #define IY_BOTTOM 0
179 #define IY_RIGHT 4
180 #define IY_LEFT 0
184 typedef struct W2Color {
185 char *color1;
186 char *color2;
187 } W2Color;
189 typedef struct WCoord {
190 int x, y;
191 } WCoord;
195 typedef struct WPreferences {
196 char **pixmap_path; /* NULL terminated array of */
197 /* paths to find pixmaps */
198 char **icon_path; /* NULL terminated array of */
199 /* paths to find icons */
201 char size_display; /* display type for resize geometry */
202 char move_display; /* display type for move geometry */
203 char window_placement; /* window placement mode */
204 char colormap_mode; /* colormap focus mode */
205 char focus_mode; /* window focusing mode */
207 char opaque_move; /* update window position during */
208 /* move */
210 char wrap_menus; /* wrap menus at edge of screen */
211 char scrollable_menus; /* let them be scrolled */
212 char align_menus; /* align menu with their parents */
214 char use_saveunders; /* turn on SaveUnders for menus,
215 * icons etc. */
217 char no_window_under_dock;
219 char no_window_over_icons;
221 WCoord window_place_origin; /* Offset for windows placed on
222 * screen */
224 char constrain_window_size; /* don't let windows get bigger than
225 * screen */
227 char circ_raise; /* raise window when Alt-tabbing */
229 char ignore_focus_click;
231 char on_top_transients; /* transient windows are kept on top
232 * of their owners */
233 char title_justification; /* titlebar text alignment */
235 char no_dithering; /* use dithering or not */
237 char no_sound; /* enable/disable sound */
238 char no_animations; /* enable/disable animations */
240 char no_autowrap; /* wrap workspace when window is moved
241 * to the edge */
243 char auto_arrange_icons; /* automagically arrange icons */
245 char icon_box_position; /* position to place icons */
247 char iconification_style; /* position to place icons */
249 char disable_root_mouse; /* disable mouse actions in root window */
251 char auto_focus; /* focus window when it's mapped */
253 char *icon_back_file; /* background image for icons */
255 WCoord *root_menu_pos; /* initial position of the root menu*/
256 WCoord *app_menu_pos;
258 WCoord *win_menu_pos;
260 int icon_yard; /* aka iconbox */
262 int raise_delay; /* delay for autoraise. 0 is disabled */
264 int cmap_size; /* size of dithering colormap in colors
265 * per channel */
267 int icon_size; /* size of the icon */
269 char ws_advance; /* Create new workspace and advance */
271 char ws_cycle; /* Cycle existing workspaces */
273 unsigned int modifier_mask; /* mask to use as kbd modifier */
275 char save_session_on_exit; /* automatically save session on exit */
277 char sticky_icons; /* If miniwindows will be onmipresent */
279 char dont_confirm_kill; /* do not confirm Kill application */
281 char dont_blink;
283 /* Appearance options */
284 char new_style; /* Use newstyle buttons */
285 char superfluous; /* Use superfluous things */
287 /* root window mouse bindings */
288 char select_button; /* button for window selection */
289 char windowl_button; /* button for window list menu */
290 char menu_button; /* button for app menu */
292 /* balloon text */
293 char window_balloon;
294 char miniwin_balloon;
295 char appicon_balloon;
297 /* some constants */
298 int dblclick_time; /* double click delay time in ms */
300 /* animate menus */
301 int menu_scroll_speed; /* how fast menus are scrolled */
303 /* animate icon sliding */
304 int icon_slide_speed; /* icon slide animation speed */
306 /* shading animation */
307 int shade_speed;
309 int edge_resistance;
311 struct {
312 unsigned int nodock:1; /* don't display the dock */
313 unsigned int noclip:1; /* don't display the clip */
314 unsigned int nocpp:1; /* don't use cpp */
315 } flags; /* internal flags */
316 } WPreferences;
320 /****** Global Variables ******/
321 extern Display *dpy;
322 extern char *ProgName;
323 extern unsigned int ValidModMask;
325 /****** Global Functions ******/
326 extern void wAbort(Bool dumpCore);
328 #endif