Set 'is_gnustep' flag for a window if the window Class hint is 'GNUstep'
[wmaker-crm.git] / src / window.c
blob36f2e25ef1c55e9813894999b19d221ae89a800f
1 /* window.c - client window managing stuffs
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 <X11/Xlib.h>
26 #include <X11/Xutil.h>
27 #ifdef SHAPE
28 #include <X11/extensions/shape.h>
29 #endif
30 #ifdef KEEP_XKB_LOCK_STATUS
31 #include <X11/XKBlib.h>
32 #endif /* KEEP_XKB_LOCK_STATUS */
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
38 #include "WindowMaker.h"
39 #include "GNUstep.h"
40 #include "wcore.h"
41 #include "framewin.h"
42 #include "texture.h"
43 #include "window.h"
44 #include "winspector.h"
45 #include "icon.h"
46 #include "properties.h"
47 #include "actions.h"
48 #include "client.h"
49 #include "funcs.h"
50 #include "keybind.h"
51 #include "stacking.h"
52 #include "defaults.h"
53 #include "workspace.h"
56 #ifdef MWM_HINTS
57 # include "motif.h"
58 #endif
59 #ifdef KWM_HINTS
60 # include "kwm.h"
61 #endif
62 #ifdef GNOME_STUFF
63 # include "gnome.h"
64 #endif
65 #ifdef OLWM_HINTS
66 # include "openlook.h"
67 #endif
69 /****** Global Variables ******/
71 extern WShortKey wKeyBindings[WKBD_LAST];
73 #ifdef SHAPE
74 extern Bool wShapeSupported;
75 #endif
77 /* contexts */
78 extern XContext wWinContext;
80 /* cursors */
81 extern Cursor wCursor[WCUR_LAST];
83 /* protocol atoms */
84 extern Atom _XA_WM_DELETE_WINDOW;
85 extern Atom _XA_GNUSTEP_WM_MINIATURIZE_WINDOW;
87 extern Atom _XA_WINDOWMAKER_STATE;
89 extern WPreferences wPreferences;
91 #define MOD_MASK wPreferences.modifier_mask
93 extern Time LastTimestamp;
95 /* superfluous... */
96 extern void DoWindowBirth(WWindow*);
99 /***** Local Stuff *****/
102 static WWindowState *windowState=NULL;
106 /* local functions */
107 static FocusMode getFocusMode(WWindow *wwin);
109 static int getSavedState(Window window, WSavedState **state);
111 static void setupGNUstepHints(WWindow *wwin, GNUstepWMAttributes *gs_hints);
113 /* event handlers */
116 /* frame window (during window grabs) */
117 static void frameMouseDown(WObjDescriptor *desc, XEvent *event);
119 /* close button */
120 static void windowCloseClick(WCoreWindow *sender, void *data, XEvent *event);
121 static void windowCloseDblClick(WCoreWindow *sender, void *data, XEvent *event);
123 /* iconify button */
124 static void windowIconifyClick(WCoreWindow *sender, void *data, XEvent *event);
126 #ifdef XKB_BUTTON_HINT
127 static void windowLanguageClick(WCoreWindow *sender, void *data, XEvent *event);
128 #endif
130 static void titlebarMouseDown(WCoreWindow *sender, void *data, XEvent *event);
131 static void titlebarDblClick(WCoreWindow *sender, void *data, XEvent *event);
133 static void resizebarMouseDown(WCoreWindow *sender, void *data, XEvent *event);
136 /****** Notification Observers ******/
138 static void
139 appearanceObserver(void *self, WMNotification *notif)
141 WWindow *wwin = (WWindow*)self;
142 int flags = (int)WMGetNotificationClientData(notif);
144 if (!wwin->frame || (!wwin->frame->titlebar && !wwin->frame->resizebar))
145 return;
147 if (flags & WFontSettings) {
148 wWindowConfigureBorders(wwin);
149 if(wwin->flags.shaded) {
150 wFrameWindowResize(wwin->frame, wwin->frame->core->width,
151 wwin->frame->top_width - 1);
153 wwin->client.y = wwin->frame_y - wwin->client.height
154 + wwin->frame->top_width;
155 wWindowSynthConfigureNotify(wwin);
158 if (flags & WTextureSettings) {
159 wwin->frame->flags.need_texture_remake = 1;
161 if (flags & (WTextureSettings | WColorSettings)) {
162 if (wwin->frame->titlebar)
163 XClearWindow(dpy, wwin->frame->titlebar->window);
165 wFrameWindowPaint(wwin->frame);
169 /************************************/
171 WWindow*
172 wWindowFor(Window window)
174 WObjDescriptor *desc;
176 if (window==None)
177 return NULL;
179 if (XFindContext(dpy, window, wWinContext, (XPointer*)&desc)==XCNOENT)
180 return NULL;
182 if (desc->parent_type==WCLASS_WINDOW)
183 return desc->parent;
184 else if (desc->parent_type==WCLASS_FRAME) {
185 WFrameWindow *frame = (WFrameWindow*)desc->parent;
186 if (frame->flags.is_client_window_frame)
187 return frame->child;
190 return NULL;
194 WWindow*
195 wWindowCreate()
197 WWindow *wwin;
199 wwin = wmalloc(sizeof(WWindow));
200 wretain(wwin);
202 memset(wwin, 0, sizeof(WWindow));
204 wwin->client_descriptor.handle_mousedown = frameMouseDown;
205 wwin->client_descriptor.parent = wwin;
206 wwin->client_descriptor.self = wwin;
207 wwin->client_descriptor.parent_type = WCLASS_WINDOW;
209 return wwin;
213 void
214 wWindowDestroy(WWindow *wwin)
216 int i;
218 if (wwin->screen_ptr->cmap_window == wwin) {
219 wwin->screen_ptr->cmap_window = NULL;
222 WMRemoveNotificationObserver(wwin);
224 wwin->flags.destroyed = 1;
226 for (i = 0; i < MAX_WINDOW_SHORTCUTS; i++) {
227 if (!wwin->screen_ptr->shortcutWindows[i])
228 continue;
230 WMRemoveFromBag(wwin->screen_ptr->shortcutWindows[i], wwin);
232 if (!WMGetBagItemCount(wwin->screen_ptr->shortcutWindows[i])) {
233 WMFreeBag(wwin->screen_ptr->shortcutWindows[i]);
234 wwin->screen_ptr->shortcutWindows[i] = NULL;
238 if (wwin->normal_hints)
239 XFree(wwin->normal_hints);
241 if (wwin->wm_hints)
242 XFree(wwin->wm_hints);
244 if (wwin->wm_instance)
245 XFree(wwin->wm_instance);
247 if (wwin->wm_class)
248 XFree(wwin->wm_class);
250 if (wwin->wm_gnustep_attr)
251 free(wwin->wm_gnustep_attr);
253 if (wwin->cmap_windows)
254 XFree(wwin->cmap_windows);
256 XDeleteContext(dpy, wwin->client_win, wWinContext);
258 if (wwin->frame)
259 wFrameWindowDestroy(wwin->frame);
261 if (wwin->icon) {
262 RemoveFromStackList(wwin->icon->core);
263 wIconDestroy(wwin->icon);
264 if (wPreferences.auto_arrange_icons)
265 wArrangeIcons(wwin->screen_ptr, True);
267 wrelease(wwin);
273 static void
274 setupGNUstepHints(WWindow *wwin, GNUstepWMAttributes *gs_hints)
276 if (gs_hints->flags & GSWindowStyleAttr) {
277 if (gs_hints->window_style == WMBorderlessWindowMask) {
278 wwin->client_flags.no_border = 1;
279 wwin->client_flags.no_titlebar = 1;
280 wwin->client_flags.no_closable = 1;
281 wwin->client_flags.no_miniaturizable = 1;
282 wwin->client_flags.no_resizable = 1;
283 wwin->client_flags.no_close_button = 1;
284 wwin->client_flags.no_miniaturize_button = 1;
285 wwin->client_flags.no_resizebar = 1;
286 } else {
287 wwin->client_flags.no_close_button =
288 ((gs_hints->window_style & WMClosableWindowMask)?0:1);
290 wwin->client_flags.no_closable =
291 ((gs_hints->window_style & WMClosableWindowMask)?0:1);
293 wwin->client_flags.no_miniaturize_button =
294 ((gs_hints->window_style & WMMiniaturizableWindowMask)?0:1);
296 wwin->client_flags.no_miniaturizable =
297 wwin->client_flags.no_miniaturize_button;
299 wwin->client_flags.no_resizebar =
300 ((gs_hints->window_style & WMResizableWindowMask)?0:1);
302 wwin->client_flags.no_resizable = wwin->client_flags.no_resizebar;
304 /* these attributes supposedly imply in the existence
305 * of a titlebar */
306 if (gs_hints->window_style & (WMResizableWindowMask|
307 WMClosableWindowMask|
308 WMMiniaturizableWindowMask)) {
309 wwin->client_flags.no_titlebar = 0;
310 } else {
311 wwin->client_flags.no_titlebar =
312 ((gs_hints->window_style & WMTitledWindowMask)?0:1);
316 } else {
317 /* setup the defaults */
318 wwin->client_flags.no_border = 0;
319 wwin->client_flags.no_titlebar = 0;
320 wwin->client_flags.no_closable = 0;
321 wwin->client_flags.no_miniaturizable = 0;
322 wwin->client_flags.no_resizable = 0;
323 wwin->client_flags.no_close_button = 0;
324 wwin->client_flags.no_miniaturize_button = 0;
325 wwin->client_flags.no_resizebar = 0;
327 if (gs_hints->extra_flags & GSNoApplicationIconFlag) {
328 wwin->client_flags.no_appicon = 1;
333 void
334 wWindowCheckAttributeSanity(WWindow *wwin, WWindowAttributes *wflags,
335 WWindowAttributes *mask)
337 if (wflags->no_appicon && mask->no_appicon)
338 wflags->emulate_appicon = 0;
340 if (wwin->main_window!=None) {
341 WApplication *wapp = wApplicationOf(wwin->main_window);
342 if (wapp && !wapp->flags.emulated)
343 wflags->emulate_appicon = 0;
346 if (wwin->transient_for!=None
347 && wwin->transient_for!=wwin->screen_ptr->root_win)
348 wflags->emulate_appicon = 0;
350 if (wflags->sunken && mask->sunken && wflags->floating && mask->floating)
351 wflags->sunken = 0;
356 void
357 wWindowSetupInitialAttributes(WWindow *wwin, int *level, int *workspace)
359 WScreen *scr = wwin->screen_ptr;
361 /* sets global default stuff */
362 wDefaultFillAttributes(scr, wwin->wm_instance, wwin->wm_class,
363 &wwin->client_flags, NULL, True);
365 * Decoration setting is done in this precedence (lower to higher)
366 * - use global default in the resource database
367 * - guess some settings
368 * - use GNUstep/external window attributes
369 * - set hints specified for the app in the resource DB
372 WSETUFLAG(wwin, broken_close, 0);
374 if (wwin->protocols.DELETE_WINDOW)
375 WSETUFLAG(wwin, kill_close, 0);
376 else
377 WSETUFLAG(wwin, kill_close, 1);
379 /* transients can't be iconified or maximized */
380 if (wwin->transient_for) {
381 WSETUFLAG(wwin, no_miniaturizable, 1);
382 WSETUFLAG(wwin, no_miniaturize_button, 1);
385 /* if the window can't be resized, remove the resizebar */
386 if (wwin->normal_hints->flags & (PMinSize|PMaxSize)
387 && (wwin->normal_hints->min_width==wwin->normal_hints->max_width)
388 && (wwin->normal_hints->min_height==wwin->normal_hints->max_height)) {
389 WSETUFLAG(wwin, no_resizable, 1);
390 WSETUFLAG(wwin, no_resizebar, 1);
393 /* set GNUstep window attributes */
394 if (wwin->wm_gnustep_attr) {
395 setupGNUstepHints(wwin, wwin->wm_gnustep_attr);
397 if (wwin->wm_gnustep_attr->flags & GSWindowLevelAttr) {
399 switch (wwin->wm_gnustep_attr->window_level) {
400 case WMNormalWindowLevel:
401 *level = WMNormalLevel;
402 break;
403 case WMFloatingWindowLevel:
404 *level = WMFloatingLevel;
405 break;
406 case WMDockWindowLevel:
407 *level = WMDockLevel;
408 break;
409 case WMSubmenuWindowLevel:
410 *level = WMSubmenuLevel;
411 break;
412 case WMMainMenuWindowLevel:
413 *level = WMMainMenuLevel;
414 break;
415 default:
416 *level = WMNormalLevel;
417 break;
419 } else {
420 /* setup defaults */
421 *level = WMNormalLevel;
423 } else {
424 int tmp_workspace = -1;
425 int tmp_level = -1;
427 #ifdef MWM_HINTS
428 wMWMCheckClientHints(wwin);
429 #endif /* MWM_HINTS */
431 #ifdef KWM_HINTS
432 wKWMCheckClientHints(wwin, &tmp_level, &tmp_workspace);
433 #endif /* KWM_HINTS */
435 #ifdef GNOME_STUFF
436 wGNOMECheckClientHints(wwin, &tmp_level, &tmp_workspace);
437 #endif /* GNOME_STUFF */
439 #ifdef OLWM_HINTS
440 wOLWMCheckClientHints(wwin);
441 #endif /* OLWM_HINTS */
443 if (tmp_level < 0) {
444 if (WFLAGP(wwin, floating))
445 *level = WMFloatingLevel;
446 else if (WFLAGP(wwin, sunken))
447 *level = WMSunkenLevel;
448 else
449 *level = WMNormalLevel;
450 } else {
451 *level = tmp_level;
454 if (tmp_workspace >= 0) {
455 *workspace = tmp_workspace % scr->workspace_count;
460 * Set attributes specified only for that window/class.
461 * This might do duplicate work with the 1st wDefaultFillAttributes().
463 wDefaultFillAttributes(scr, wwin->wm_instance, wwin->wm_class,
464 &wwin->user_flags, &wwin->defined_user_flags,
465 False);
467 * Sanity checks for attributes that depend on other attributes
469 if (wwin->user_flags.no_appicon && wwin->defined_user_flags.no_appicon)
470 wwin->user_flags.emulate_appicon = 0;
472 if (wwin->main_window!=None) {
473 WApplication *wapp = wApplicationOf(wwin->main_window);
474 if (wapp && !wapp->flags.emulated)
475 wwin->user_flags.emulate_appicon = 0;
478 if (wwin->transient_for!=None
479 && wwin->transient_for!=wwin->screen_ptr->root_win)
480 wwin->user_flags.emulate_appicon = 0;
482 if (wwin->user_flags.sunken && wwin->defined_user_flags.sunken
483 && wwin->user_flags.floating && wwin->defined_user_flags.floating)
484 wwin->user_flags.sunken = 0;
486 WSETUFLAG(wwin, no_shadeable, WFLAGP(wwin, no_titlebar));
492 Bool
493 wWindowCanReceiveFocus(WWindow *wwin)
495 if (!wwin->flags.mapped && (!wwin->flags.shaded || wwin->flags.hidden))
496 return False;
497 if (WFLAGP(wwin, no_focusable) || wwin->flags.miniaturized)
498 return False;
499 if (wwin->frame->workspace != wwin->screen_ptr->current_workspace)
500 return False;
502 return True;
506 Bool
507 wWindowObscuresWindow(WWindow *wwin, WWindow *obscured)
509 int w1, h1, w2, h2;
511 w1 = wwin->frame->core->width;
512 h1 = wwin->frame->core->height;
513 w2 = obscured->frame->core->width;
514 h2 = obscured->frame->core->height;
516 if (!IS_OMNIPRESENT(wwin) && !IS_OMNIPRESENT(obscured)
517 && wwin->frame->workspace != obscured->frame->workspace)
518 return False;
520 if (wwin->frame_x + w1 < obscured->frame_x
521 || wwin->frame_y + h1 < obscured->frame_y
522 || wwin->frame_x > obscured->frame_x + w2
523 || wwin->frame_y > obscured->frame_y + h2) {
524 return False;
527 return True;
532 *----------------------------------------------------------------
533 * wManageWindow--
534 * reparents the window and allocates a descriptor for it.
535 * Window manager hints and other hints are fetched to configure
536 * the window decoration attributes and others. User preferences
537 * for the window are used if available, to configure window
538 * decorations and some behaviour.
539 * If in startup, windows that are override redirect,
540 * unmapped and never were managed and are Withdrawn are not
541 * managed.
543 * Returns:
544 * the new window descriptor
546 * Side effects:
547 * The window is reparented and appropriate notification
548 * is done to the client. Input mask for the window is setup.
549 * The window descriptor is also associated with various window
550 * contexts and inserted in the head of the window list.
551 * Event handler contexts are associated for some objects
552 * (buttons, titlebar and resizebar)
554 *----------------------------------------------------------------
556 WWindow*
557 wManageWindow(WScreen *scr, Window window)
559 WWindow *wwin;
560 int x, y;
561 unsigned width, height;
562 XWindowAttributes wattribs;
563 XSetWindowAttributes attribs;
564 WWindowState *win_state;
565 WWindow *transientOwner = NULL;
566 int window_level;
567 int wm_state;
568 int foo;
569 int workspace = -1;
570 char *title;
571 Bool withdraw = False;
573 /* mutex. */
574 /* XGrabServer(dpy); */
575 XSync(dpy, False);
576 /* make sure the window is still there */
577 if (!XGetWindowAttributes(dpy, window, &wattribs)) {
578 XUngrabServer(dpy);
579 return NULL;
582 /* if it's an override-redirect, ignore it */
583 if (wattribs.override_redirect) {
584 XUngrabServer(dpy);
585 return NULL;
588 wm_state = PropGetWindowState(window);
590 /* if it's startup and the window is unmapped, don't manage it */
591 if (scr->flags.startup && wm_state < 0 && wattribs.map_state==IsUnmapped) {
592 XUngrabServer(dpy);
593 return NULL;
596 if (!wFetchName(dpy, window, &title)) {
597 title = NULL;
600 #ifdef KWM_HINTS
601 if (title && !wKWMManageableClient(scr, window, title)) {
602 XFree(title);
603 XUngrabServer(dpy);
604 return NULL;
606 #endif /* KWM_HINTS */
609 wwin = wWindowCreate();
611 XSaveContext(dpy, window, wWinContext, (XPointer)&wwin->client_descriptor);
613 #ifdef DEBUG
614 printf("managing window %x\n", (unsigned)window);
615 #endif
617 #ifdef SHAPE
618 if (wShapeSupported) {
619 int junk;
620 unsigned int ujunk;
621 int b_shaped;
623 XShapeSelectInput(dpy, window, ShapeNotifyMask);
624 XShapeQueryExtents(dpy, window, &b_shaped, &junk, &junk, &ujunk,
625 &ujunk, &junk, &junk, &junk, &ujunk, &ujunk);
626 wwin->flags.shaped = b_shaped;
628 #endif
631 *--------------------------------------------------
633 * Get hints and other information in properties
635 *--------------------------------------------------
637 PropGetWMClass(window, &wwin->wm_class, &wwin->wm_instance);
639 /* setup descriptor */
640 wwin->client_win = window;
641 wwin->screen_ptr = scr;
643 wwin->old_border_width = wattribs.border_width;
645 wwin->event_mask = CLIENT_EVENTS;
646 attribs.event_mask = CLIENT_EVENTS;
647 attribs.do_not_propagate_mask = ButtonPressMask | ButtonReleaseMask;
648 attribs.save_under = False;
649 XChangeWindowAttributes(dpy, window, CWEventMask|CWDontPropagate
650 |CWSaveUnder, &attribs);
651 XSetWindowBorderWidth(dpy, window, 0);
653 /* get hints from GNUstep app */
654 if (wwin->wm_class != 0 && strcmp(wwin->wm_class, "GNUstep") == 0) {
655 wwin->flags.is_gnustep = 1;
657 if (!PropGetGNUstepWMAttr(window, &wwin->wm_gnustep_attr)) {
658 wwin->wm_gnustep_attr = NULL;
661 wwin->client_leader = PropGetClientLeader(window);
662 if (wwin->client_leader!=None)
663 wwin->main_window = wwin->client_leader;
665 wwin->wm_hints = XGetWMHints(dpy, window);
667 if (wwin->wm_hints) {
668 if (wwin->wm_hints->flags & StateHint) {
670 if (wwin->wm_hints->initial_state == IconicState) {
672 wwin->flags.miniaturized = 1;
674 } else if (wwin->wm_hints->initial_state == WithdrawnState) {
676 withdraw = True;
680 if (wwin->wm_hints->flags & WindowGroupHint) {
681 wwin->group_id = wwin->wm_hints->window_group;
682 /* window_group has priority over CLIENT_LEADER */
683 wwin->main_window = wwin->group_id;
684 } else {
685 wwin->group_id = None;
688 if (wwin->wm_hints->flags & UrgencyHint)
689 wwin->flags.urgent = 1;
690 } else {
691 wwin->group_id = None;
694 PropGetProtocols(window, &wwin->protocols);
696 if (!XGetTransientForHint(dpy, window, &wwin->transient_for)) {
697 wwin->transient_for = None;
698 } else {
699 if (wwin->transient_for==None || wwin->transient_for==window) {
700 wwin->transient_for = scr->root_win;
701 } else {
702 transientOwner = wWindowFor(wwin->transient_for);
703 if (transientOwner && transientOwner->main_window!=None) {
704 wwin->main_window = transientOwner->main_window;
705 } /*else {
706 wwin->main_window = None;
711 /* guess the focus mode */
712 wwin->focus_mode = getFocusMode(wwin);
714 /* get geometry stuff */
715 wClientGetNormalHints(wwin, &wattribs, True, &x, &y, &width, &height);
717 /* get colormap windows */
718 GetColormapWindows(wwin);
721 *--------------------------------------------------
723 * Setup the decoration/window attributes and
724 * geometry
726 *--------------------------------------------------
729 wWindowSetupInitialAttributes(wwin, &window_level, &workspace);
731 #ifdef OLWM_HINTS
732 if (wwin->client_flags.olwm_transient && wwin->transient_for==None
733 && wwin->group_id != None && wwin->group_id != window) {
735 transientOwner = wWindowFor(wwin->group_id);
737 if (transientOwner) {
738 wwin->transient_for = wwin->group_id;
740 /* transients can't be iconified or maximized */
741 if (wwin->transient_for) {
742 WSETUFLAG(wwin, no_miniaturizable, 1);
743 WSETUFLAG(wwin, no_miniaturize_button, 1);
747 #endif /* OLWM_HINTS */
750 * Make broken apps behave as a nice app.
752 if (WFLAGP(wwin, emulate_appicon)) {
753 wwin->main_window = wwin->client_win;
757 *------------------------------------------------------------
759 * Setup the initial state of the window
761 *------------------------------------------------------------
764 if (WFLAGP(wwin, start_miniaturized) && !WFLAGP(wwin, no_miniaturizable)) {
765 wwin->flags.miniaturized = 1;
768 if (WFLAGP(wwin, start_maximized) && !WFLAGP(wwin, no_resizable)) {
769 wwin->flags.maximized = MAX_VERTICAL|MAX_HORIZONTAL;
772 #ifdef GNOME_STUFF
773 wGNOMECheckInitialClientState(wwin);
774 #endif
775 #ifdef KWM_HINTS
776 wKWMCheckClientInitialState(wwin);
777 #endif
779 /* apply previous state if it exists and we're in startup */
780 if (scr->flags.startup && wm_state >= 0) {
782 if (wm_state == IconicState) {
784 wwin->flags.miniaturized = 1;
786 } else if (wm_state == WithdrawnState) {
788 withdraw = True;
792 /* if there is a saved state (from file), restore it */
793 win_state = NULL;
794 if (wwin->main_window!=None/* && wwin->main_window!=window*/) {
795 win_state = (WWindowState*)wWindowGetSavedState(wwin->main_window);
796 } else {
797 win_state = (WWindowState*)wWindowGetSavedState(window);
799 if (win_state && !withdraw) {
801 if (win_state->state->hidden>0)
802 wwin->flags.hidden = win_state->state->hidden;
804 if (win_state->state->shaded>0 && !WFLAGP(wwin, no_shadeable))
805 wwin->flags.shaded = win_state->state->shaded;
807 if (win_state->state->miniaturized>0 &&
808 !WFLAGP(wwin, no_miniaturizable)) {
809 wwin->flags.miniaturized = win_state->state->miniaturized;
811 if (!IS_OMNIPRESENT(wwin)) {
812 int w = wDefaultGetStartWorkspace(scr, wwin->wm_instance,
813 wwin->wm_class);
814 if (w < 0 || w >= scr->workspace_count) {
815 workspace = win_state->state->workspace;
816 if (workspace >= scr->workspace_count)
817 workspace = scr->current_workspace;
818 } else {
819 workspace = w;
821 } else {
822 workspace = scr->current_workspace;
826 /* if we're restarting, restore saved state (from hints).
827 * This will overwrite previous */
829 WSavedState *wstate;
831 if (getSavedState(window, &wstate)) {
832 wwin->flags.shaded = wstate->shaded;
833 wwin->flags.hidden = wstate->hidden;
834 wwin->flags.miniaturized = wstate->miniaturized;
835 workspace = wstate->workspace;
837 if (scr->flags.startup && wstate->window_shortcuts >= 0) {
838 int i;
840 for (i = 0; i < MAX_WINDOW_SHORTCUTS; i++) {
841 if (wstate->window_shortcuts & (1<<i)) {
842 if (!scr->shortcutWindows[i])
843 scr->shortcutWindows[i] = WMCreateBag(4);
845 WMPutInBag(scr->shortcutWindows[i], wwin);
849 free(wstate);
853 /* don't let transients start miniaturized if their owners are not */
854 if (transientOwner && !transientOwner->flags.miniaturized
855 && wwin->flags.miniaturized && !withdraw) {
856 wwin->flags.miniaturized = 0;
857 if (wwin->wm_hints)
858 wwin->wm_hints->initial_state = NormalState;
861 /* set workspace on which the window starts */
862 if (workspace >= 0) {
863 if (workspace > scr->workspace_count-1) {
864 workspace = workspace % scr->workspace_count;
866 } else {
867 int w;
869 w = wDefaultGetStartWorkspace(scr, wwin->wm_instance, wwin->wm_class);
871 if (w >= 0 && w < scr->workspace_count && !(IS_OMNIPRESENT(wwin))) {
873 workspace = w;
875 } else {
876 if (wPreferences.open_transients_with_parent && transientOwner) {
878 workspace = transientOwner->frame->workspace;
880 } else {
882 workspace = scr->current_workspace;
887 /* setup window geometry */
888 if (win_state && win_state->state->use_geometry) {
889 width = win_state->state->w;
890 height = win_state->state->h;
892 wWindowConstrainSize(wwin, &width, &height);
894 /* do not ask for window placement if the window is
895 * transient, during startup, if the initial workspace is another one
896 * or if the window wants to start iconic.
897 * If geometry was saved, restore it. */
899 Bool dontBring = False;
901 if (win_state && win_state->state->use_geometry) {
902 x = win_state->state->x;
903 y = win_state->state->y;
904 } else if ((wwin->transient_for==None
905 || wPreferences.window_placement!=WPM_MANUAL)
906 && !scr->flags.startup
907 && workspace == scr->current_workspace
908 && !wwin->flags.miniaturized
909 && !wwin->flags.maximized
910 && !(wwin->normal_hints->flags & (USPosition|PPosition))) {
911 PlaceWindow(wwin, &x, &y, width, height);
912 if (wPreferences.window_placement == WPM_MANUAL)
913 dontBring = True;
916 if (WFLAGP(wwin, dont_move_off) && dontBring)
917 wScreenBringInside(scr, &x, &y, width, height);
920 if (wwin->flags.urgent) {
921 if (!IS_OMNIPRESENT(wwin))
922 wwin->flags.omnipresent ^= 1;
926 *--------------------------------------------------
928 * Create frame, borders and do reparenting
930 *--------------------------------------------------
932 foo = WFF_LEFT_BUTTON | WFF_RIGHT_BUTTON;
933 #ifdef XKB_BUTTON_HINT
934 if (wPreferences.modelock)
935 foo |= WFF_LANGUAGE_BUTTON;
936 #endif
937 if (!WFLAGP(wwin, no_titlebar))
938 foo |= WFF_TITLEBAR;
939 if (!WFLAGP(wwin, no_resizebar))
940 foo |= WFF_RESIZEBAR;
941 if (!WFLAGP(wwin, no_border))
942 foo |= WFF_BORDER;
944 wwin->frame = wFrameWindowCreate(scr, window_level,
945 x, y, width, height,
946 &wPreferences.window_title_clearance, foo,
947 scr->window_title_texture,
948 scr->resizebar_texture,
949 scr->window_title_pixel,
950 #ifdef DRAWSTRING_PLUGIN
951 W_STRING_FTITLE,
952 #endif
953 &scr->window_title_gc,
954 &scr->title_font);
956 wwin->frame->flags.is_client_window_frame = 1;
957 wwin->frame->flags.justification = wPreferences.title_justification;
959 /* setup button images */
960 wWindowUpdateButtonImages(wwin);
962 /* hide unused buttons */
963 foo = 0;
964 if (WFLAGP(wwin, no_close_button))
965 foo |= WFF_RIGHT_BUTTON;
966 if (WFLAGP(wwin, no_miniaturize_button))
967 foo |= WFF_LEFT_BUTTON;
968 #ifdef XKB_BUTTON_HINT
969 if (WFLAGP(wwin, no_language_button) || WFLAGP(wwin, no_focusable))
970 foo |= WFF_LANGUAGE_BUTTON;
971 #endif
972 if (foo!=0)
973 wFrameWindowHideButton(wwin->frame, foo);
975 wwin->frame->child = wwin;
977 #ifdef OLWM_HINTS
978 /* emulate olwm push pin. Make the button look as pushed-in for
979 * the pinned-out state. When the button is clicked, it will
980 * revert to the normal position, which means the pin is pinned-in.
982 if (wwin->flags.olwm_push_pin_out)
983 wFrameWindowUpdatePushButton(wwin->frame, True);
984 #endif /* OLWM_HINTS */
986 wFrameWindowChangeTitle(wwin->frame, title ? title : DEF_WINDOW_TITLE);
987 if (title)
988 XFree(title);
990 wwin->frame->workspace = workspace;
992 wwin->frame->on_click_left = windowIconifyClick;
993 #ifdef XKB_BUTTON_HINT
994 if (wPreferences.modelock)
995 wwin->frame->on_click_language = windowLanguageClick;
996 #endif
998 wwin->frame->on_click_right = windowCloseClick;
999 wwin->frame->on_dblclick_right = windowCloseDblClick;
1001 wwin->frame->on_mousedown_titlebar = titlebarMouseDown;
1002 wwin->frame->on_dblclick_titlebar = titlebarDblClick;
1004 wwin->frame->on_mousedown_resizebar = resizebarMouseDown;
1007 XSelectInput(dpy, wwin->client_win,
1008 wwin->event_mask & ~StructureNotifyMask);
1010 XReparentWindow(dpy, wwin->client_win, wwin->frame->core->window,
1011 0, wwin->frame->top_width);
1013 XSelectInput(dpy, wwin->client_win, wwin->event_mask);
1017 int gx, gy;
1019 wClientGetGravityOffsets(wwin, &gx, &gy);
1021 /* if gravity is to the south, account for the border sizes */
1022 if (gy > 0)
1023 y -= wwin->frame->top_width + wwin->frame->bottom_width;
1027 * wWindowConfigure() will init the client window's size
1028 * (wwin->client.{width,height}) and all other geometry
1029 * related variables (frame_x,frame_y)
1031 wWindowConfigure(wwin, x, y, width, height);
1033 /* to make sure the window receives it's new position after reparenting */
1034 wWindowSynthConfigureNotify(wwin);
1037 *--------------------------------------------------
1039 * Setup descriptors and save window to internal
1040 * lists
1042 *--------------------------------------------------
1045 if (wwin->main_window!=None) {
1046 WApplication *app;
1047 WWindow *leader;
1049 /* Leader windows do not necessary set themselves as leaders.
1050 * If this is the case, point the leader of this window to
1051 * itself */
1052 leader = wWindowFor(wwin->main_window);
1053 if (leader && leader->main_window==None) {
1054 leader->main_window = leader->client_win;
1056 app = wApplicationCreate(scr, wwin->main_window);
1057 if (app) {
1058 app->last_workspace = workspace;
1061 * Do application specific stuff, like setting application
1062 * wide attributes.
1065 if (wwin->flags.hidden) {
1066 /* if the window was set to hidden because it was hidden
1067 * in a previous incarnation and that state was restored */
1068 app->flags.hidden = 1;
1071 if (app->flags.hidden) {
1072 wwin->flags.hidden = 1;
1077 /* setup the frame descriptor */
1078 wwin->frame->core->descriptor.handle_mousedown = frameMouseDown;
1079 wwin->frame->core->descriptor.parent = wwin;
1080 wwin->frame->core->descriptor.parent_type = WCLASS_WINDOW;
1082 /* don't let windows go away if we die */
1083 XAddToSaveSet(dpy, window);
1085 XLowerWindow(dpy, window);
1087 /* if window is in this workspace and should be mapped, then map it */
1088 if (!wwin->flags.miniaturized
1089 && (workspace == scr->current_workspace || IS_OMNIPRESENT(wwin))
1090 && !wwin->flags.hidden && !withdraw) {
1092 /* The following "if" is to avoid crashing of clients that expect
1093 * WM_STATE set before they get mapped. Else WM_STATE is set later,
1094 * after the return from this function.
1096 if (wwin->wm_hints && (wwin->wm_hints->flags & StateHint)) {
1097 wClientSetState(wwin, wwin->wm_hints->initial_state, None);
1098 } else {
1099 wClientSetState(wwin, NormalState, None);
1102 #if 0
1103 /* if not auto focus, then map the window under the currently
1104 * focused window */
1105 #define _WIDTH(w) (w)->frame->core->width
1106 #define _HEIGHT(w) (w)->frame->core->height
1107 if (!wPreferences.auto_focus && scr->focused_window
1108 && !scr->flags.startup && !transientOwner
1109 && ((wWindowObscuresWindow(wwin, scr->focused_window)
1110 && (_WIDTH(wwin) > (_WIDTH(scr->focused_window)*5)/3
1111 || _HEIGHT(wwin) > (_HEIGHT(scr->focused_window)*5)/3)
1112 && WINDOW_LEVEL(scr->focused_window) == WINDOW_LEVEL(wwin))
1113 || wwin->flags.maximized)) {
1114 MoveInStackListUnder(scr->focused_window->frame->core,
1115 wwin->frame->core);
1117 #undef _WIDTH
1118 #undef _HEIGHT
1120 #endif
1122 if (wPreferences.superfluous && !wPreferences.no_animations
1123 && !scr->flags.startup && wwin->transient_for==None
1125 * The brain damaged idiotic non-click to focus modes will
1126 * have trouble with this because:
1128 * 1. window is created and mapped by the client
1129 * 2. window is mapped by wmaker in small size
1130 * 3. window is animated to grow to normal size
1131 * 4. this function returns to normal event loop
1132 * 5. eventually, the EnterNotify event that would trigger
1133 * the window focusing (if the mouse is over that window)
1134 * will be processed by wmaker.
1135 * But since this event will be rather delayed
1136 * (step 3 has a large delay) the time when the event ocurred
1137 * and when it is processed, the client that owns that window
1138 * will reject the XSetInputFocus() for it.
1140 && (wPreferences.focus_mode==WKF_CLICK
1141 || wPreferences.auto_focus)) {
1142 DoWindowBirth(wwin);
1145 wWindowMap(wwin);
1148 /* setup stacking descriptor */
1149 if (transientOwner) {
1150 /* && wPreferences.on_top_transients */
1151 if (transientOwner) {
1152 wwin->frame->core->stacking->child_of =
1153 transientOwner->frame->core;
1155 } else {
1156 wwin->frame->core->stacking->child_of = NULL;
1160 if (!scr->focused_window) {
1161 /* first window on the list */
1162 wwin->next = NULL;
1163 wwin->prev = NULL;
1164 scr->focused_window = wwin;
1165 } else {
1166 WWindow *tmp;
1168 /* add window at beginning of focus window list */
1169 tmp = scr->focused_window;
1170 while (tmp->prev)
1171 tmp = tmp->prev;
1172 tmp->prev = wwin;
1173 wwin->next = tmp;
1174 wwin->prev = NULL;
1177 #ifdef GNOME_STUFF
1178 wGNOMEUpdateClientStateHint(wwin, True);
1179 #endif
1180 #ifdef KWM_HINTS
1181 wKWMUpdateClientWorkspace(wwin);
1182 wKWMUpdateClientStateHint(wwin, KWMAllFlags);
1183 #endif
1185 XUngrabServer(dpy);
1188 *--------------------------------------------------
1190 * Final preparations before window is ready to go
1192 *--------------------------------------------------
1195 wFrameWindowChangeState(wwin->frame, WS_UNFOCUSED);
1198 if (!wwin->flags.miniaturized && workspace == scr->current_workspace
1199 && !wwin->flags.hidden) {
1200 if (((transientOwner && transientOwner->flags.focused)
1201 || wPreferences.auto_focus) && !WFLAGP(wwin, no_focusable))
1202 wSetFocusTo(scr, wwin);
1204 wWindowResetMouseGrabs(wwin);
1206 if (!WFLAGP(wwin, no_bind_keys)) {
1207 wWindowSetKeyGrabs(wwin);
1209 #ifdef GNOME_STUFF
1210 wGNOMEUpdateClientListHint(scr);
1211 #endif
1212 #ifdef KWM_HINTS
1213 wwin->flags.kwm_managed = 1;
1215 wKWMSendEventMessage(wwin, WKWMAddWindow);
1216 #endif
1218 wColormapInstallForWindow(scr, scr->cmap_window);
1220 UpdateSwitchMenu(scr, wwin, ACTION_ADD);
1222 #ifdef OLWM_HINTS
1223 if (wwin->client_flags.olwm_warp_to_pin && wwin->frame->titlebar != NULL
1224 && !WFLAGP(wwin, no_close_button) && !withdraw) {
1226 XWarpPointer(dpy, None, None, 0, 0, 0, 0,
1227 wwin->frame_x + width - wwin->frame->titlebar->height * 2,
1228 wwin->frame_y);
1230 #endif
1233 *------------------------------------------------------------
1234 * Setup Notification Observers
1235 *------------------------------------------------------------
1237 WMAddNotificationObserver(appearanceObserver, wwin,
1238 WNWindowAppearanceSettingsChanged, wwin);
1242 *--------------------------------------------------
1244 * Cleanup temporary stuff
1246 *--------------------------------------------------
1249 if (win_state)
1250 wWindowDeleteSavedState(win_state);
1252 /* If the window must be withdrawed, then do it now.
1253 * Must do some optimization, 'though */
1254 if (withdraw) {
1255 wwin->flags.mapped = 0;
1256 wClientSetState(wwin, WithdrawnState, None);
1257 wUnmanageWindow(wwin, True, False);
1258 wwin = NULL;
1261 return wwin;
1268 WWindow*
1269 wManageInternalWindow(WScreen *scr, Window window, Window owner,
1270 char *title, int x, int y, int width, int height)
1272 WWindow *wwin;
1273 int foo;
1275 wwin = wWindowCreate();
1277 WMAddNotificationObserver(appearanceObserver, wwin,
1278 WNWindowAppearanceSettingsChanged, wwin);
1280 wwin->flags.internal_window = 1;
1282 WSETUFLAG(wwin, omnipresent, 1);
1283 WSETUFLAG(wwin, no_shadeable, 1);
1284 WSETUFLAG(wwin, no_resizable, 1);
1285 WSETUFLAG(wwin, no_miniaturizable, 1);
1287 wwin->focus_mode = WFM_PASSIVE;
1289 wwin->client_win = window;
1290 wwin->screen_ptr = scr;
1292 wwin->transient_for = owner;
1294 wwin->client.x = x;
1295 wwin->client.y = y;
1296 wwin->client.width = width;
1297 wwin->client.height = height;
1299 wwin->frame_x = wwin->client.x;
1300 wwin->frame_y = wwin->client.y;
1303 foo = WFF_RIGHT_BUTTON|WFF_BORDER;
1304 foo |= WFF_TITLEBAR;
1305 #ifdef XKB_BUTTON_HINT
1306 foo |= WFF_LANGUAGE_BUTTON;
1307 #endif
1309 wwin->frame = wFrameWindowCreate(scr, WMFloatingLevel,
1310 wwin->frame_x, wwin->frame_y,
1311 width, height,
1312 &wPreferences.window_title_clearance, foo,
1313 scr->window_title_texture,
1314 scr->resizebar_texture,
1315 scr->window_title_pixel,
1316 #ifdef DRAWSTRING_PLUGIN
1317 W_STRING_FTITLE,
1318 #endif
1319 &scr->window_title_gc,
1320 &scr->title_font);
1322 XSaveContext(dpy, window, wWinContext, (XPointer)&wwin->client_descriptor);
1324 wwin->frame->flags.is_client_window_frame = 1;
1325 wwin->frame->flags.justification = wPreferences.title_justification;
1327 wFrameWindowChangeTitle(wwin->frame, title);
1329 /* setup button images */
1330 wWindowUpdateButtonImages(wwin);
1332 /* hide buttons */
1333 wFrameWindowHideButton(wwin->frame, WFF_RIGHT_BUTTON);
1335 wwin->frame->child = wwin;
1337 wwin->frame->workspace = wwin->screen_ptr->current_workspace;
1339 #ifdef XKB_BUTTON_HINT
1340 if (wPreferences.modelock)
1341 wwin->frame->on_click_language = windowLanguageClick;
1342 #endif
1344 wwin->frame->on_click_right = windowCloseClick;
1346 wwin->frame->on_mousedown_titlebar = titlebarMouseDown;
1347 wwin->frame->on_dblclick_titlebar = titlebarDblClick;
1349 wwin->frame->on_mousedown_resizebar = resizebarMouseDown;
1351 wwin->client.y += wwin->frame->top_width;
1352 XReparentWindow(dpy, wwin->client_win, wwin->frame->core->window,
1353 0, wwin->frame->top_width);
1355 wWindowConfigure(wwin, wwin->frame_x, wwin->frame_y,
1356 wwin->client.width, wwin->client.height);
1358 /* setup the frame descriptor */
1359 wwin->frame->core->descriptor.handle_mousedown = frameMouseDown;
1360 wwin->frame->core->descriptor.parent = wwin;
1361 wwin->frame->core->descriptor.parent_type = WCLASS_WINDOW;
1364 XLowerWindow(dpy, window);
1365 XMapSubwindows(dpy, wwin->frame->core->window);
1367 /* setup stacking descriptor */
1368 if (
1369 #ifdef removed
1370 wPreferences.on_top_transients &&
1371 #endif
1372 wwin->transient_for!=None
1373 && wwin->transient_for!=scr->root_win) {
1374 WWindow *tmp;
1375 tmp = wWindowFor(wwin->transient_for);
1376 if (tmp)
1377 wwin->frame->core->stacking->child_of = tmp->frame->core;
1378 } else {
1379 wwin->frame->core->stacking->child_of = NULL;
1383 if (!scr->focused_window) {
1384 /* first window on the list */
1385 wwin->next = NULL;
1386 wwin->prev = NULL;
1387 scr->focused_window = wwin;
1388 } else {
1389 WWindow *tmp;
1391 /* add window at beginning of focus window list */
1392 tmp = scr->focused_window;
1393 while (tmp->prev)
1394 tmp = tmp->prev;
1395 tmp->prev = wwin;
1396 wwin->next = tmp;
1397 wwin->prev = NULL;
1400 wFrameWindowChangeState(wwin->frame, WS_UNFOCUSED);
1402 /* if (wPreferences.auto_focus)*/
1403 wSetFocusTo(scr, wwin);
1405 wWindowResetMouseGrabs(wwin);
1407 wWindowSetKeyGrabs(wwin);
1409 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_ADD);
1411 return wwin;
1416 *----------------------------------------------------------------------
1417 * wUnmanageWindow--
1418 * Removes the frame window from a window and destroys all data
1419 * related to it. The window will be reparented back to the root window
1420 * if restore is True.
1422 * Side effects:
1423 * Everything related to the window is destroyed and the window
1424 * is removed from the window lists. Focus is set to the previous on the
1425 * window list.
1426 *----------------------------------------------------------------------
1428 void
1429 wUnmanageWindow(WWindow *wwin, Bool restore, Bool destroyed)
1431 WCoreWindow *frame = wwin->frame->core;
1432 WWindow *owner = NULL;
1433 WWindow *newFocusedWindow = NULL;
1434 int wasFocused;
1435 WScreen *scr = wwin->screen_ptr;
1438 #ifdef KWM_HINTS
1439 wwin->frame->workspace = -1;
1441 wKWMUpdateClientWorkspace(wwin);
1442 #endif
1444 /* First close attribute editor window if open */
1445 if (wwin->flags.inspector_open) {
1446 wCloseInspectorForWindow(wwin);
1449 /* Close window menu if it's open for this window */
1450 if (wwin->flags.menu_open_for_me) {
1451 CloseWindowMenu(scr);
1454 if (!destroyed) {
1455 if (!wwin->flags.internal_window)
1456 XRemoveFromSaveSet(dpy, wwin->client_win);
1458 XSelectInput(dpy, wwin->client_win, NoEventMask);
1460 XUngrabButton(dpy, AnyButton, AnyModifier, wwin->client_win);
1461 XUngrabKey(dpy, AnyKey, AnyModifier, wwin->client_win);
1464 XUnmapWindow(dpy, frame->window);
1466 XUnmapWindow(dpy, wwin->client_win);
1468 /* deselect window */
1469 wSelectWindow(wwin, False);
1471 /* remove all pending events on window */
1472 /* I think this only matters for autoraise */
1473 if (wPreferences.raise_delay)
1474 WMDeleteTimerWithClientData(wwin->frame->core);
1476 XFlush(dpy);
1478 UpdateSwitchMenu(scr, wwin, ACTION_REMOVE);
1480 /* reparent the window back to the root */
1481 if (restore)
1482 wClientRestore(wwin);
1484 if (wwin->transient_for!=scr->root_win) {
1485 owner = wWindowFor(wwin->transient_for);
1486 if (owner) {
1487 if (!owner->flags.semi_focused) {
1488 owner = NULL;
1489 } else {
1490 owner->flags.semi_focused = 0;
1495 wasFocused = wwin->flags.focused;
1497 /* remove from window focus list */
1498 if (!wwin->prev && !wwin->next) {
1499 /* was the only window */
1500 scr->focused_window = NULL;
1501 newFocusedWindow = NULL;
1502 } else {
1503 WWindow *tmp;
1505 if (wwin->prev)
1506 wwin->prev->next = wwin->next;
1507 if (wwin->next)
1508 wwin->next->prev = wwin->prev;
1509 else {
1510 scr->focused_window = wwin->prev;
1511 scr->focused_window->next = NULL;
1514 if (wPreferences.focus_mode==WKF_CLICK) {
1516 /* if in click to focus mode and the window
1517 * was a transient, focus the owner window
1519 tmp = NULL;
1520 if (wPreferences.focus_mode==WKF_CLICK) {
1521 tmp = wWindowFor(wwin->transient_for);
1522 if (tmp && (!tmp->flags.mapped || WFLAGP(tmp, no_focusable))) {
1523 tmp = NULL;
1526 /* otherwise, focus the next one in the focus list */
1527 if (!tmp) {
1528 tmp = scr->focused_window;
1529 while (tmp) { /* look for one in the window list first */
1530 if (!WFLAGP(tmp, no_focusable) && !WFLAGP(tmp, skip_window_list)
1531 && (tmp->flags.mapped || tmp->flags.shaded))
1532 break;
1533 tmp = tmp->prev;
1535 if (!tmp) { /* if unsuccessful, choose any focusable window */
1536 tmp = scr->focused_window;
1537 while (tmp) {
1538 if (!WFLAGP(tmp, no_focusable)
1539 && (tmp->flags.mapped || tmp->flags.shaded))
1540 break;
1541 tmp = tmp->prev;
1546 newFocusedWindow = tmp;
1548 } else if (wPreferences.focus_mode==WKF_SLOPPY
1549 || wPreferences.focus_mode==WKF_POINTER) {
1550 unsigned int mask;
1551 int foo;
1552 Window bar, win;
1554 /* This is to let the root window get the keyboard input
1555 * if Sloppy focus mode and no other window get focus.
1556 * This way keybindings will not freeze.
1558 tmp = NULL;
1559 if (XQueryPointer(dpy, scr->root_win, &bar, &win,
1560 &foo, &foo, &foo, &foo, &mask))
1561 tmp = wWindowFor(win);
1562 if (tmp == wwin)
1563 tmp = NULL;
1564 newFocusedWindow = tmp;
1565 } else {
1566 newFocusedWindow = NULL;
1570 if (!wwin->flags.internal_window) {
1571 #ifdef GNOME_STUFF
1572 wGNOMERemoveClient(wwin);
1573 #endif
1574 #ifdef KWM_HINTS
1575 wKWMSendEventMessage(wwin, WKWMRemoveWindow);
1576 #endif
1579 #ifdef DEBUG
1580 printf("destroying window %x frame %x\n", (unsigned)wwin->client_win,
1581 (unsigned)frame->window);
1582 #endif
1584 if (wasFocused) {
1585 if (newFocusedWindow != owner && owner) {
1586 wFrameWindowChangeState(owner->frame, WS_UNFOCUSED);
1588 wSetFocusTo(scr, newFocusedWindow);
1590 wWindowDestroy(wwin);
1591 XFlush(dpy);
1595 void
1596 wWindowMap(WWindow *wwin)
1598 XMapWindow(dpy, wwin->frame->core->window);
1599 if (!wwin->flags.shaded) {
1600 /* window will be remapped when getting MapNotify */
1601 XSelectInput(dpy, wwin->client_win,
1602 wwin->event_mask & ~StructureNotifyMask);
1603 XMapWindow(dpy, wwin->client_win);
1604 XSelectInput(dpy, wwin->client_win, wwin->event_mask);
1606 wwin->flags.mapped = 1;
1611 void
1612 wWindowUnmap(WWindow *wwin)
1614 wwin->flags.mapped = 0;
1616 /* prevent window withdrawal when getting UnmapNotify */
1617 XSelectInput(dpy, wwin->client_win,
1618 wwin->event_mask & ~StructureNotifyMask);
1619 XUnmapWindow(dpy, wwin->client_win);
1620 XSelectInput(dpy, wwin->client_win, wwin->event_mask);
1622 XUnmapWindow(dpy, wwin->frame->core->window);
1627 void
1628 wWindowFocus(WWindow *wwin, WWindow *owin)
1630 WWindow *nowner;
1631 WWindow *oowner;
1633 #ifdef KEEP_XKB_LOCK_STATUS
1634 if (wPreferences.modelock) {
1635 XkbLockGroup(dpy, XkbUseCoreKbd, wwin->frame->languagemode);
1637 #endif /* KEEP_XKB_LOCK_STATUS */
1639 wwin->flags.semi_focused = 0;
1641 wFrameWindowChangeState(wwin->frame, WS_FOCUSED);
1643 wwin->flags.focused = 1;
1645 wWindowResetMouseGrabs(wwin);
1647 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1649 if (owin == wwin || !owin)
1650 return;
1652 nowner = wWindowFor(wwin->transient_for);
1654 /* new window is a transient for the old window */
1655 if (nowner == owin) {
1656 owin->flags.semi_focused = 1;
1657 wWindowUnfocus(nowner);
1658 return;
1661 oowner = wWindowFor(owin->transient_for);
1663 /* new window is owner of old window */
1664 if (wwin == oowner) {
1665 wWindowUnfocus(owin);
1666 return;
1669 if (!nowner) {
1670 wWindowUnfocus(owin);
1671 return;
1674 /* new window has same owner of old window */
1675 if (oowner == nowner) {
1676 /* prevent unfocusing of owner */
1677 oowner->flags.semi_focused = 0;
1678 wWindowUnfocus(owin);
1679 oowner->flags.semi_focused = 1;
1681 return;
1684 /* nowner != NULL && oowner != nowner */
1685 nowner->flags.semi_focused = 1;
1686 wWindowUnfocus(nowner);
1687 wWindowUnfocus(owin);
1691 void
1692 wWindowUnfocus(WWindow *wwin)
1694 CloseWindowMenu(wwin->screen_ptr);
1696 wFrameWindowChangeState(wwin->frame, wwin->flags.semi_focused
1697 ? WS_PFOCUSED : WS_UNFOCUSED);
1699 if (wwin->transient_for!=None
1700 && wwin->transient_for!=wwin->screen_ptr->root_win) {
1701 WWindow *owner;
1702 owner = wWindowFor(wwin->transient_for);
1703 if (owner && owner->flags.semi_focused) {
1704 owner->flags.semi_focused = 0;
1705 if (owner->flags.mapped || owner->flags.shaded) {
1706 wWindowUnfocus(owner);
1707 wFrameWindowPaint(owner->frame);
1711 wwin->flags.focused = 0;
1713 wWindowResetMouseGrabs(wwin);
1715 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1722 *----------------------------------------------------------------------
1724 * wWindowConstrainSize--
1725 * Constrains size for the client window, taking the maximal size,
1726 * window resize increments and other size hints into account.
1728 * Returns:
1729 * The closest size to what was given that the client window can
1730 * have.
1732 *----------------------------------------------------------------------
1734 void
1735 wWindowConstrainSize(WWindow *wwin, int *nwidth, int *nheight)
1737 int width = *nwidth;
1738 int height = *nheight;
1739 int winc = 1;
1740 int hinc = 1;
1741 int minW = 1, minH = 1;
1742 int maxW = wwin->screen_ptr->scr_width*2;
1743 int maxH = wwin->screen_ptr->scr_height*2;
1744 int minAX = -1, minAY = -1;
1745 int maxAX = -1, maxAY = -1;
1746 int baseW = 0;
1747 int baseH = 0;
1749 if (wwin->normal_hints) {
1750 winc = wwin->normal_hints->width_inc;
1751 hinc = wwin->normal_hints->height_inc;
1752 minW = wwin->normal_hints->min_width;
1753 minH = wwin->normal_hints->min_height;
1754 maxW = wwin->normal_hints->max_width;
1755 maxH = wwin->normal_hints->max_height;
1756 if (wwin->normal_hints->flags & PAspect) {
1757 minAX = wwin->normal_hints->min_aspect.x;
1758 minAY = wwin->normal_hints->min_aspect.y;
1759 maxAX = wwin->normal_hints->max_aspect.x;
1760 maxAY = wwin->normal_hints->max_aspect.y;
1764 if (width < minW)
1765 width = minW;
1766 if (height < minH)
1767 height = minH;
1769 if (width > maxW)
1770 width = maxW;
1771 if (height > maxH)
1772 height = maxH;
1774 /* aspect ratio code borrowed from olwm */
1775 if (minAX > 0) {
1776 /* adjust max aspect ratio */
1777 if (!(maxAX == 1 && maxAY == 1) && width * maxAY > height * maxAX) {
1778 if (maxAX > maxAY) {
1779 height = (width * maxAY) / maxAX;
1780 if (height > maxH) {
1781 height = maxH;
1782 width = (height * maxAX) / maxAY;
1784 } else {
1785 width = (height * maxAX) / maxAY;
1786 if (width > maxW) {
1787 width = maxW;
1788 height = (width * maxAY) / maxAX;
1793 /* adjust min aspect ratio */
1794 if (!(minAX == 1 && minAY == 1) && width * minAY < height * minAX) {
1795 if (minAX > minAY) {
1796 height = (width * minAY) / minAX;
1797 if (height < minH) {
1798 height = minH;
1799 width = (height * minAX) / minAY;
1801 } else {
1802 width = (height * minAX) / minAY;
1803 if (width < minW) {
1804 width = minW;
1805 height = (width * minAY) / minAX;
1811 if (baseW != 0) {
1812 width = (((width - baseW) / winc) * winc) + baseW;
1813 } else {
1814 width = (((width - minW) / winc) * winc) + minW;
1817 if (baseW != 0) {
1818 height = (((height - baseH) / hinc) * hinc) + baseH;
1819 } else {
1820 height = (((height - minH) / hinc) * hinc) + minH;
1823 *nwidth = width;
1824 *nheight = height;
1828 void
1829 wWindowChangeWorkspace(WWindow *wwin, int workspace)
1831 WScreen *scr = wwin->screen_ptr;
1832 WApplication *wapp;
1833 int unmap = 0;
1835 if (workspace >= scr->workspace_count || workspace < 0
1836 || workspace == wwin->frame->workspace)
1837 return;
1839 if (workspace != scr->current_workspace) {
1840 /* Sent to other workspace. Unmap window */
1841 if ((wwin->flags.mapped
1842 || wwin->flags.shaded
1843 || (wwin->flags.miniaturized && !wPreferences.sticky_icons))
1844 && !IS_OMNIPRESENT(wwin) && !wwin->flags.changing_workspace) {
1846 wapp = wApplicationOf(wwin->main_window);
1847 if (wapp) {
1848 wapp->last_workspace = workspace;
1850 if (wwin->flags.miniaturized) {
1851 if (wwin->icon) {
1852 XUnmapWindow(dpy, wwin->icon->core->window);
1853 wwin->icon->mapped = 0;
1855 } else {
1856 unmap = 1;
1857 wSetFocusTo(scr, NULL);
1860 } else {
1861 /* brought to current workspace. Map window */
1862 if (wwin->flags.miniaturized && !wPreferences.sticky_icons) {
1863 if (wwin->icon) {
1864 XMapWindow(dpy, wwin->icon->core->window);
1865 wwin->icon->mapped = 1;
1867 } else if (!wwin->flags.mapped &&
1868 !(wwin->flags.miniaturized || wwin->flags.hidden)) {
1869 wWindowMap(wwin);
1872 if (!IS_OMNIPRESENT(wwin)) {
1873 wwin->frame->workspace = workspace;
1874 UpdateSwitchMenu(scr, wwin, ACTION_CHANGE_WORKSPACE);
1876 #ifdef GNOME_STUFF
1877 wGNOMEUpdateClientStateHint(wwin, True);
1878 #endif
1879 #ifdef KWM_HINTS
1880 wKWMUpdateClientWorkspace(wwin);
1881 wKWMSendEventMessage(wwin, WKWMChangedClient);
1882 #endif
1883 if (unmap) {
1884 wWindowUnmap(wwin);
1889 void
1890 wWindowSynthConfigureNotify(WWindow *wwin)
1892 XEvent sevent;
1894 sevent.type = ConfigureNotify;
1895 sevent.xconfigure.display = dpy;
1896 sevent.xconfigure.event = wwin->client_win;
1897 sevent.xconfigure.window = wwin->client_win;
1899 sevent.xconfigure.x = wwin->client.x;
1900 sevent.xconfigure.y = wwin->client.y;
1901 sevent.xconfigure.width = wwin->client.width;
1902 sevent.xconfigure.height = wwin->client.height;
1904 sevent.xconfigure.border_width = wwin->old_border_width;
1905 if (WFLAGP(wwin, no_titlebar))
1906 sevent.xconfigure.above = None;
1907 else
1908 sevent.xconfigure.above = wwin->frame->titlebar->window;
1910 sevent.xconfigure.override_redirect = False;
1911 XSendEvent(dpy, wwin->client_win, False, StructureNotifyMask, &sevent);
1912 #ifdef KWM_HINTS
1913 wKWMSendEventMessage(wwin, WKWMChangedClient);
1914 #endif
1915 XFlush(dpy);
1920 *----------------------------------------------------------------------
1921 * wWindowConfigure--
1922 * Configures the frame, decorations and client window to the
1923 * specified geometry. The geometry is not checked for validity,
1924 * wWindowConstrainSize() must be used for that.
1925 * The size parameters are for the client window, but the position is
1926 * for the frame.
1927 * The client window receives a ConfigureNotify event, according
1928 * to what ICCCM says.
1930 * Returns:
1931 * None
1933 * Side effects:
1934 * Window size and position are changed and client window receives
1935 * a ConfigureNotify event.
1936 *----------------------------------------------------------------------
1938 void
1939 wWindowConfigure(wwin, req_x, req_y, req_width, req_height)
1940 WWindow *wwin;
1941 int req_x, req_y; /* new position of the frame */
1942 int req_width, req_height; /* new size of the client */
1944 int synth_notify = False;
1945 int resize;
1947 resize = (req_width!=wwin->client.width
1948 || req_height!=wwin->client.height);
1950 * if the window is being moved but not resized then
1951 * send a synthetic ConfigureNotify
1953 if ((req_x!=wwin->frame_x || req_y!=wwin->frame_y) && !resize) {
1954 synth_notify = True;
1957 if (WFLAGP(wwin, dont_move_off))
1958 wScreenBringInside(wwin->screen_ptr, &req_x, &req_y,
1959 req_width, req_height);
1960 if (resize) {
1961 if (req_width < MIN_WINDOW_SIZE)
1962 req_width = MIN_WINDOW_SIZE;
1963 if (req_height < MIN_WINDOW_SIZE)
1964 req_height = MIN_WINDOW_SIZE;
1966 /* If growing, resize inner part before frame,
1967 * if shrinking, resize frame before.
1968 * This will prevent the frame (that can have a different color)
1969 * to be exposed, causing flicker */
1970 if (req_height > wwin->frame->core->height
1971 || req_width > wwin->frame->core->width)
1972 XResizeWindow(dpy, wwin->client_win, req_width, req_height);
1974 if (wwin->flags.shaded) {
1975 wFrameWindowConfigure(wwin->frame, req_x, req_y,
1976 req_width, wwin->frame->core->height);
1977 wwin->old_geometry.height = req_height;
1978 } else {
1979 int h;
1981 h = req_height + wwin->frame->top_width
1982 + wwin->frame->bottom_width;
1984 wFrameWindowConfigure(wwin->frame, req_x, req_y, req_width, h);
1987 if (!(req_height > wwin->frame->core->height
1988 || req_width > wwin->frame->core->width))
1989 XResizeWindow(dpy, wwin->client_win, req_width, req_height);
1991 wwin->client.x = req_x;
1992 wwin->client.y = req_y + wwin->frame->top_width;
1993 wwin->client.width = req_width;
1994 wwin->client.height = req_height;
1995 } else {
1996 wwin->client.x = req_x;
1997 wwin->client.y = req_y + wwin->frame->top_width;
1999 XMoveWindow(dpy, wwin->frame->core->window, req_x, req_y);
2001 wwin->frame_x = req_x;
2002 wwin->frame_y = req_y;
2004 #ifdef SHAPE
2005 if (wShapeSupported && wwin->flags.shaped && resize) {
2006 wWindowSetShape(wwin);
2008 #endif
2010 if (synth_notify)
2011 wWindowSynthConfigureNotify(wwin);
2012 XFlush(dpy);
2016 void
2017 wWindowMove(wwin, req_x, req_y)
2018 WWindow *wwin;
2019 int req_x, req_y; /* new position of the frame */
2021 #ifdef CONFIGURE_WINDOW_WHILE_MOVING
2022 int synth_notify = False;
2024 /* Send a synthetic ConfigureNotify event for every window movement. */
2025 if ((req_x!=wwin->frame_x || req_y!=wwin->frame_y)) {
2026 synth_notify = True;
2028 #else
2029 /* A single synthetic ConfigureNotify event is sent at the end of
2030 * a completed (opaque) movement in moveres.c */
2031 #endif
2033 if (WFLAGP(wwin, dont_move_off))
2034 wScreenBringInside(wwin->screen_ptr, &req_x, &req_y,
2035 wwin->frame->core->width, wwin->frame->core->height);
2037 wwin->client.x = req_x;
2038 wwin->client.y = req_y + wwin->frame->top_width;
2040 XMoveWindow(dpy, wwin->frame->core->window, req_x, req_y);
2042 wwin->frame_x = req_x;
2043 wwin->frame_y = req_y;
2045 #ifdef CONFIGURE_WINDOW_WHILE_MOVING
2046 if (synth_notify)
2047 wWindowSynthConfigureNotify(wwin);
2048 #endif
2052 void
2053 wWindowUpdateButtonImages(WWindow *wwin)
2055 WScreen *scr = wwin->screen_ptr;
2056 Pixmap pixmap, mask;
2057 WFrameWindow *fwin = wwin->frame;
2059 if (WFLAGP(wwin, no_titlebar))
2060 return;
2062 /* miniaturize button */
2064 if (!WFLAGP(wwin, no_miniaturize_button)) {
2065 if (wwin->wm_gnustep_attr
2066 && wwin->wm_gnustep_attr->flags & GSMiniaturizePixmapAttr) {
2067 pixmap = wwin->wm_gnustep_attr->miniaturize_pixmap;
2069 if (wwin->wm_gnustep_attr->flags&GSMiniaturizeMaskAttr) {
2070 mask = wwin->wm_gnustep_attr->miniaturize_mask;
2071 } else {
2072 mask = None;
2075 if (fwin->lbutton_image
2076 && (fwin->lbutton_image->image != pixmap
2077 || fwin->lbutton_image->mask != mask)) {
2078 wPixmapDestroy(fwin->lbutton_image);
2079 fwin->lbutton_image = NULL;
2082 if (!fwin->lbutton_image) {
2083 fwin->lbutton_image = wPixmapCreate(scr, pixmap, mask);
2084 fwin->lbutton_image->client_owned = 1;
2085 fwin->lbutton_image->client_owned_mask = 1;
2087 } else {
2088 if (fwin->lbutton_image && !fwin->lbutton_image->shared) {
2089 wPixmapDestroy(fwin->lbutton_image);
2091 fwin->lbutton_image = scr->b_pixmaps[WBUT_ICONIFY];
2095 #ifdef XKB_BUTTON_HINT
2096 if (!WFLAGP(wwin, no_language_button)) {
2097 if (fwin->languagebutton_image &&
2098 !fwin->languagebutton_image->shared) {
2099 wPixmapDestroy(fwin->languagebutton_image);
2101 fwin->languagebutton_image =
2102 scr->b_pixmaps[WBUT_XKBGROUP1 + fwin->languagemode];
2104 #endif
2106 /* close button */
2108 /* redefine WFLAGP to MGFLAGP to allow broken close operation */
2109 #define MGFLAGP(wwin, FLAG) (wwin)->client_flags.FLAG
2111 if (!WFLAGP(wwin, no_close_button)) {
2112 if (wwin->wm_gnustep_attr
2113 && wwin->wm_gnustep_attr->flags & GSClosePixmapAttr) {
2114 pixmap = wwin->wm_gnustep_attr->close_pixmap;
2116 if (wwin->wm_gnustep_attr->flags&GSCloseMaskAttr)
2117 mask = wwin->wm_gnustep_attr->close_mask;
2118 else
2119 mask = None;
2121 if (fwin->rbutton_image && (fwin->rbutton_image->image != pixmap
2122 || fwin->rbutton_image->mask != mask)) {
2123 wPixmapDestroy(fwin->rbutton_image);
2124 fwin->rbutton_image = NULL;
2127 if (!fwin->rbutton_image) {
2128 fwin->rbutton_image = wPixmapCreate(scr, pixmap, mask);
2129 fwin->rbutton_image->client_owned = 1;
2130 fwin->rbutton_image->client_owned_mask = 1;
2133 } else if (WFLAGP(wwin, kill_close)) {
2135 if (fwin->rbutton_image && !fwin->rbutton_image->shared)
2136 wPixmapDestroy(fwin->rbutton_image);
2138 fwin->rbutton_image = scr->b_pixmaps[WBUT_KILL];
2140 } else if (MGFLAGP(wwin, broken_close)) {
2142 if (fwin->rbutton_image && !fwin->rbutton_image->shared)
2143 wPixmapDestroy(fwin->rbutton_image);
2145 fwin->rbutton_image = scr->b_pixmaps[WBUT_BROKENCLOSE];
2147 } else {
2149 if (fwin->rbutton_image && !fwin->rbutton_image->shared)
2150 wPixmapDestroy(fwin->rbutton_image);
2152 fwin->rbutton_image = scr->b_pixmaps[WBUT_CLOSE];
2156 /* force buttons to be redrawn */
2157 fwin->flags.need_texture_change = 1;
2158 wFrameWindowPaint(fwin);
2163 *---------------------------------------------------------------------------
2164 * wWindowConfigureBorders--
2165 * Update window border configuration according to attribute flags.
2167 *---------------------------------------------------------------------------
2169 void
2170 wWindowConfigureBorders(WWindow *wwin)
2172 if (wwin->frame) {
2173 int flags;
2174 int newy, oldh;
2176 flags = WFF_LEFT_BUTTON|WFF_RIGHT_BUTTON;
2177 #ifdef XKB_BUTTON_HINT
2178 flags |= WFF_LANGUAGE_BUTTON;
2179 #endif
2180 if (!WFLAGP(wwin, no_titlebar))
2181 flags |= WFF_TITLEBAR;
2182 if (!WFLAGP(wwin, no_resizebar))
2183 flags |= WFF_RESIZEBAR;
2184 if (!WFLAGP(wwin, no_border))
2185 flags |= WFF_BORDER;
2186 if (wwin->flags.shaded)
2187 flags |= WFF_IS_SHADED;
2189 oldh = wwin->frame->top_width;
2190 wFrameWindowUpdateBorders(wwin->frame, flags);
2191 if (oldh != wwin->frame->top_width) {
2192 newy = wwin->frame_y + oldh - wwin->frame->top_width;
2194 XMoveWindow(dpy, wwin->client_win, 0, wwin->frame->top_width);
2195 wWindowConfigure(wwin, wwin->frame_x, newy,
2196 wwin->client.width, wwin->client.height);
2199 flags = 0;
2200 if (!WFLAGP(wwin, no_miniaturize_button)
2201 && wwin->frame->flags.hide_left_button)
2202 flags |= WFF_LEFT_BUTTON;
2204 #ifdef XKB_BUTTON_HINT
2205 if (!WFLAGP(wwin, no_language_button)
2206 && wwin->frame->flags.hide_language_button)
2207 flags |= WFF_LANGUAGE_BUTTON;
2208 #endif
2210 if (!WFLAGP(wwin, no_close_button)
2211 && wwin->frame->flags.hide_right_button)
2212 flags |= WFF_RIGHT_BUTTON;
2214 if (flags!=0) {
2215 wWindowUpdateButtonImages(wwin);
2216 wFrameWindowShowButton(wwin->frame, flags);
2219 flags = 0;
2220 if (WFLAGP(wwin, no_miniaturize_button)
2221 && !wwin->frame->flags.hide_left_button)
2222 flags |= WFF_LEFT_BUTTON;
2224 #ifdef XKB_BUTTON_HINT
2225 if (WFLAGP(wwin, no_language_button)
2226 && !wwin->frame->flags.hide_language_button)
2227 flags |= WFF_LANGUAGE_BUTTON;
2228 #endif
2230 if (WFLAGP(wwin, no_close_button)
2231 && !wwin->frame->flags.hide_right_button)
2232 flags |= WFF_RIGHT_BUTTON;
2234 if (flags!=0)
2235 wFrameWindowHideButton(wwin->frame, flags);
2237 #ifdef SHAPE
2238 if (wShapeSupported && wwin->flags.shaped) {
2239 wWindowSetShape(wwin);
2241 #endif
2246 void
2247 wWindowSaveState(WWindow *wwin)
2249 CARD32 data[10];
2250 int i;
2252 memset(data, 0, sizeof(CARD32)*10);
2253 data[0] = wwin->frame->workspace;
2254 data[1] = wwin->flags.miniaturized;
2255 data[2] = wwin->flags.shaded;
2256 data[3] = wwin->flags.hidden;
2258 for (i = 0; i < MAX_WINDOW_SHORTCUTS; i++) {
2259 if (wwin->screen_ptr->shortcutWindows[i] &&
2260 WMCountInBag(wwin->screen_ptr->shortcutWindows[i], wwin))
2261 data[9] |= 1<<i;
2263 XChangeProperty(dpy, wwin->client_win, _XA_WINDOWMAKER_STATE,
2264 _XA_WINDOWMAKER_STATE, 32, PropModeReplace,
2265 (unsigned char *)data, 10);
2269 static int
2270 getSavedState(Window window, WSavedState **state)
2272 Atom type_ret;
2273 int fmt_ret;
2274 unsigned long nitems_ret;
2275 unsigned long bytes_after_ret;
2276 CARD32 *data;
2278 if (XGetWindowProperty(dpy, window, _XA_WINDOWMAKER_STATE, 0, 10,
2279 True, _XA_WINDOWMAKER_STATE,
2280 &type_ret, &fmt_ret, &nitems_ret, &bytes_after_ret,
2281 (unsigned char **)&data)!=Success || !data)
2282 return 0;
2284 *state = malloc(sizeof(WSavedState));
2286 if (*state) {
2287 (*state)->workspace = data[0];
2288 (*state)->miniaturized = data[1];
2289 (*state)->shaded = data[2];
2290 (*state)->hidden = data[3];
2291 (*state)->use_geometry = data[4];
2292 (*state)->x = data[5];
2293 (*state)->y = data[6];
2294 (*state)->w = data[7];
2295 (*state)->h = data[8];
2296 (*state)->window_shortcuts = data[9];
2298 XFree(data);
2300 if (*state && type_ret==_XA_WINDOWMAKER_STATE)
2301 return 1;
2302 else
2303 return 0;
2307 #ifdef SHAPE
2308 void
2309 wWindowClearShape(WWindow *wwin)
2311 XShapeCombineMask(dpy, wwin->frame->core->window, ShapeBounding,
2312 0, wwin->frame->top_width, None, ShapeSet);
2313 XFlush(dpy);
2316 void
2317 wWindowSetShape(WWindow *wwin)
2319 XRectangle rect[2];
2320 int count;
2321 #ifdef OPTIMIZE_SHAPE
2322 XRectangle *rects;
2323 XRectangle *urec;
2324 int ordering;
2326 /* only shape is the client's */
2327 if (WFLAGP(wwin, no_titlebar) && WFLAGP(wwin, no_resizebar)) {
2328 goto alt_code;
2331 /* Get array of rectangles describing the shape mask */
2332 rects = XShapeGetRectangles(dpy, wwin->client_win, ShapeBounding,
2333 &count, &ordering);
2334 if (!rects) {
2335 goto alt_code;
2338 urec = malloc(sizeof(XRectangle)*(count+2));
2339 if (!urec) {
2340 XFree(rects);
2341 goto alt_code;
2344 /* insert our decoration rectangles in the rect list */
2345 memcpy(urec, rects, sizeof(XRectangle)*count);
2346 XFree(rects);
2348 if (!WFLAGP(wwin, no_titlebar)) {
2349 urec[count].x = -1;
2350 urec[count].y = -1 - wwin->frame->top_width;
2351 urec[count].width = wwin->frame->core->width + 2;
2352 urec[count].height = wwin->frame->top_width + 1;
2353 count++;
2355 if (!WFLAGP(wwin, no_resizebar)) {
2356 urec[count].x = -1;
2357 urec[count].y = wwin->frame->core->height
2358 - wwin->frame->bottom_width - wwin->frame->top_width;
2359 urec[count].width = wwin->frame->core->width + 2;
2360 urec[count].height = wwin->frame->bottom_width + 1;
2361 count++;
2364 /* shape our frame window */
2365 XShapeCombineRectangles(dpy, wwin->frame->core->window, ShapeBounding,
2366 0, wwin->frame->top_width, urec, count,
2367 ShapeSet, Unsorted);
2368 XFlush(dpy);
2369 free(urec);
2370 return;
2372 alt_code:
2373 #endif /* OPTIMIZE_SHAPE */
2374 count = 0;
2375 if (!WFLAGP(wwin, no_titlebar)) {
2376 rect[count].x = -1;
2377 rect[count].y = -1;
2378 rect[count].width = wwin->frame->core->width + 2;
2379 rect[count].height = wwin->frame->top_width + 1;
2380 count++;
2382 if (!WFLAGP(wwin, no_resizebar)) {
2383 rect[count].x = -1;
2384 rect[count].y = wwin->frame->core->height - wwin->frame->bottom_width;
2385 rect[count].width = wwin->frame->core->width + 2;
2386 rect[count].height = wwin->frame->bottom_width + 1;
2387 count++;
2389 if (count > 0) {
2390 XShapeCombineRectangles(dpy, wwin->frame->core->window, ShapeBounding,
2391 0, 0, rect, count, ShapeSet, Unsorted);
2393 XShapeCombineShape(dpy, wwin->frame->core->window, ShapeBounding,
2394 0, wwin->frame->top_width, wwin->client_win,
2395 ShapeBounding, (count > 0 ? ShapeUnion : ShapeSet));
2396 XFlush(dpy);
2398 #endif /* SHAPE */
2400 /* ====================================================================== */
2402 static FocusMode
2403 getFocusMode(WWindow *wwin)
2405 FocusMode mode;
2407 if ((wwin->wm_hints) && (wwin->wm_hints->flags & InputHint)) {
2408 if (wwin->wm_hints->input == True) {
2409 if (wwin->protocols.TAKE_FOCUS)
2410 mode = WFM_LOCALLY_ACTIVE;
2411 else
2412 mode = WFM_PASSIVE;
2413 } else {
2414 if (wwin->protocols.TAKE_FOCUS)
2415 mode = WFM_GLOBALLY_ACTIVE;
2416 else
2417 mode = WFM_NO_INPUT;
2419 } else {
2420 mode = WFM_PASSIVE;
2422 return mode;
2426 void
2427 wWindowSetKeyGrabs(WWindow *wwin)
2429 int i;
2430 WShortKey *key;
2432 for (i=0; i<WKBD_LAST; i++) {
2433 key = &wKeyBindings[i];
2435 if (key->keycode==0)
2436 continue;
2437 if (key->modifier!=AnyModifier) {
2438 XGrabKey(dpy, key->keycode, key->modifier|LockMask,
2439 wwin->frame->core->window, True, GrabModeAsync, GrabModeAsync);
2440 #ifdef NUMLOCK_HACK
2441 /* Also grab all modifier combinations possible that include,
2442 * LockMask, ScrollLockMask and NumLockMask, so that keygrabs
2443 * work even if the NumLock/ScrollLock key is on.
2445 wHackedGrabKey(key->keycode, key->modifier,
2446 wwin->frame->core->window, True, GrabModeAsync,
2447 GrabModeAsync);
2448 #endif
2450 XGrabKey(dpy, key->keycode, key->modifier,
2451 wwin->frame->core->window, True, GrabModeAsync, GrabModeAsync);
2454 #ifndef LITE
2455 wRootMenuBindShortcuts(wwin->frame->core->window);
2456 #endif
2461 void
2462 wWindowResetMouseGrabs(WWindow *wwin)
2464 /* Mouse grabs can't be done on the client window because of
2465 * ICCCM and because clients that try to do the same will crash.
2467 * But there is a problem wich makes tbar buttons of unfocused
2468 * windows not usable as the click goes to the frame window instead
2469 * of the button itself. Must figure a way to fix that.
2472 XUngrabButton(dpy, AnyButton, AnyModifier, wwin->client_win);
2474 if (!WFLAGP(wwin, no_bind_mouse)) {
2475 /* grabs for Meta+drag */
2476 wHackedGrabButton(AnyButton, MOD_MASK, wwin->client_win,
2477 True, ButtonPressMask, GrabModeSync,
2478 GrabModeAsync, None, None);
2481 if (!wwin->flags.focused && !WFLAGP(wwin, no_focusable)) {
2482 /* the passive grabs to focus the window */
2483 if (wPreferences.focus_mode == WKF_CLICK)
2484 XGrabButton(dpy, AnyButton, AnyModifier, wwin->client_win,
2485 True, ButtonPressMask, GrabModeSync, GrabModeAsync,
2486 None, None);
2488 XFlush(dpy);
2492 void
2493 wWindowUpdateGNUstepAttr(WWindow *wwin, GNUstepWMAttributes *attr)
2495 if (attr->flags & GSExtraFlagsAttr) {
2496 if (MGFLAGP(wwin, broken_close) !=
2497 (attr->extra_flags & GSDocumentEditedFlag)) {
2498 wwin->client_flags.broken_close = !MGFLAGP(wwin, broken_close);
2499 wWindowUpdateButtonImages(wwin);
2505 WMagicNumber
2506 wWindowAddSavedState(char *instance, char *class, char *command,
2507 pid_t pid, WSavedState *state)
2509 WWindowState *wstate;
2511 wstate = malloc(sizeof(WWindowState));
2512 if (!wstate)
2513 return 0;
2515 memset(wstate, 0, sizeof(WWindowState));
2516 wstate->pid = pid;
2517 if (instance)
2518 wstate->instance = wstrdup(instance);
2519 if (class)
2520 wstate->class = wstrdup(class);
2521 if (command)
2522 wstate->command = wstrdup(command);
2523 wstate->state = state;
2525 wstate->next = windowState;
2526 windowState = wstate;
2528 #ifdef DEBUG
2529 printf("Added WindowState with ID %p, for %s.%s : \"%s\"\n", wstate, instance,
2530 class, command);
2531 #endif
2533 return wstate;
2537 #define SAME(x, y) (((x) && (y) && !strcmp((x), (y))) || (!(x) && !(y)))
2540 WMagicNumber
2541 wWindowGetSavedState(Window win)
2543 char *instance, *class, *command=NULL;
2544 WWindowState *wstate = windowState;
2545 char **argv;
2546 int argc;
2548 if (!wstate)
2549 return NULL;
2551 if (XGetCommand(dpy, win, &argv, &argc)) {
2552 if (argc > 0)
2553 command = FlattenStringList(argv, argc);
2554 XFreeStringList(argv);
2556 if (!command)
2557 return NULL;
2559 if (PropGetWMClass(win, &class, &instance)) {
2560 while (wstate) {
2561 if (SAME(instance, wstate->instance) &&
2562 SAME(class, wstate->class) &&
2563 SAME(command, wstate->command)) {
2564 break;
2566 wstate = wstate->next;
2568 } else {
2569 wstate = NULL;
2572 #ifdef DEBUG
2573 printf("Read WindowState with ID %p, for %s.%s : \"%s\"\n", wstate, instance,
2574 class, command);
2575 #endif
2577 if (command) free(command);
2578 if (instance) XFree(instance);
2579 if (class) XFree(class);
2581 return wstate;
2585 void
2586 wWindowDeleteSavedState(WMagicNumber id)
2588 WWindowState *tmp, *wstate=(WWindowState*)id;
2590 if (!wstate || !windowState)
2591 return;
2593 tmp = windowState;
2594 if (tmp==wstate) {
2595 windowState = wstate->next;
2596 #ifdef DEBUG
2597 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2598 wstate, wstate->instance, wstate->class, wstate->command);
2599 #endif
2600 if (wstate->instance) free(wstate->instance);
2601 if (wstate->class) free(wstate->class);
2602 if (wstate->command) free(wstate->command);
2603 free(wstate->state);
2604 free(wstate);
2605 } else {
2606 while (tmp->next) {
2607 if (tmp->next==wstate) {
2608 tmp->next=wstate->next;
2609 #ifdef DEBUG
2610 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2611 wstate, wstate->instance, wstate->class, wstate->command);
2612 #endif
2613 if (wstate->instance) free(wstate->instance);
2614 if (wstate->class) free(wstate->class);
2615 if (wstate->command) free(wstate->command);
2616 free(wstate->state);
2617 free(wstate);
2618 break;
2620 tmp = tmp->next;
2626 void
2627 wWindowDeleteSavedStatesForPID(pid_t pid)
2629 WWindowState *tmp, *wstate;
2631 if (!windowState)
2632 return;
2634 tmp = windowState;
2635 if (tmp->pid == pid) {
2636 wstate = windowState;
2637 windowState = tmp->next;
2638 #ifdef DEBUG
2639 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2640 wstate, wstate->instance, wstate->class, wstate->command);
2641 #endif
2642 if (wstate->instance) free(wstate->instance);
2643 if (wstate->class) free(wstate->class);
2644 if (wstate->command) free(wstate->command);
2645 free(wstate->state);
2646 free(wstate);
2647 } else {
2648 while (tmp->next) {
2649 if (tmp->next->pid==pid) {
2650 wstate = tmp->next;
2651 tmp->next = wstate->next;
2652 #ifdef DEBUG
2653 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2654 wstate, wstate->instance, wstate->class, wstate->command);
2655 #endif
2656 if (wstate->instance) free(wstate->instance);
2657 if (wstate->class) free(wstate->class);
2658 if (wstate->command) free(wstate->command);
2659 free(wstate->state);
2660 free(wstate);
2661 break;
2663 tmp = tmp->next;
2669 /* ====================================================================== */
2671 static void
2672 resizebarMouseDown(WCoreWindow *sender, void *data, XEvent *event)
2674 WWindow *wwin = data;
2676 #ifndef NUMLOCK_HACK
2677 if ((event->xbutton.state & ValidModMask)
2678 != (event->xbutton.state & ~LockMask)) {
2679 wwarning(_("the NumLock, ScrollLock or similar key seems to be turned on.\n"\
2680 "Turn it off or some mouse actions and keyboard shortcuts will not work."));
2682 #endif
2684 event->xbutton.state &= ValidModMask;
2686 CloseWindowMenu(wwin->screen_ptr);
2688 if (wPreferences.focus_mode==WKF_CLICK
2689 && !(event->xbutton.state&ControlMask)
2690 && !WFLAGP(wwin, no_focusable)) {
2691 wSetFocusTo(wwin->screen_ptr, wwin);
2694 if (event->xbutton.button == Button1)
2695 wRaiseFrame(wwin->frame->core);
2697 if (event->xbutton.window != wwin->frame->resizebar->window) {
2698 if (XGrabPointer(dpy, wwin->frame->resizebar->window, True,
2699 ButtonMotionMask|ButtonReleaseMask|ButtonPressMask,
2700 GrabModeAsync, GrabModeAsync, None,
2701 None, CurrentTime)!=GrabSuccess) {
2702 #ifdef DEBUG0
2703 wwarning("pointer grab failed for window move");
2704 #endif
2705 return;
2709 if (event->xbutton.state & MOD_MASK) {
2710 /* move the window */
2711 wMouseMoveWindow(wwin, event);
2712 XUngrabPointer(dpy, CurrentTime);
2713 } else {
2714 wMouseResizeWindow(wwin, event);
2715 XUngrabPointer(dpy, CurrentTime);
2721 static void
2722 titlebarDblClick(WCoreWindow *sender, void *data, XEvent *event)
2724 WWindow *wwin = data;
2726 event->xbutton.state &= ValidModMask;
2728 if (event->xbutton.button==Button1) {
2729 if (event->xbutton.state == 0) {
2730 if (!WFLAGP(wwin, no_shadeable)) {
2731 /* shade window */
2732 if (wwin->flags.shaded)
2733 wUnshadeWindow(wwin);
2734 else
2735 wShadeWindow(wwin);
2737 } else {
2738 int dir = 0;
2740 if (event->xbutton.state & ControlMask)
2741 dir |= MAX_VERTICAL;
2743 if (event->xbutton.state & ShiftMask) {
2744 dir |= MAX_HORIZONTAL;
2745 if (!(event->xbutton.state & ControlMask))
2746 wSelectWindow(wwin, !wwin->flags.selected);
2749 /* maximize window */
2750 if (dir !=0 && !WFLAGP(wwin, no_resizable)) {
2751 if (wwin->flags.maximized)
2752 wUnmaximizeWindow(wwin);
2753 else
2754 wMaximizeWindow(wwin, dir);
2757 } else if (event->xbutton.button==Button3) {
2758 if (event->xbutton.state & MOD_MASK) {
2759 wHideOtherApplications(wwin);
2761 } else if (event->xbutton.button==Button2) {
2762 wSelectWindow(wwin, !wwin->flags.selected);
2767 static void
2768 frameMouseDown(WObjDescriptor *desc, XEvent *event)
2770 WWindow *wwin = desc->parent;
2772 event->xbutton.state &= ValidModMask;
2774 CloseWindowMenu(wwin->screen_ptr);
2776 if (wPreferences.focus_mode==WKF_CLICK
2777 && !(event->xbutton.state&ControlMask)
2778 && !WFLAGP(wwin, no_focusable)) {
2779 wSetFocusTo(wwin->screen_ptr, wwin);
2781 if (event->xbutton.button == Button1) {
2782 wRaiseFrame(wwin->frame->core);
2785 if (event->xbutton.state & MOD_MASK) {
2786 /* move the window */
2787 if (XGrabPointer(dpy, wwin->client_win, False,
2788 ButtonMotionMask|ButtonReleaseMask|ButtonPressMask,
2789 GrabModeAsync, GrabModeAsync, None,
2790 None, CurrentTime)!=GrabSuccess) {
2791 #ifdef DEBUG0
2792 wwarning("pointer grab failed for window move");
2793 #endif
2794 return;
2796 if (event->xbutton.button == Button3 && !WFLAGP(wwin, no_resizable))
2797 wMouseResizeWindow(wwin, event);
2798 else
2799 wMouseMoveWindow(wwin, event);
2800 XUngrabPointer(dpy, CurrentTime);
2805 static void
2806 titlebarMouseDown(WCoreWindow *sender, void *data, XEvent *event)
2808 WWindow *wwin = (WWindow*)data;
2810 #ifndef NUMLOCK_HACK
2811 if ((event->xbutton.state & ValidModMask)
2812 != (event->xbutton.state & ~LockMask)) {
2813 wwarning(_("the NumLock, ScrollLock or similar key seems to be turned on.\n"\
2814 "Turn it off or some mouse actions and keyboard shortcuts will not work."));
2816 #endif
2817 event->xbutton.state &= ValidModMask;
2819 CloseWindowMenu(wwin->screen_ptr);
2821 if (wPreferences.focus_mode==WKF_CLICK
2822 && !(event->xbutton.state&ControlMask)
2823 && !WFLAGP(wwin, no_focusable)) {
2824 wSetFocusTo(wwin->screen_ptr, wwin);
2827 if (event->xbutton.button == Button1
2828 || event->xbutton.button == Button2) {
2830 if (event->xbutton.button == Button1) {
2831 if (event->xbutton.state & MOD_MASK) {
2832 wLowerFrame(wwin->frame->core);
2833 } else {
2834 wRaiseFrame(wwin->frame->core);
2837 if ((event->xbutton.state & ShiftMask)
2838 && !(event->xbutton.state & ControlMask)) {
2839 wSelectWindow(wwin, !wwin->flags.selected);
2840 return;
2842 if (event->xbutton.window != wwin->frame->titlebar->window
2843 && XGrabPointer(dpy, wwin->frame->titlebar->window, False,
2844 ButtonMotionMask|ButtonReleaseMask|ButtonPressMask,
2845 GrabModeAsync, GrabModeAsync, None,
2846 None, CurrentTime)!=GrabSuccess) {
2847 #ifdef DEBUG0
2848 wwarning("pointer grab failed for window move");
2849 #endif
2850 return;
2853 /* move the window */
2854 wMouseMoveWindow(wwin, event);
2856 XUngrabPointer(dpy, CurrentTime);
2857 } else if (event->xbutton.button == Button3 && event->xbutton.state==0
2858 && !wwin->flags.internal_window
2859 && !WCHECK_STATE(WSTATE_MODAL)) {
2860 WObjDescriptor *desc;
2862 if (event->xbutton.window != wwin->frame->titlebar->window
2863 && XGrabPointer(dpy, wwin->frame->titlebar->window, False,
2864 ButtonMotionMask|ButtonReleaseMask|ButtonPressMask,
2865 GrabModeAsync, GrabModeAsync, None,
2866 None, CurrentTime)!=GrabSuccess) {
2867 #ifdef DEBUG0
2868 wwarning("pointer grab failed for window move");
2869 #endif
2870 return;
2873 OpenWindowMenu(wwin, event->xbutton.x_root,
2874 wwin->frame_y+wwin->frame->top_width, False);
2876 /* allow drag select */
2877 desc = &wwin->screen_ptr->window_menu->menu->descriptor;
2878 event->xany.send_event = True;
2879 (*desc->handle_mousedown)(desc, event);
2881 XUngrabPointer(dpy, CurrentTime);
2887 static void
2888 windowCloseClick(WCoreWindow *sender, void *data, XEvent *event)
2890 WWindow *wwin = data;
2892 event->xbutton.state &= ValidModMask;
2894 CloseWindowMenu(wwin->screen_ptr);
2896 if (event->xbutton.button < Button1 || event->xbutton.button > Button3)
2897 return;
2899 /* if control-click, kill the client */
2900 if (event->xbutton.state & ControlMask) {
2901 wClientKill(wwin);
2902 } else {
2903 #ifdef OLWM_HINTS
2904 if (wwin->flags.olwm_push_pin_out) {
2906 wwin->flags.olwm_push_pin_out = 0;
2908 wOLWMChangePushpinState(wwin, True);
2910 wFrameWindowUpdatePushButton(wwin->frame, False);
2912 return;
2914 #endif
2915 if (wwin->protocols.DELETE_WINDOW && event->xbutton.state==0) {
2916 /* send delete message */
2917 wClientSendProtocol(wwin, _XA_WM_DELETE_WINDOW, LastTimestamp);
2923 static void
2924 windowCloseDblClick(WCoreWindow *sender, void *data, XEvent *event)
2926 WWindow *wwin = data;
2928 CloseWindowMenu(wwin->screen_ptr);
2930 if (event->xbutton.button < Button1 || event->xbutton.button > Button3)
2931 return;
2933 /* send delete message */
2934 if (wwin->protocols.DELETE_WINDOW) {
2935 wClientSendProtocol(wwin, _XA_WM_DELETE_WINDOW, LastTimestamp);
2936 } else {
2937 wClientKill(wwin);
2942 #ifdef XKB_BUTTON_HINT
2943 static void
2944 windowLanguageClick(WCoreWindow *sender, void *data, XEvent *event)
2946 WWindow *wwin = data;
2947 WFrameWindow *fwin = wwin->frame;
2948 WScreen *scr = fwin->screen_ptr;
2949 XkbStateRec staterec;
2950 int tl;
2952 if (event->xbutton.button != Button1 && event->xbutton.button != Button3)
2953 return;
2954 tl = wwin->frame->languagemode;
2955 wwin->frame->languagemode = wwin->frame->last_languagemode;
2956 wwin->frame->last_languagemode = tl;
2957 wSetFocusTo(scr, wwin);
2958 wwin->frame->languagebutton_image =
2959 wwin->frame->screen_ptr->b_pixmaps[WBUT_XKBGROUP1 +
2960 wwin->frame->languagemode];
2961 wFrameWindowUpdateLanguageButton(wwin->frame);
2962 if (event->xbutton.button == Button3)
2963 return;
2964 wRaiseFrame(fwin->core);
2966 #endif
2969 static void
2970 windowIconifyClick(WCoreWindow *sender, void *data, XEvent *event)
2972 WWindow *wwin = data;
2974 event->xbutton.state &= ValidModMask;
2976 CloseWindowMenu(wwin->screen_ptr);
2978 if (event->xbutton.button < Button1 || event->xbutton.button > Button3)
2979 return;
2981 if (wwin->protocols.MINIATURIZE_WINDOW && event->xbutton.state==0) {
2982 wClientSendProtocol(wwin, _XA_GNUSTEP_WM_MINIATURIZE_WINDOW,
2983 LastTimestamp);
2984 } else {
2985 WApplication *wapp;
2986 if ((event->xbutton.state & ControlMask) ||
2987 (event->xbutton.button == Button3)) {
2989 wapp = wApplicationOf(wwin->main_window);
2990 if (wapp && !WFLAGP(wwin, no_appicon))
2991 wHideApplication(wapp);
2992 } else if (event->xbutton.state==0) {
2993 wIconifyWindow(wwin);