This update includes the 0.20.3pre3 code
[wmaker-crm.git] / src / screen.h
blob44b349d18ae87ed688053f40ed213fb4200d0d5a
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 WMSCREEN_H_
23 #define WMSCREEN_H_
25 #include "wconfig.h"
26 #include "WindowMaker.h"
27 #include <sys/types.h>
29 #ifdef XDE_DND
30 #include <gdk/gdk.h>
31 #endif
33 #include <proplist.h>
36 typedef struct WFont {
37 #ifndef I18N_MB
38 XFontStruct *font;
39 #else
40 XFontSet font;
41 #endif
42 short height;
43 short y;
44 } WFont;
46 #ifdef EXPERIMENTAL
47 typedef struct {
48 Pixmap pixmap; /* None means use pixel */
49 WMPixel pixel;
50 proplist_t spec; /* retained */
51 pid_t pid; /* If !=0, process ID of wmsetbg that
52 * is rendering the pixmap for this
53 * texture. Set to 0 when finishes */
54 } WWorkspaceTexture;
55 #endif /* EXPERIMENTAL */
58 #define WTB_LEFT 0
59 #define WTB_RIGHT 1
61 #define WTB_FOCUSED 0
62 #define WTB_UNFOCUSED 2
63 #define WTB_PFOCUSED 4
64 #define WTB_MENU 6
68 * each WScreen is saved into a context associated with it's root window
70 typedef struct _WScreen {
71 int screen; /* screen number */
73 int scr_width; /* size of the screen */
74 int scr_height;
76 Window root_win; /* root window of screen */
77 int depth; /* depth of the default visual */
78 Colormap colormap; /* root colormap */
79 int root_colormap_install_count;
80 struct WWindow *original_cmap_window; /* colormap before installing
81 * root colormap temporarily */
82 struct WWindow *cmap_window;
83 Colormap current_colormap;
85 Window w_win; /* window to use as drawable
86 * for new GCs, pixmaps etc. */
87 Visual *w_visual;
88 int w_depth;
89 Colormap w_colormap; /* our colormap */
91 Window no_focus_win; /* window to get focus when nobody
92 * else can do it */
94 struct WWindow *focused_window; /* window that has the focus
95 * Use this list if you want to
96 * traverse the entire window list
99 struct LinkedList *selected_windows;
101 struct WAppIcon *app_icon_list; /* list of all app-icons on screen */
103 struct WApplication *wapp_list; /* list of all aplications */
105 struct _WCoreWindow *stacking_list[MAX_WINDOW_LEVELS];
106 /* array of lists of windows
107 * in stacking order.
108 * The array order is in window level
109 * order and each list on the array
110 * is ordered from the topmost to
111 * the lowest window
113 /* int window_level_count[MAX_WINDOW_LEVELS];*/
114 int window_count; /* number of windows in window_list */
116 #ifdef EXPERIMENTAL
117 WWorkspaceTexture *defaultTexture;
118 WWorkspaceTexture **wspaceTextures;
119 int wspaceTextureCount;
120 #endif /* EXPERIMENTAL */
122 int workspace_count; /* number of workspaces */
123 struct WWorkspace **workspaces; /* workspace array */
124 int current_workspace; /* current workspace number */
126 WMPixel black_pixel;
127 WMPixel white_pixel;
129 WMPixel light_pixel;
130 WMPixel dark_pixel;
132 Pixmap stipple_bitmap;
133 Pixmap transp_stipple; /* for making holes in icon masks for
134 * transparent icon simulation */
135 WFont *title_font; /* default font for the titlebars */
136 WFont *menu_title_font; /* font for menu titlebars */
137 WFont *menu_entry_font; /* font for menu items */
138 WFont *icon_title_font; /* for icon titles */
139 WFont *clip_title_font; /* for clip titles */
140 WFont *info_text_font; /* text on things like geometry
141 * hint boxes */
143 WMPixel select_pixel;
144 WMPixel select_text_pixel;
145 /* foreground colors */
146 WMPixel window_title_pixel[3]; /* window titlebar text (foc, unfoc, pfoc)*/
147 WMPixel menu_title_pixel[3]; /* menu titlebar text */
148 WMPixel clip_title_pixel[2]; /* clip title text */
149 WMPixel mtext_pixel; /* menu item text */
150 WMPixel dtext_pixel; /* disabled menu item text */
151 WMPixel line_pixel;
152 WMPixel frame_border_pixel; /* frame border */
154 union WTexture *menu_title_texture[3];/* menu titlebar texture (tex, -, -) */
155 union WTexture *window_title_texture[3]; /* win textures (foc, unfoc, pfoc) */
156 struct WTexSolid *resizebar_texture[3];/* window resizebar texture (tex, -, -) */
158 union WTexture *menu_item_texture; /* menu item texture */
160 struct WTexSolid *menu_item_auxtexture; /* additional texture to draw menu
161 * cascade arrows */
162 struct WTexSolid *icon_title_texture;/* icon titles */
164 struct WTexSolid *widget_texture;
166 struct WTexSolid *icon_back_texture; /* icon back color for shadowing */
168 GC window_title_gc; /* window title text GC */
169 GC menu_title_gc; /* menu titles */
171 GC icon_title_gc; /* icon title background */
172 GC clip_title_gc; /* clip title */
173 GC menu_entry_gc; /* menu entries */
174 GC select_menu_gc; /* selected menu entries */
175 GC disabled_menu_entry_gc; /* disabled menu entries */
176 GC info_text_gc; /* for size/position display */
178 GC frame_gc; /* gc for resize/move frame (root) */
179 GC line_gc; /* gc for drawing XORed lines (root) */
180 GC copy_gc; /* gc for XCopyArea() */
181 GC stipple_gc; /* gc for stippled filling */
182 GC icon_select_gc;
183 GC draw_gc; /* gc for drawing misc things */
185 struct WPixmap *b_pixmaps[PRED_BPIXMAPS]; /* internal pixmaps for buttons*/
186 struct WPixmap *menu_radio_indicator;/* left menu indicator */
187 struct WPixmap *menu_check_indicator;/* left menu indicator for checkmark */
188 struct WPixmap *menu_mini_indicator; /* for miniwindow */
189 struct WPixmap *menu_hide_indicator; /* for hidden window */
190 struct WPixmap *menu_shade_indicator; /* for shaded window */
191 int app_menu_x, app_menu_y; /* position for application menus */
193 struct WMenu *root_menu; /* root window menu */
194 struct WMenu *workspace_menu; /* workspace operation */
195 struct WMenu *switch_menu; /* window list menu */
196 struct WMenu *window_menu; /* window command menu */
197 struct WMenu *icon_menu; /* icon/appicon menu */
198 struct WMenu *workspace_submenu; /* workspace list for window_menu */
200 struct WDock *dock; /* the application dock */
201 struct WPixmap *dock_dots; /* 3 dots for the Dock */
202 Window dock_shadow; /* shadow for dock buttons */
203 struct WAppIcon *clip_icon; /* The clip main icon */
204 struct WMenu *clip_menu; /* Menu for clips */
205 struct WMenu *clip_submenu; /* Workspace list for clips */
206 struct WMenu *clip_options; /* Options for Clip */
207 struct WMenu *clip_ws_menu; /* workspace menu for clip */
208 struct WDock *last_dock;
210 Window clip_balloon; /* window for workspace name */
212 Window geometry_display; /* displays the geometry during
213 * window resize, move etc. */
214 unsigned int geometry_display_width;
215 unsigned int geometry_display_height;
217 struct RContext *rcontext;
219 WMScreen *wmscreen; /* for widget library */
221 struct RImage *icon_tile;
222 struct RImage *clip_tile;
223 Pixmap icon_tile_pixmap; /* for app supplied icons */
225 Pixmap def_icon_pixmap; /* default icons */
226 Pixmap def_ticon_pixmap;
228 struct WDialogData *dialog_data;
230 /* state and other informations */
231 short cascade_index; /* for cascade window placement */
233 proplist_t session_state;
235 /* for double-click detection */
236 Time last_click_time;
237 Window last_click_window;
238 int last_click_button;
240 /* balloon help data */
241 struct _WBalloon *balloon;
243 /* for raise-delay */
244 WMHandlerID *autoRaiseTimer;
245 Window autoRaiseWindow; /* window that is scheduled to be
246 * raised */
248 /* for window shortcuts */
249 struct WWindow *shortcutWindow[4];
251 #ifdef XDE_DND
252 char *xdestring;
253 #endif
255 struct {
256 unsigned int startup:1; /* during window manager startup */
257 unsigned int regenerate_icon_textures:1;
258 unsigned int dnd_data_convertion_status:1;
259 unsigned int root_menu_changed_shortcuts:1;
260 unsigned int added_workspace_menu:1;
261 unsigned int startup2:1; /* startup phase 2 */
262 unsigned int supports_tiff:1;
263 unsigned int clip_balloon_mapped:1;
264 unsigned int next_click_is_not_double:1;
265 /* some client has issued a WM_COLORMAP_NOTIFY */
266 unsigned int colormap_stuff_blocked:1;
267 } flags;
268 } WScreen;
271 #define WSS_ROOTMENU (1<<0)
272 #define WSS_SWITCHMENU (1<<1)
273 #define WSS_WSMENU (1<<2)
275 /* changes must update wSaveScreenState/getWorkspaceState */
276 typedef struct WWorkspaceState {
277 int flags;
278 int workspace;
279 #if 0 /* obsoleted by saving menus position in WMState */
280 int menu_x, menu_y;
281 int smenu_x, smenu_y;
282 int wmenu_x, wmenu_y;
283 #endif
284 } WWorkspaceState;
287 WScreen *wScreenInit(int screen_number);
288 void wScreenSaveState(WScreen *scr);
289 void wScreenRestoreState(WScreen *scr);
291 int wScreenBringInside(WScreen *scr, int *x, int *y, int width, int height);
293 /* in startup.c */
294 WScreen *wScreenWithNumber(int i);
295 WScreen *wScreenForRootWindow(Window window); /* window must be valid */
296 WScreen *wScreenForWindow(Window window); /* slower than above functions */
298 #endif