applied hadess patch for gnome panel
[wmaker-crm.git] / src / screen.c
blob465abcf03c283f73769060cf1738812114262b78
1 /* screen.c - screen management
2 *
3 * Window Maker window manager
4 *
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 *
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
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
23 #include "wconfig.h"
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
29 #include <X11/Xlib.h>
30 #include <X11/Xutil.h>
31 #include <X11/Xatom.h>
32 #ifdef SHAPE
33 #include <X11/extensions/shape.h>
34 #endif
35 #ifdef KEEP_XKB_LOCK_STATUS
36 #include <X11/XKBlib.h>
37 #endif /* KEEP_XKB_LOCK_STATUS */
39 #include <wraster.h>
41 #include "WindowMaker.h"
42 #include "def_pixmaps.h"
43 #include "screen.h"
44 #include "texture.h"
45 #include "pixmap.h"
46 #include "menu.h"
47 #include "funcs.h"
48 #include "actions.h"
49 #include "properties.h"
50 #include "dock.h"
51 #include "resources.h"
52 #include "workspace.h"
53 #include "session.h"
54 #include "balloon.h"
55 #include "geomview.h"
56 #ifdef KWM_HINTS
57 # include "kwm.h"
58 #endif
59 #ifdef GNOME_STUFF
60 # include "gnome.h"
61 #endif
62 #ifdef OLWM_HINTS
63 # include "openlook.h"
64 #endif
66 #include <proplist.h>
68 #include "defaults.h"
71 #ifdef LITE
72 #define EVENT_MASK (LeaveWindowMask|EnterWindowMask|PropertyChangeMask\
73 |SubstructureNotifyMask|PointerMotionMask \
74 |SubstructureRedirectMask|KeyPressMask|KeyReleaseMask)
75 #else
76 #define EVENT_MASK (LeaveWindowMask|EnterWindowMask|PropertyChangeMask\
77 |SubstructureNotifyMask|PointerMotionMask \
78 |SubstructureRedirectMask|ButtonPressMask|ButtonReleaseMask\
79 |KeyPressMask|KeyReleaseMask)
80 #endif
82 /**** Global variables ****/
84 extern Cursor wCursor[WCUR_LAST];
85 extern WPreferences wPreferences;
86 extern Atom _XA_WINDOWMAKER_STATE;
87 extern Atom _XA_WINDOWMAKER_NOTICEBOARD;
90 extern int wScreenCount;
92 #ifdef KEEP_XKB_LOCK_STATUS
93 extern int wXkbSupported;
94 #endif
96 extern WDDomain *WDWindowMaker;
99 /**** Local ****/
101 #define STIPPLE_WIDTH 2
102 #define STIPPLE_HEIGHT 2
103 static char STIPPLE_DATA[] = {0x02, 0x01};
105 static int CantManageScreen = 0;
107 static proplist_t dApplications = NULL;
108 static proplist_t dWorkspace;
109 static proplist_t dDock;
110 static proplist_t dClip;
113 static void
114 make_keys()
116 if (dApplications!=NULL)
117 return;
119 dApplications = PLMakeString("Applications");
120 dWorkspace = PLMakeString("Workspace");
121 dDock = PLMakeString("Dock");
122 dClip = PLMakeString("Clip");
127 *----------------------------------------------------------------------
128 * alreadyRunningError--
129 * X error handler used to catch errors when trying to do
130 * XSelectInput() on the root window. These errors probably mean that
131 * there already is some other window manager running.
133 * Returns:
134 * Nothing, unless something really evil happens...
136 * Side effects:
137 * CantManageScreen is set to 1;
138 *----------------------------------------------------------------------
140 static int
141 alreadyRunningError(Display *dpy, XErrorEvent *error)
143 CantManageScreen = 1;
144 return -1;
149 *----------------------------------------------------------------------
150 * allocButtonPixmaps--
151 * Allocate pixmaps used on window operation buttons (those in the
152 * titlebar). The pixmaps are linked to the program. If XPM is supported
153 * XPM pixmaps are used otherwise, equivalent bitmaps are used.
155 * Returns:
156 * Nothing
158 * Side effects:
159 * Allocates shared pixmaps for the screen. These pixmaps should
160 * not be freed by anybody.
161 *----------------------------------------------------------------------
163 static void
164 allocButtonPixmaps(WScreen *scr)
166 WPixmap *pix;
168 /* create predefined pixmaps */
169 pix = wPixmapCreateFromXPMData(scr, PRED_CLOSE_XPM);
170 if (pix)
171 pix->shared = 1;
172 scr->b_pixmaps[WBUT_CLOSE] = pix;
174 pix = wPixmapCreateFromXPMData(scr, PRED_BROKEN_CLOSE_XPM);
175 if (pix)
176 pix->shared = 1;
177 scr->b_pixmaps[WBUT_BROKENCLOSE] = pix;
179 pix = wPixmapCreateFromXPMData(scr, PRED_ICONIFY_XPM);
180 if (pix)
181 pix->shared = 1;
182 scr->b_pixmaps[WBUT_ICONIFY] = pix;
183 #ifdef XKB_BUTTON_HINT
184 pix = wPixmapCreateFromXPMData(scr, PRED_XKBGROUP1_XPM);
185 if (pix)
186 pix->shared = 1;
187 scr->b_pixmaps[WBUT_XKBGROUP1] = pix;
188 pix = wPixmapCreateFromXPMData(scr, PRED_XKBGROUP2_XPM);
189 if (pix)
190 pix->shared = 1;
191 scr->b_pixmaps[WBUT_XKBGROUP2] = pix;
192 pix = wPixmapCreateFromXPMData(scr, PRED_XKBGROUP3_XPM);
193 if (pix)
194 pix->shared = 1;
195 scr->b_pixmaps[WBUT_XKBGROUP3] = pix;
196 pix = wPixmapCreateFromXPMData(scr, PRED_XKBGROUP4_XPM);
197 if (pix)
198 pix->shared = 1;
199 scr->b_pixmaps[WBUT_XKBGROUP4] = pix;
200 #endif
203 pix = wPixmapCreateFromXPMData(scr, PRED_KILL_XPM);
204 if (pix)
205 pix->shared = 1;
206 scr->b_pixmaps[WBUT_KILL] = pix;
210 static void
211 draw_dot(WScreen *scr, Drawable d, int x, int y, GC gc)
213 XSetForeground(dpy, gc, scr->black_pixel);
214 XDrawLine(dpy, d, gc, x, y, x+1, y);
215 XDrawPoint(dpy, d, gc, x, y+1);
216 XSetForeground(dpy, gc, scr->white_pixel);
217 XDrawLine(dpy, d, gc, x+2, y, x+2, y+1);
218 XDrawPoint(dpy, d, gc, x+1, y+1);
222 static WPixmap*
223 make3Dots(WScreen *scr)
225 WPixmap *wpix;
226 GC gc2, gc;
227 XGCValues gcv;
228 Pixmap pix, mask;
230 gc = scr->copy_gc;
231 pix = XCreatePixmap(dpy, scr->w_win, wPreferences.icon_size,
232 wPreferences.icon_size, scr->w_depth);
233 XSetForeground(dpy, gc, scr->black_pixel);
234 XFillRectangle(dpy, pix, gc, 0, 0, wPreferences.icon_size,
235 wPreferences.icon_size);
236 XSetForeground(dpy, gc, scr->white_pixel);
237 draw_dot(scr, pix, 4, wPreferences.icon_size-6, gc);
238 draw_dot(scr, pix, 9, wPreferences.icon_size-6, gc);
239 draw_dot(scr, pix, 14, wPreferences.icon_size-6, gc);
241 mask = XCreatePixmap(dpy, scr->w_win, wPreferences.icon_size,
242 wPreferences.icon_size, 1);
243 gcv.foreground = 0;
244 gcv.graphics_exposures = False;
245 gc2 = XCreateGC(dpy, mask, GCForeground|GCGraphicsExposures, &gcv);
246 XFillRectangle(dpy, mask, gc2, 0, 0, wPreferences.icon_size,
247 wPreferences.icon_size);
248 XSetForeground(dpy, gc2, 1);
249 XFillRectangle(dpy, mask, gc2, 4, wPreferences.icon_size-6, 3, 2);
250 XFillRectangle(dpy, mask, gc2, 9, wPreferences.icon_size-6, 3, 2);
251 XFillRectangle(dpy, mask, gc2, 14, wPreferences.icon_size-6, 3, 2);
253 XFreeGC(dpy, gc2);
255 wpix = wPixmapCreate(scr, pix, mask);
256 wpix->shared = 1;
258 return wpix;
262 static void
263 allocGCs(WScreen *scr)
265 XGCValues gcv;
266 XColor color;
267 unsigned long mtextcolor;
268 int gcm;
270 scr->stipple_bitmap =
271 XCreateBitmapFromData(dpy, scr->w_win, STIPPLE_DATA, STIPPLE_WIDTH,
272 STIPPLE_HEIGHT);
274 gcv.stipple = scr->stipple_bitmap;
275 gcv.foreground = scr->white_pixel;
276 gcv.fill_style = FillStippled;
277 gcv.graphics_exposures = False;
278 gcm = GCForeground|GCStipple|GCFillStyle|GCGraphicsExposures;
279 scr->stipple_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
282 /* selected icon border GCs */
283 gcv.function = GXcopy;
284 gcv.foreground = scr->white_pixel;
285 gcv.background = scr->black_pixel;
286 gcv.line_width = 1;
287 gcv.line_style = LineDoubleDash;
288 gcv.fill_style = FillSolid;
289 gcv.dash_offset = 0;
290 gcv.dashes = 4;
291 gcv.graphics_exposures = False;
293 gcm = GCFunction | GCGraphicsExposures;
294 gcm |= GCForeground | GCBackground;
295 gcm |= GCLineWidth | GCLineStyle;
296 gcm |= GCFillStyle;
297 gcm |= GCDashOffset | GCDashList;
299 scr->icon_select_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
301 gcm = GCForeground|GCGraphicsExposures;
303 scr->menu_title_pixel[0] = scr->white_pixel;
304 gcv.foreground = scr->white_pixel;
305 gcv.graphics_exposures = False;
306 scr->menu_title_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
308 scr->mtext_pixel = scr->black_pixel;
309 mtextcolor = gcv.foreground = scr->black_pixel;
310 scr->menu_entry_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
312 /* selected menu entry GC */
313 gcm = GCForeground|GCBackground|GCGraphicsExposures;
314 gcv.foreground = scr->white_pixel;
315 gcv.background = scr->white_pixel;
316 gcv.graphics_exposures = False;
317 scr->select_menu_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
319 /* disabled menu entry GC */
320 scr->dtext_pixel = scr->black_pixel;
321 gcm = GCForeground|GCBackground|GCStipple|GCGraphicsExposures;
322 gcv.stipple = scr->stipple_bitmap;
323 gcv.graphics_exposures = False;
324 scr->disabled_menu_entry_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
326 /* frame GC */
327 wGetColor(scr, DEF_FRAME_COLOR, &color);
328 gcv.function = GXxor;
329 /* this will raise the probability of the XORed color being different
330 * of the original color in PseudoColor when not all color cells are
331 * initialized */
332 if (DefaultVisual(dpy, scr->screen)->class==PseudoColor)
333 gcv.plane_mask = (1<<(scr->depth-1))|1;
334 else
335 gcv.plane_mask = AllPlanes;
336 gcv.foreground = color.pixel;
337 if (gcv.foreground == 0)
338 gcv.foreground = 1;
339 gcv.line_width = DEF_FRAME_THICKNESS;
340 gcv.subwindow_mode = IncludeInferiors;
341 gcv.graphics_exposures = False;
342 scr->frame_gc = XCreateGC(dpy, scr->root_win, GCForeground|GCGraphicsExposures
343 |GCFunction|GCSubwindowMode|GCLineWidth
344 |GCPlaneMask, &gcv);
346 /* line GC */
347 gcv.foreground = color.pixel;
349 if (gcv.foreground == 0)
350 /* XOR:ing with a zero is not going to be of much use, so
351 in that case, we somewhat arbitrarily xor with 17 instead. */
352 gcv.foreground = 17;
354 gcv.function = GXxor;
355 gcv.subwindow_mode = IncludeInferiors;
356 gcv.line_width = 1;
357 gcv.cap_style = CapRound;
358 gcv.graphics_exposures = False;
359 gcm = GCForeground|GCFunction|GCSubwindowMode|GCLineWidth|GCCapStyle
360 |GCGraphicsExposures;
361 scr->line_gc = XCreateGC(dpy, scr->root_win, gcm, &gcv);
363 scr->line_pixel = gcv.foreground;
365 /* copy GC */
366 gcv.foreground = scr->white_pixel;
367 gcv.background = scr->black_pixel;
368 gcv.graphics_exposures = False;
369 scr->copy_gc = XCreateGC(dpy, scr->w_win, GCForeground|GCBackground
370 |GCGraphicsExposures, &gcv);
372 /* window title text GC */
373 gcv.graphics_exposures = False;
374 scr->window_title_gc = XCreateGC(dpy, scr->w_win,GCGraphicsExposures,&gcv);
376 /* icon title GC */
377 scr->icon_title_gc = XCreateGC(dpy, scr->w_win, GCGraphicsExposures, &gcv);
379 /* clip title GC */
380 scr->clip_title_gc = XCreateGC(dpy, scr->w_win, GCGraphicsExposures, &gcv);
382 /* move/size display GC */
383 gcv.graphics_exposures = False;
384 gcm = GCGraphicsExposures;
385 scr->info_text_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
387 /* misc drawing GC */
388 gcv.graphics_exposures = False;
389 gcm = GCGraphicsExposures;
390 scr->draw_gc = XCreateGC(dpy, scr->w_win, gcm, &gcv);
392 assert (scr->stipple_bitmap!=None);
395 /* mono GC */
396 scr->mono_gc = XCreateGC(dpy, scr->stipple_bitmap, gcm, &gcv);
401 static void
402 createPixmaps(WScreen *scr)
404 WPixmap *pix;
405 WMPixmap *wmpix;
406 RImage *image;
407 Pixmap p, m;
409 /* load pixmaps */
410 pix = wPixmapCreateFromXBMData(scr, (char*)MENU_RADIO_INDICATOR_XBM_DATA,
411 (char*)MENU_RADIO_INDICATOR_XBM_DATA,
412 MENU_RADIO_INDICATOR_XBM_SIZE,
413 MENU_RADIO_INDICATOR_XBM_SIZE,
414 scr->black_pixel, scr->white_pixel);
415 if (pix!=NULL)
416 pix->shared = 1;
417 scr->menu_radio_indicator = pix;
420 pix = wPixmapCreateFromXBMData(scr, (char*)MENU_CHECK_INDICATOR_XBM_DATA,
421 (char*)MENU_CHECK_INDICATOR_XBM_DATA,
422 MENU_CHECK_INDICATOR_XBM_SIZE,
423 MENU_CHECK_INDICATOR_XBM_SIZE,
424 scr->black_pixel, scr->white_pixel);
425 if (pix!=NULL)
426 pix->shared = 1;
427 scr->menu_check_indicator = pix;
429 pix = wPixmapCreateFromXBMData(scr, (char*)MENU_MINI_INDICATOR_XBM_DATA,
430 (char*)MENU_MINI_INDICATOR_XBM_DATA,
431 MENU_MINI_INDICATOR_XBM_SIZE,
432 MENU_MINI_INDICATOR_XBM_SIZE,
433 scr->black_pixel, scr->white_pixel);
434 if (pix!=NULL)
435 pix->shared = 1;
436 scr->menu_mini_indicator = pix;
438 pix = wPixmapCreateFromXBMData(scr, (char*)MENU_HIDE_INDICATOR_XBM_DATA,
439 (char*)MENU_HIDE_INDICATOR_XBM_DATA,
440 MENU_HIDE_INDICATOR_XBM_SIZE,
441 MENU_HIDE_INDICATOR_XBM_SIZE,
442 scr->black_pixel, scr->white_pixel);
443 if (pix!=NULL)
444 pix->shared = 1;
445 scr->menu_hide_indicator = pix;
447 pix = wPixmapCreateFromXBMData(scr, (char*)MENU_SHADE_INDICATOR_XBM_DATA,
448 (char*)MENU_SHADE_INDICATOR_XBM_DATA,
449 MENU_SHADE_INDICATOR_XBM_SIZE,
450 MENU_SHADE_INDICATOR_XBM_SIZE,
451 scr->black_pixel, scr->white_pixel);
452 if (pix!=NULL)
453 pix->shared = 1;
454 scr->menu_shade_indicator = pix;
457 image = wDefaultGetImage(scr, "Logo", "WMPanel");
459 if (!image) {
460 wwarning(_("could not load logo image for panels: %s"),
461 RMessageForError(RErrorCode));
462 } else {
463 if (!RConvertImageMask(scr->rcontext, image, &p, &m, 128)) {
464 wwarning(_("error making logo image for panel:%s"), RMessageForError(RErrorCode));
465 } else {
466 wmpix = WMCreatePixmapFromXPixmaps(scr->wmscreen, p, m,
467 image->width, image->height,
468 scr->depth);
469 WMSetApplicationIconImage(scr->wmscreen, wmpix);
470 WMReleasePixmap(wmpix);
472 RDestroyImage(image);
475 scr->dock_dots = make3Dots(scr);
477 /* titlebar button pixmaps */
478 allocButtonPixmaps(scr);
483 *----------------------------------------------------------------------
484 * createInternalWindows--
485 * Creates some windows used internally by the program. One to
486 * receive input focus when no other window can get it and another
487 * to display window geometry information during window resize/move.
489 * Returns:
490 * Nothing
492 * Side effects:
493 * Windows are created and some colors are allocated for the
494 * window background.
495 *----------------------------------------------------------------------
497 static void
498 createInternalWindows(WScreen *scr)
500 int vmask;
501 XSetWindowAttributes attribs;
503 /* InputOnly window to get the focus when no other window can get it */
504 vmask = CWEventMask|CWOverrideRedirect;
505 attribs.event_mask = KeyPressMask|FocusChangeMask;
506 attribs.override_redirect = True;
507 scr->no_focus_win=XCreateWindow(dpy,scr->root_win,-10, -10, 4, 4, 0, 0,
508 InputOnly,CopyFromParent, vmask, &attribs);
509 XSelectInput(dpy, scr->no_focus_win, KeyPressMask|KeyReleaseMask);
510 XMapWindow(dpy, scr->no_focus_win);
512 XSetInputFocus(dpy, scr->no_focus_win, RevertToParent, CurrentTime);
514 /* shadow window for dock buttons */
515 vmask = CWBorderPixel|CWBackPixmap|CWBackPixel|CWCursor|CWSaveUnder|CWOverrideRedirect;
516 attribs.border_pixel = scr->black_pixel;
517 attribs.save_under = True;
518 attribs.override_redirect = True;
519 attribs.background_pixmap = None;
520 attribs.background_pixel = scr->white_pixel;
521 attribs.cursor = wCursor[WCUR_DEFAULT];
522 vmask |= CWColormap;
523 attribs.colormap = scr->w_colormap;
524 scr->dock_shadow =
525 XCreateWindow(dpy, scr->root_win, 0, 0, wPreferences.icon_size,
526 wPreferences.icon_size, 0, scr->w_depth, CopyFromParent,
527 scr->w_visual, vmask, &attribs);
529 /* workspace name balloon for clip */
530 vmask = CWBackPixel|CWSaveUnder|CWOverrideRedirect|CWColormap
531 |CWBorderPixel;
532 attribs.save_under = True;
533 attribs.override_redirect = True;
534 attribs.colormap = scr->w_colormap;
535 attribs.background_pixel = scr->icon_back_texture->normal.pixel;
536 attribs.border_pixel = 0; /* do not care */
537 scr->clip_balloon =
538 XCreateWindow(dpy, scr->root_win, 0, 0, 10, 10, 0, scr->w_depth,
539 CopyFromParent, scr->w_visual, vmask, &attribs);
542 /* workspace name */
543 vmask = CWBackPixel|CWSaveUnder|CWOverrideRedirect|CWColormap
544 |CWBorderPixel;
545 attribs.save_under = True;
546 attribs.override_redirect = True;
547 attribs.colormap = scr->w_colormap;
548 attribs.background_pixel = scr->icon_back_texture->normal.pixel;
549 attribs.border_pixel = 0; /* do not care */
550 scr->workspace_name =
551 XCreateWindow(dpy, scr->root_win, 0, 0, 10, 10, 0, scr->w_depth,
552 CopyFromParent, scr->w_visual, vmask, &attribs);
555 * If the window is clicked without having ButtonPress selected, the
556 * resulting event will have event.xbutton.window == root.
558 XSelectInput(dpy, scr->clip_balloon, ButtonPressMask);
562 #if 0
563 static Bool
564 aquireManagerSelection(WScreen *scr)
566 char buffer[32];
567 XEvent ev;
568 Time timestamp;
570 sprintf(buffer, "WM_S%i", scr->screen);
571 scr->managerAtom = XInternAtom(dpy, buffer, False);
573 /* for race-conditions... */
574 XGrabServer(dpy);
576 /* if there is another manager running, don't try to replace it
577 * (for now, at least) */
578 if (XGetSelectionOwner(dpy, scr->managerAtom) != None) {
579 XUngrabServer(dpy);
580 return False;
583 /* become the manager for this screen */
585 scr->managerWindow = XCreateSimpleWindow(dpy, scr->root_win, 0, 0, 1, 1,
586 0, 0, 0);
588 XSelectInput(dpy, scr->managerWindow, PropertyChangeMask);
589 /* get a timestamp */
590 XChangeProperty(dpy, scr->managerWindow, scr->managerAtom,
591 XA_INTEGER, 32, PropModeAppend, NULL, 0);
592 while (1) {
593 XWindowEvent(dpy, scr->managerWindow, &ev);
594 if (ev.type == PropertyNotify) {
595 timestamp = ev.xproperty.time;
596 break;
599 XSelectInput(dpy, scr->managerWindow, NoEvents);
600 XDeleteProperty(dpy, scr->managerWindow, scr->managerAtom);
602 XSetSelectionOwner(dpy, scr->managerAtom, scr->managerWindow, CurrentTime);
604 XUngrabServer(dpy);
606 /* announce our arrival */
608 ev.xclient.type = ClientMessage;
609 ev.xclient.message_type = XInternAtom(dpy, "MANAGER", False);
610 ev.xclient.destination = scr->root_win;
611 ev.xclient.format = 32;
612 ev.xclient.data.l[0] = timestamp;
613 ev.xclient.data.l[1] = scr->managerAtom;
614 ev.xclient.data.l[2] = scr->managerWindow;
615 ev.xclient.data.l[3] = 0;
616 ev.xclient.data.l[4] = 0;
618 XSendEvent(dpy, scr->root_win, False, StructureNotify, &ev);
619 XSync(dpy, False);
621 return True;
623 #endif
626 *----------------------------------------------------------------------
627 * wScreenInit--
628 * Initializes the window manager for the given screen and
629 * allocates a WScreen descriptor for it. Many resources are allocated
630 * for the screen and the root window is setup appropriately.
632 * Returns:
633 * The WScreen descriptor for the screen.
635 * Side effects:
636 * Many resources are allocated and the IconSize property is
637 * set on the root window.
638 * The program can be aborted if some fatal error occurs.
640 * TODO: User specifiable visual.
641 *----------------------------------------------------------------------
643 WScreen*
644 wScreenInit(int screen_number)
646 WScreen *scr;
647 XIconSize icon_size[1];
648 RContextAttributes rattr;
649 extern int wVisualID;
650 long event_mask;
651 WMColor *color;
652 XErrorHandler oldHandler;
654 scr = wmalloc(sizeof(WScreen));
655 memset(scr, 0, sizeof(WScreen));
657 scr->stacking_list = WMCreateTreeBag();
659 /* initialize globals */
660 scr->screen = screen_number;
661 scr->root_win = RootWindow(dpy, screen_number);
662 scr->depth = DefaultDepth(dpy, screen_number);
663 scr->colormap = DefaultColormap(dpy, screen_number);
665 scr->scr_width = WidthOfScreen(ScreenOfDisplay(dpy, screen_number));
666 scr->scr_height = HeightOfScreen(ScreenOfDisplay(dpy, screen_number));
668 scr->usableArea.x2 = scr->scr_width;
669 scr->usableArea.y2 = scr->scr_height;
670 scr->totalUsableArea.x2 = scr->scr_width;
671 scr->totalUsableArea.y2 = scr->scr_height;
673 #if 0
674 if (!aquireManagerSelection(scr)) {
675 wfree(scr);
677 return NULL;
679 #endif
680 CantManageScreen = 0;
681 oldHandler = XSetErrorHandler((XErrorHandler)alreadyRunningError);
683 event_mask = EVENT_MASK;
685 if (wPreferences.disable_root_mouse) {
686 event_mask &= ~(ButtonPressMask|ButtonReleaseMask);
689 XSelectInput(dpy, scr->root_win, event_mask);
691 #ifdef KEEP_XKB_LOCK_STATUS
692 /* Only GroupLock doesn't work correctly in my system since right-alt
693 * can change mode while holding it too - ]d
695 if (wXkbSupported) {
696 XkbSelectEvents(dpy,XkbUseCoreKbd,
697 XkbStateNotifyMask,
698 XkbStateNotifyMask);
700 #endif /* KEEP_XKB_LOCK_STATUS */
702 XSync(dpy, False);
703 XSetErrorHandler(oldHandler);
705 if (CantManageScreen) {
706 wfree(scr);
707 return NULL;
710 #ifndef DEFINABLE_CURSOR
711 XDefineCursor(dpy, scr->root_win, wCursor[WCUR_DEFAULT]);
712 #endif
714 /* screen descriptor for raster graphic library */
715 rattr.flags = RC_RenderMode | RC_ColorsPerChannel | RC_StandardColormap;
716 rattr.render_mode = wPreferences.no_dithering
717 ? RBestMatchRendering
718 : RDitheredRendering;
720 /* if the std colormap stuff works ok, this will be ignored */
721 rattr.colors_per_channel = wPreferences.cmap_size;
722 if (rattr.colors_per_channel<2)
723 rattr.colors_per_channel = 2;
726 /* will only be accounted for in PseudoColor */
727 if (wPreferences.flags.create_stdcmap) {
728 rattr.standard_colormap_mode = RCreateStdColormap;
729 } else {
730 rattr.standard_colormap_mode = RUseStdColormap;
733 if (wVisualID>=0) {
734 rattr.flags |= RC_VisualID;
735 rattr.visualid = wVisualID;
738 scr->rcontext = RCreateContext(dpy, screen_number, &rattr);
740 if (!scr->rcontext && RErrorCode == RERR_STDCMAPFAIL) {
741 wwarning(RMessageForError(RErrorCode));
743 rattr.flags &= ~RC_StandardColormap;
744 rattr.standard_colormap_mode = RUseStdColormap;
746 scr->rcontext = RCreateContext(dpy, screen_number, &rattr);
749 if (!scr->rcontext) {
750 wwarning(_("could not initialize graphics library context: %s"),
751 RMessageForError(RErrorCode));
752 wAbort(False);
753 } else {
754 char **formats;
755 int i = 0;
757 formats = RSupportedFileFormats();
758 if (formats) {
759 for (i=0; formats[i]!=NULL; i++) {
760 if (strcmp(formats[i], "TIFF")==0) {
761 scr->flags.supports_tiff = 1;
762 break;
768 scr->w_win = scr->rcontext->drawable;
769 scr->w_visual = scr->rcontext->visual;
770 scr->w_depth = scr->rcontext->depth;
771 scr->w_colormap = scr->rcontext->cmap;
773 scr->black_pixel = scr->rcontext->black;
774 scr->white_pixel = scr->rcontext->white;
776 /* create screen descriptor for WINGs */
777 scr->wmscreen = WMCreateScreenWithRContext(dpy, screen_number,
778 scr->rcontext);
780 if (!scr->wmscreen) {
781 wfatal(_("could not do initialization of WINGs widget set"));
783 return NULL;
786 color = WMGrayColor(scr->wmscreen);
787 scr->light_pixel = WMColorPixel(color);
788 WMReleaseColor(color);
790 color = WMDarkGrayColor(scr->wmscreen);
791 scr->dark_pixel = WMColorPixel(color);
792 WMReleaseColor(color);
795 XColor xcol;
796 /* frame boder color */
797 wGetColor(scr, FRAME_BORDER_COLOR, &xcol);
798 scr->frame_border_pixel = xcol.pixel;
801 /* create GCs with default values */
802 allocGCs(scr);
805 /* for our window manager info notice board. Need to
806 * create before reading the defaults, because it will be used there.
808 scr->info_window = XCreateSimpleWindow(dpy, scr->root_win, 0, 0, 10, 10,
809 0, 0, 0);
811 /* read defaults for this screen */
812 wReadDefaults(scr, WDWindowMaker->dictionary);
814 createInternalWindows(scr);
816 #ifdef KWM_HINTS
817 wKWMInitStuff(scr);
818 #endif
820 #ifdef GNOME_STUFF
821 wGNOMEInitStuff(scr);
822 #endif
824 #ifdef OLWM_HINTS
825 wOLWMInitStuff(scr);
826 #endif
828 /* create initial workspace */
829 wWorkspaceNew(scr);
831 /* create shared pixmaps */
832 createPixmaps(scr);
834 /* set icon sizes we can accept from clients */
835 icon_size[0].min_width = 8;
836 icon_size[0].min_height = 8;
837 icon_size[0].max_width = wPreferences.icon_size-4;
838 icon_size[0].max_height = wPreferences.icon_size-4;
839 icon_size[0].width_inc = 1;
840 icon_size[0].height_inc = 1;
841 XSetIconSizes(dpy, scr->root_win, icon_size, 1);
843 /* setup WindowMaker protocols property in the root window*/
844 PropSetWMakerProtocols(scr->root_win);
846 /* setup our noticeboard */
847 XChangeProperty(dpy, scr->info_window, _XA_WINDOWMAKER_NOTICEBOARD,
848 XA_WINDOW, 32, PropModeReplace,
849 (unsigned char*)&scr->info_window, 1);
850 XChangeProperty(dpy, scr->root_win, _XA_WINDOWMAKER_NOTICEBOARD,
851 XA_WINDOW, 32, PropModeReplace,
852 (unsigned char*)&scr->info_window, 1);
855 #ifdef BALLOON_TEXT
856 /* initialize balloon text stuff */
857 wBalloonInitialize(scr);
858 #endif
860 scr->info_text_font = WMBoldSystemFontOfSize(scr->wmscreen, 12);
863 scr->gview = WCreateGeometryView(scr->wmscreen);
864 WMRealizeWidget(scr->gview);
866 wScreenUpdateUsableArea(scr);
868 return scr;
872 void
873 wScreenUpdateUsableArea(WScreen *scr)
875 #ifdef GNOME_STUFF
876 WReservedArea *area;
877 #endif
879 scr->totalUsableArea = scr->usableArea;
882 if (scr->dock && (!scr->dock->lowered
883 || wPreferences.no_window_over_dock)) {
885 int offset = wPreferences.icon_size + DOCK_EXTRA_SPACE;
887 if (scr->dock->on_right_side) {
888 scr->totalUsableArea.x2 = WMIN(scr->totalUsableArea.x2,
889 scr->scr_width - offset);
890 } else {
891 scr->totalUsableArea.x1 = WMAX(scr->totalUsableArea.x1, offset);
895 if (wPreferences.no_window_over_icons) {
896 if (wPreferences.icon_yard & IY_VERT) {
898 if (!(wPreferences.icon_yard & IY_RIGHT)) {
899 scr->totalUsableArea.x1 += wPreferences.icon_size;
900 } else {
901 scr->totalUsableArea.x2 -= wPreferences.icon_size;
903 } else {
905 if (wPreferences.icon_yard & IY_TOP) {
906 scr->totalUsableArea.y1 += wPreferences.icon_size;
907 } else {
908 scr->totalUsableArea.y2 -= wPreferences.icon_size;
913 #ifdef KWM_HINTS
915 WArea area;
917 if (wKWMGetUsableArea(scr, &area)) {
918 scr->totalUsableArea.x1 = WMAX(scr->totalUsableArea.x1, area.x1);
919 scr->totalUsableArea.y1 = WMAX(scr->totalUsableArea.y1, area.y1);
920 scr->totalUsableArea.x2 = WMIN(scr->totalUsableArea.x2, area.x2);
921 scr->totalUsableArea.y2 = WMIN(scr->totalUsableArea.y2, area.y2);
924 #endif
926 #ifdef GNOME_STUFF
927 area = scr->reservedAreas;
929 while (area) {
930 int th, bh;
931 int lw, rw;
932 int w, h;
934 w = area->area.x2 - area->area.x1;
935 h = area->area.y2 - area->area.y1;
937 th = area->area.y1;
938 bh = scr->scr_height - area->area.y2;
939 lw = area->area.x1;
940 rw = scr->scr_width - area->area.x2;
942 if (WMIN(th, bh) <= WMIN(lw, rw)) {
943 /* horizontal */
944 if (th < bh) {
945 /* on top */
946 if (scr->totalUsableArea.y1 < area->area.y2)
947 scr->totalUsableArea.y1 = area->area.y2;
948 } else {
949 /* on bottom */
950 if (scr->totalUsableArea.y2 > area->area.y1)
951 scr->totalUsableArea.y2 = area->area.y1;
953 } else {
954 /* vertical */
955 if (lw < rw) {
956 /* on left */
957 if (scr->totalUsableArea.x1 < area->area.x2)
958 scr->totalUsableArea.x1 = area->area.x2;
959 } else {
960 /* on right */
961 if (scr->totalUsableArea.x2 > area->area.x1)
962 scr->totalUsableArea.x2 = area->area.x1;
966 area = area->next;
968 #endif /* GNOME_STUFF */
970 if (scr->totalUsableArea.x2 - scr->totalUsableArea.x1 < scr->scr_width/2) {
971 scr->totalUsableArea.x2 = scr->usableArea.x2;
972 scr->totalUsableArea.x1 = scr->usableArea.x1;
974 if (scr->totalUsableArea.y2 - scr->totalUsableArea.y1 < scr->scr_height/2) {
975 scr->totalUsableArea.y2 = scr->usableArea.y2;
976 scr->totalUsableArea.y1 = scr->usableArea.y1;
979 #ifdef not_used
980 #ifdef KWM_HINTS
982 int i;
984 for (i = 0; i < scr->workspace_count; i++) {
985 wKWMSetUsableAreaHint(scr, i);
988 #endif
989 #endif
992 unsigned size = wPreferences.workspace_border_size;
993 unsigned position = wPreferences.workspace_border_position;
995 if (size>0 && position!=WB_NONE) {
996 if (position & WB_LEFTRIGHT) {
997 scr->totalUsableArea.x1 += size;
998 scr->totalUsableArea.x2 -= size;
1000 if (position & WB_TOPBOTTOM) {
1001 scr->totalUsableArea.y1 += size;
1002 scr->totalUsableArea.y2 -= size;
1010 void
1011 wScreenRestoreState(WScreen *scr)
1013 proplist_t state;
1014 char *path;
1017 #ifndef LITE
1018 OpenRootMenu(scr, -10000, -10000, False);
1019 wMenuUnmap(scr->root_menu);
1020 #endif
1022 make_keys();
1024 if (wScreenCount == 1)
1025 path = wdefaultspathfordomain("WMState");
1026 else {
1027 char buf[16];
1028 sprintf(buf, "WMState.%i", scr->screen);
1029 path = wdefaultspathfordomain(buf);
1031 scr->session_state = PLGetProplistWithPath(path);
1032 wfree(path);
1033 if (!scr->session_state && wScreenCount>1) {
1034 char buf[16];
1035 sprintf(buf, "WMState.%i", scr->screen);
1036 path = wdefaultspathfordomain(buf);
1037 scr->session_state = PLGetProplistWithPath(path);
1038 wfree(path);
1041 if (!wPreferences.flags.noclip) {
1042 state = PLGetDictionaryEntry(scr->session_state, dClip);
1043 scr->clip_icon = wClipRestoreState(scr, state);
1046 wWorkspaceRestoreState(scr);
1048 #ifdef VIRTUAL_DESKTOP
1050 * * create inputonly windows at the border of screen
1051 * */
1052 wWorkspaceManageEdge(scr);
1053 #endif
1055 if (!wPreferences.flags.nodock) {
1056 state = PLGetDictionaryEntry(scr->session_state, dDock);
1057 scr->dock = wDockRestoreState(scr, state, WM_DOCK);
1060 wScreenUpdateUsableArea(scr);
1064 void
1065 wScreenSaveState(WScreen *scr)
1067 WWorkspaceState wstate;
1068 WWindow *wwin;
1069 char *str;
1070 proplist_t path, old_state, foo;
1071 CARD32 data[2];
1074 make_keys();
1077 * Save current workspace, so can go back to it upon restart.
1079 wstate.workspace = scr->current_workspace;
1081 data[0] = wstate.flags;
1082 data[1] = wstate.workspace;
1084 XChangeProperty(dpy, scr->root_win, _XA_WINDOWMAKER_STATE,
1085 _XA_WINDOWMAKER_STATE, 32, PropModeReplace,
1086 (unsigned char *) data, 2);
1088 /* save state of windows */
1089 wwin = scr->focused_window;
1090 while (wwin) {
1091 wWindowSaveState(wwin);
1092 wwin = wwin->prev;
1096 if (wPreferences.flags.noupdates)
1097 return;
1100 old_state = scr->session_state;
1101 scr->session_state = PLMakeDictionaryFromEntries(NULL, NULL, NULL);
1103 PLSetStringCmpHook(NULL);
1105 /* save dock state to file */
1106 if (!wPreferences.flags.nodock) {
1107 wDockSaveState(scr, old_state);
1108 } else {
1109 if ((foo = PLGetDictionaryEntry(old_state, dDock))!=NULL) {
1110 PLInsertDictionaryEntry(scr->session_state, dDock, foo);
1113 if (!wPreferences.flags.noclip) {
1114 wClipSaveState(scr);
1115 } else {
1116 if ((foo = PLGetDictionaryEntry(old_state, dClip))!=NULL) {
1117 PLInsertDictionaryEntry(scr->session_state, dClip, foo);
1121 wWorkspaceSaveState(scr, old_state);
1123 if (wPreferences.save_session_on_exit) {
1124 wSessionSaveState(scr);
1125 } else {
1126 if ((foo = PLGetDictionaryEntry(old_state, dApplications))!=NULL) {
1127 PLInsertDictionaryEntry(scr->session_state, dApplications, foo);
1129 if ((foo = PLGetDictionaryEntry(old_state, dWorkspace))!=NULL) {
1130 PLInsertDictionaryEntry(scr->session_state, dWorkspace, foo);
1134 /* clean up */
1135 PLSetStringCmpHook(StringCompareHook);
1137 wMenuSaveState(scr);
1139 if (wScreenCount == 1)
1140 str = wdefaultspathfordomain("WMState");
1141 else {
1142 char buf[16];
1143 sprintf(buf, "WMState.%i", scr->screen);
1144 str = wdefaultspathfordomain(buf);
1146 path = PLMakeString(str);
1147 wfree(str);
1148 PLSetFilename(scr->session_state, path);
1149 if (!PLSave(scr->session_state, YES)) {
1150 wsyserror(_("could not save session state in %s"), PLGetString(path));
1152 PLRelease(path);
1153 PLRelease(old_state);
1159 wScreenBringInside(WScreen *scr, int *x, int *y, int width, int height)
1161 int moved = 0;
1162 int tol_w, tol_h;
1164 if (width > 20)
1165 tol_w = width/2;
1166 else
1167 tol_w = 20;
1169 if (height > 20)
1170 tol_h = height/2;
1171 else
1172 tol_h = 20;
1174 if (*x+width < 10)
1175 *x = -tol_w, moved = 1;
1176 else if (*x >= scr->scr_width - 10)
1177 *x = scr->scr_width - tol_w - 1, moved = 1;
1179 if (*y < -height + 10)
1180 *y = -tol_h, moved = 1;
1181 else if (*y >= scr->scr_height - 10)
1182 *y = scr->scr_height - tol_h - 1, moved = 1;
1184 return moved;