1 /* window.c - client window managing stuffs
3 * Window Maker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
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,
26 #include <X11/Xutil.h>
28 #include <X11/extensions/shape.h>
30 #ifdef KEEP_XKB_LOCK_STATUS
31 #include <X11/XKBlib.h>
32 #endif /* KEEP_XKB_LOCK_STATUS */
38 #include "WindowMaker.h"
44 #include "winspector.h"
46 #include "properties.h"
53 #include "workspace.h"
66 # include "openlook.h"
69 /****** Global Variables ******/
71 extern WShortKey wKeyBindings
[WKBD_LAST
];
74 extern Bool wShapeSupported
;
78 extern XContext wWinContext
;
81 extern Cursor wCursor
[WCUR_LAST
];
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
;
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
);
116 /* frame window (during window grabs) */
117 static void frameMouseDown(WObjDescriptor
*desc
, XEvent
*event
);
120 static void windowCloseClick(WCoreWindow
*sender
, void *data
, XEvent
*event
);
121 static void windowCloseDblClick(WCoreWindow
*sender
, void *data
, XEvent
*event
);
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
);
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 ******/
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
))
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 /************************************/
172 wWindowFor(Window window
)
174 WObjDescriptor
*desc
;
179 if (XFindContext(dpy
, window
, wWinContext
, (XPointer
*)&desc
)==XCNOENT
)
182 if (desc
->parent_type
==WCLASS_WINDOW
)
184 else if (desc
->parent_type
==WCLASS_FRAME
) {
185 WFrameWindow
*frame
= (WFrameWindow
*)desc
->parent
;
186 if (frame
->flags
.is_client_window_frame
)
199 wwin
= wmalloc(sizeof(WWindow
));
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
;
214 wWindowDestroy(WWindow
*wwin
)
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
])
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
);
242 XFree(wwin
->wm_hints
);
244 if (wwin
->wm_instance
)
245 XFree(wwin
->wm_instance
);
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
);
259 wFrameWindowDestroy(wwin
->frame
);
262 RemoveFromStackList(wwin
->icon
->core
);
263 wIconDestroy(wwin
->icon
);
264 if (wPreferences
.auto_arrange_icons
)
265 wArrangeIcons(wwin
->screen_ptr
, True
);
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;
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
306 if (gs_hints
->window_style
& (WMResizableWindowMask
|
307 WMClosableWindowMask
|
308 WMMiniaturizableWindowMask
)) {
309 wwin
->client_flags
.no_titlebar
= 0;
311 wwin
->client_flags
.no_titlebar
=
312 ((gs_hints
->window_style
& WMTitledWindowMask
)?0:1);
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;
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
)
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);
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
;
403 case WMFloatingWindowLevel
:
404 *level
= WMFloatingLevel
;
406 case WMDockWindowLevel
:
407 *level
= WMDockLevel
;
409 case WMSubmenuWindowLevel
:
410 *level
= WMSubmenuLevel
;
412 case WMMainMenuWindowLevel
:
413 *level
= WMMainMenuLevel
;
416 *level
= WMNormalLevel
;
421 *level
= WMNormalLevel
;
424 int tmp_workspace
= -1;
428 wMWMCheckClientHints(wwin
);
429 #endif /* MWM_HINTS */
432 wKWMCheckClientHints(wwin
, &tmp_level
, &tmp_workspace
);
433 #endif /* KWM_HINTS */
436 wGNOMECheckClientHints(wwin
, &tmp_level
, &tmp_workspace
);
437 #endif /* GNOME_STUFF */
440 wOLWMCheckClientHints(wwin
);
441 #endif /* OLWM_HINTS */
444 if (WFLAGP(wwin
, floating
))
445 *level
= WMFloatingLevel
;
446 else if (WFLAGP(wwin
, sunken
))
447 *level
= WMSunkenLevel
;
449 *level
= WMNormalLevel
;
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
,
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
));
493 wWindowCanReceiveFocus(WWindow
*wwin
)
495 if (!wwin
->flags
.mapped
&& (!wwin
->flags
.shaded
|| wwin
->flags
.hidden
))
497 if (WFLAGP(wwin
, no_focusable
) || wwin
->flags
.miniaturized
)
499 if (wwin
->frame
->workspace
!= wwin
->screen_ptr
->current_workspace
)
507 wWindowObscuresWindow(WWindow
*wwin
, WWindow
*obscured
)
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
)
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
) {
532 *----------------------------------------------------------------
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
544 * the new window descriptor
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 *----------------------------------------------------------------
557 wManageWindow(WScreen
*scr
, Window window
)
561 unsigned width
, height
;
562 XWindowAttributes wattribs
;
563 XSetWindowAttributes attribs
;
564 WWindowState
*win_state
;
565 WWindow
*transientOwner
= NULL
;
571 Bool withdraw
= False
;
574 /* XGrabServer(dpy); */
576 /* make sure the window is still there */
577 if (!XGetWindowAttributes(dpy
, window
, &wattribs
)) {
582 /* if it's an override-redirect, ignore it */
583 if (wattribs
.override_redirect
) {
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
) {
596 if (!wFetchName(dpy
, window
, &title
)) {
601 if (title
&& !wKWMManageableClient(scr
, window
, title
)) {
606 #endif /* KWM_HINTS */
609 wwin
= wWindowCreate();
611 XSaveContext(dpy
, window
, wWinContext
, (XPointer
)&wwin
->client_descriptor
);
614 printf("managing window %x\n", (unsigned)window
);
618 if (wShapeSupported
) {
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
;
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
) {
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
;
685 wwin
->group_id
= None
;
688 if (wwin
->wm_hints
->flags
& UrgencyHint
)
689 wwin
->flags
.urgent
= 1;
691 wwin
->group_id
= None
;
694 PropGetProtocols(window
, &wwin
->protocols
);
696 if (!XGetTransientForHint(dpy
, window
, &wwin
->transient_for
)) {
697 wwin
->transient_for
= None
;
699 if (wwin
->transient_for
==None
|| wwin
->transient_for
==window
) {
700 wwin
->transient_for
= scr
->root_win
;
702 transientOwner
= wWindowFor(wwin
->transient_for
);
703 if (transientOwner
&& transientOwner
->main_window
!=None
) {
704 wwin
->main_window
= transientOwner
->main_window
;
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
726 *--------------------------------------------------
729 wWindowSetupInitialAttributes(wwin
, &window_level
, &workspace
);
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
;
773 wGNOMECheckInitialClientState(wwin
);
776 wKWMCheckClientInitialState(wwin
);
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
) {
792 /* if there is a saved state (from file), restore it */
794 if (wwin
->main_window
!=None
/* && wwin->main_window!=window*/) {
795 win_state
= (WWindowState
*)wWindowGetSavedState(wwin
->main_window
);
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
,
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
;
822 workspace
= scr
->current_workspace
;
826 /* if we're restarting, restore saved state (from hints).
827 * This will overwrite previous */
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) {
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
);
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;
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
;
869 w
= wDefaultGetStartWorkspace(scr
, wwin
->wm_instance
, wwin
->wm_class
);
871 if (w
>= 0 && w
< scr
->workspace_count
&& !(IS_OMNIPRESENT(wwin
))) {
876 if (wPreferences
.open_transients_with_parent
&& transientOwner
) {
878 workspace
= transientOwner
->frame
->workspace
;
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
)
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
;
937 if (!WFLAGP(wwin
, no_titlebar
))
939 if (!WFLAGP(wwin
, no_resizebar
))
940 foo
|= WFF_RESIZEBAR
;
941 if (!WFLAGP(wwin
, no_border
))
944 wwin
->frame
= wFrameWindowCreate(scr
, window_level
,
946 &wPreferences
.window_title_clearance
, foo
,
947 scr
->window_title_texture
,
948 scr
->resizebar_texture
,
949 scr
->window_title_pixel
,
950 #ifdef DRAWSTRING_PLUGIN
953 &scr
->window_title_gc
,
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 */
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
;
973 wFrameWindowHideButton(wwin
->frame
, foo
);
975 wwin
->frame
->child
= wwin
;
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
);
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
;
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
);
1019 wClientGetGravityOffsets(wwin
, &gx
, &gy
);
1021 /* if gravity is to the south, account for the border sizes */
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
1042 *--------------------------------------------------
1045 if (wwin
->main_window
!=None
) {
1049 /* Leader windows do not necessary set themselves as leaders.
1050 * If this is the case, point the leader of this window to
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
);
1058 app
->last_workspace
= workspace
;
1061 * Do application specific stuff, like setting application
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
);
1099 wClientSetState(wwin
, NormalState
, None
);
1103 /* if not auto focus, then map the window under the currently
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
,
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
);
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
;
1156 wwin
->frame
->core
->stacking
->child_of
= NULL
;
1160 if (!scr
->focused_window
) {
1161 /* first window on the list */
1164 scr
->focused_window
= wwin
;
1168 /* add window at beginning of focus window list */
1169 tmp
= scr
->focused_window
;
1178 wGNOMEUpdateClientStateHint(wwin
, True
);
1181 wKWMUpdateClientWorkspace(wwin
);
1182 wKWMUpdateClientStateHint(wwin
, KWMAllFlags
);
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
);
1210 wGNOMEUpdateClientListHint(scr
);
1213 wwin
->flags
.kwm_managed
= 1;
1215 wKWMSendEventMessage(wwin
, WKWMAddWindow
);
1218 wColormapInstallForWindow(scr
, scr
->cmap_window
);
1220 UpdateSwitchMenu(scr
, wwin
, ACTION_ADD
);
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,
1233 *------------------------------------------------------------
1234 * Setup Notification Observers
1235 *------------------------------------------------------------
1237 WMAddNotificationObserver(appearanceObserver
, wwin
,
1238 WNWindowAppearanceSettingsChanged
, wwin
);
1242 *--------------------------------------------------
1244 * Cleanup temporary stuff
1246 *--------------------------------------------------
1250 wWindowDeleteSavedState(win_state
);
1252 /* If the window must be withdrawed, then do it now.
1253 * Must do some optimization, 'though */
1255 wwin
->flags
.mapped
= 0;
1256 wClientSetState(wwin
, WithdrawnState
, None
);
1257 wUnmanageWindow(wwin
, True
, False
);
1269 wManageInternalWindow(WScreen
*scr
, Window window
, Window owner
,
1270 char *title
, int x
, int y
, int width
, int height
)
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
;
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
;
1309 wwin
->frame
= wFrameWindowCreate(scr
, WMFloatingLevel
,
1310 wwin
->frame_x
, wwin
->frame_y
,
1312 &wPreferences
.window_title_clearance
, foo
,
1313 scr
->window_title_texture
,
1314 scr
->resizebar_texture
,
1315 scr
->window_title_pixel
,
1316 #ifdef DRAWSTRING_PLUGIN
1319 &scr
->window_title_gc
,
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
);
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
;
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 */
1370 wPreferences
.on_top_transients
&&
1372 wwin
->transient_for
!=None
1373 && wwin
->transient_for
!=scr
->root_win
) {
1375 tmp
= wWindowFor(wwin
->transient_for
);
1377 wwin
->frame
->core
->stacking
->child_of
= tmp
->frame
->core
;
1379 wwin
->frame
->core
->stacking
->child_of
= NULL
;
1383 if (!scr
->focused_window
) {
1384 /* first window on the list */
1387 scr
->focused_window
= wwin
;
1391 /* add window at beginning of focus window list */
1392 tmp
= scr
->focused_window
;
1400 if (wwin
->flags
.is_gnustep
== 0)
1401 wFrameWindowChangeState(wwin
->frame
, WS_UNFOCUSED
);
1403 /* if (wPreferences.auto_focus)*/
1404 wSetFocusTo(scr
, wwin
);
1406 wWindowResetMouseGrabs(wwin
);
1408 wWindowSetKeyGrabs(wwin
);
1410 UpdateSwitchMenu(wwin
->screen_ptr
, wwin
, ACTION_ADD
);
1417 *----------------------------------------------------------------------
1419 * Removes the frame window from a window and destroys all data
1420 * related to it. The window will be reparented back to the root window
1421 * if restore is True.
1424 * Everything related to the window is destroyed and the window
1425 * is removed from the window lists. Focus is set to the previous on the
1427 *----------------------------------------------------------------------
1430 wUnmanageWindow(WWindow
*wwin
, Bool restore
, Bool destroyed
)
1432 WCoreWindow
*frame
= wwin
->frame
->core
;
1433 WWindow
*owner
= NULL
;
1434 WWindow
*newFocusedWindow
= NULL
;
1436 WScreen
*scr
= wwin
->screen_ptr
;
1440 wwin
->frame
->workspace
= -1;
1442 wKWMUpdateClientWorkspace(wwin
);
1445 /* First close attribute editor window if open */
1446 if (wwin
->flags
.inspector_open
) {
1447 wCloseInspectorForWindow(wwin
);
1450 /* Close window menu if it's open for this window */
1451 if (wwin
->flags
.menu_open_for_me
) {
1452 CloseWindowMenu(scr
);
1456 if (!wwin
->flags
.internal_window
)
1457 XRemoveFromSaveSet(dpy
, wwin
->client_win
);
1459 XSelectInput(dpy
, wwin
->client_win
, NoEventMask
);
1461 XUngrabButton(dpy
, AnyButton
, AnyModifier
, wwin
->client_win
);
1462 XUngrabKey(dpy
, AnyKey
, AnyModifier
, wwin
->client_win
);
1465 XUnmapWindow(dpy
, frame
->window
);
1467 XUnmapWindow(dpy
, wwin
->client_win
);
1469 /* deselect window */
1470 wSelectWindow(wwin
, False
);
1472 /* remove all pending events on window */
1473 /* I think this only matters for autoraise */
1474 if (wPreferences
.raise_delay
)
1475 WMDeleteTimerWithClientData(wwin
->frame
->core
);
1479 UpdateSwitchMenu(scr
, wwin
, ACTION_REMOVE
);
1481 /* reparent the window back to the root */
1483 wClientRestore(wwin
);
1485 if (wwin
->transient_for
!=scr
->root_win
) {
1486 owner
= wWindowFor(wwin
->transient_for
);
1488 if (!owner
->flags
.semi_focused
) {
1491 owner
->flags
.semi_focused
= 0;
1496 wasFocused
= wwin
->flags
.focused
;
1498 /* remove from window focus list */
1499 if (!wwin
->prev
&& !wwin
->next
) {
1500 /* was the only window */
1501 scr
->focused_window
= NULL
;
1502 newFocusedWindow
= NULL
;
1507 wwin
->prev
->next
= wwin
->next
;
1509 wwin
->next
->prev
= wwin
->prev
;
1511 scr
->focused_window
= wwin
->prev
;
1512 scr
->focused_window
->next
= NULL
;
1515 if (wPreferences
.focus_mode
==WKF_CLICK
) {
1517 /* if in click to focus mode and the window
1518 * was a transient, focus the owner window
1521 if (wPreferences
.focus_mode
==WKF_CLICK
) {
1522 tmp
= wWindowFor(wwin
->transient_for
);
1523 if (tmp
&& (!tmp
->flags
.mapped
|| WFLAGP(tmp
, no_focusable
))) {
1527 /* otherwise, focus the next one in the focus list */
1529 tmp
= scr
->focused_window
;
1530 while (tmp
) { /* look for one in the window list first */
1531 if (!WFLAGP(tmp
, no_focusable
) && !WFLAGP(tmp
, skip_window_list
)
1532 && (tmp
->flags
.mapped
|| tmp
->flags
.shaded
))
1536 if (!tmp
) { /* if unsuccessful, choose any focusable window */
1537 tmp
= scr
->focused_window
;
1539 if (!WFLAGP(tmp
, no_focusable
)
1540 && (tmp
->flags
.mapped
|| tmp
->flags
.shaded
))
1547 newFocusedWindow
= tmp
;
1549 } else if (wPreferences
.focus_mode
==WKF_SLOPPY
1550 || wPreferences
.focus_mode
==WKF_POINTER
) {
1555 /* This is to let the root window get the keyboard input
1556 * if Sloppy focus mode and no other window get focus.
1557 * This way keybindings will not freeze.
1560 if (XQueryPointer(dpy
, scr
->root_win
, &bar
, &win
,
1561 &foo
, &foo
, &foo
, &foo
, &mask
))
1562 tmp
= wWindowFor(win
);
1565 newFocusedWindow
= tmp
;
1567 newFocusedWindow
= NULL
;
1571 if (!wwin
->flags
.internal_window
) {
1573 wGNOMERemoveClient(wwin
);
1576 wKWMSendEventMessage(wwin
, WKWMRemoveWindow
);
1581 printf("destroying window %x frame %x\n", (unsigned)wwin
->client_win
,
1582 (unsigned)frame
->window
);
1586 if (newFocusedWindow
!= owner
&& owner
) {
1587 if (wwin
->flags
.is_gnustep
== 0)
1588 wFrameWindowChangeState(owner
->frame
, WS_UNFOCUSED
);
1590 wSetFocusTo(scr
, newFocusedWindow
);
1592 wWindowDestroy(wwin
);
1598 wWindowMap(WWindow
*wwin
)
1600 XMapWindow(dpy
, wwin
->frame
->core
->window
);
1601 if (!wwin
->flags
.shaded
) {
1602 /* window will be remapped when getting MapNotify */
1603 XSelectInput(dpy
, wwin
->client_win
,
1604 wwin
->event_mask
& ~StructureNotifyMask
);
1605 XMapWindow(dpy
, wwin
->client_win
);
1606 XSelectInput(dpy
, wwin
->client_win
, wwin
->event_mask
);
1608 wwin
->flags
.mapped
= 1;
1614 wWindowUnmap(WWindow
*wwin
)
1616 wwin
->flags
.mapped
= 0;
1618 /* prevent window withdrawal when getting UnmapNotify */
1619 XSelectInput(dpy
, wwin
->client_win
,
1620 wwin
->event_mask
& ~StructureNotifyMask
);
1621 XUnmapWindow(dpy
, wwin
->client_win
);
1622 XSelectInput(dpy
, wwin
->client_win
, wwin
->event_mask
);
1624 XUnmapWindow(dpy
, wwin
->frame
->core
->window
);
1630 wWindowFocus(WWindow
*wwin
, WWindow
*owin
)
1635 #ifdef KEEP_XKB_LOCK_STATUS
1636 if (wPreferences
.modelock
) {
1637 XkbLockGroup(dpy
, XkbUseCoreKbd
, wwin
->frame
->languagemode
);
1639 #endif /* KEEP_XKB_LOCK_STATUS */
1641 wwin
->flags
.semi_focused
= 0;
1643 if (wwin
->flags
.is_gnustep
== 0)
1644 wFrameWindowChangeState(wwin
->frame
, WS_FOCUSED
);
1646 wwin
->flags
.focused
= 1;
1648 wWindowResetMouseGrabs(wwin
);
1650 UpdateSwitchMenu(wwin
->screen_ptr
, wwin
, ACTION_CHANGE_STATE
);
1652 if (owin
== wwin
|| !owin
)
1655 nowner
= wWindowFor(wwin
->transient_for
);
1657 /* new window is a transient for the old window */
1658 if (nowner
== owin
) {
1659 owin
->flags
.semi_focused
= 1;
1660 wWindowUnfocus(nowner
);
1664 oowner
= wWindowFor(owin
->transient_for
);
1666 /* new window is owner of old window */
1667 if (wwin
== oowner
) {
1668 wWindowUnfocus(owin
);
1673 wWindowUnfocus(owin
);
1677 /* new window has same owner of old window */
1678 if (oowner
== nowner
) {
1679 /* prevent unfocusing of owner */
1680 oowner
->flags
.semi_focused
= 0;
1681 wWindowUnfocus(owin
);
1682 oowner
->flags
.semi_focused
= 1;
1687 /* nowner != NULL && oowner != nowner */
1688 nowner
->flags
.semi_focused
= 1;
1689 wWindowUnfocus(nowner
);
1690 wWindowUnfocus(owin
);
1695 wWindowUnfocus(WWindow
*wwin
)
1697 CloseWindowMenu(wwin
->screen_ptr
);
1699 if (wwin
->flags
.is_gnustep
== 0)
1700 wFrameWindowChangeState(wwin
->frame
, wwin
->flags
.semi_focused
1701 ? WS_PFOCUSED
: WS_UNFOCUSED
);
1703 if (wwin
->transient_for
!=None
1704 && wwin
->transient_for
!=wwin
->screen_ptr
->root_win
) {
1706 owner
= wWindowFor(wwin
->transient_for
);
1707 if (owner
&& owner
->flags
.semi_focused
) {
1708 owner
->flags
.semi_focused
= 0;
1709 if (owner
->flags
.mapped
|| owner
->flags
.shaded
) {
1710 wWindowUnfocus(owner
);
1711 wFrameWindowPaint(owner
->frame
);
1715 wwin
->flags
.focused
= 0;
1717 wWindowResetMouseGrabs(wwin
);
1719 UpdateSwitchMenu(wwin
->screen_ptr
, wwin
, ACTION_CHANGE_STATE
);
1726 *----------------------------------------------------------------------
1728 * wWindowConstrainSize--
1729 * Constrains size for the client window, taking the maximal size,
1730 * window resize increments and other size hints into account.
1733 * The closest size to what was given that the client window can
1736 *----------------------------------------------------------------------
1739 wWindowConstrainSize(WWindow
*wwin
, int *nwidth
, int *nheight
)
1741 int width
= *nwidth
;
1742 int height
= *nheight
;
1745 int minW
= 1, minH
= 1;
1746 int maxW
= wwin
->screen_ptr
->scr_width
*2;
1747 int maxH
= wwin
->screen_ptr
->scr_height
*2;
1748 int minAX
= -1, minAY
= -1;
1749 int maxAX
= -1, maxAY
= -1;
1753 if (wwin
->normal_hints
) {
1754 winc
= wwin
->normal_hints
->width_inc
;
1755 hinc
= wwin
->normal_hints
->height_inc
;
1756 minW
= wwin
->normal_hints
->min_width
;
1757 minH
= wwin
->normal_hints
->min_height
;
1758 maxW
= wwin
->normal_hints
->max_width
;
1759 maxH
= wwin
->normal_hints
->max_height
;
1760 if (wwin
->normal_hints
->flags
& PAspect
) {
1761 minAX
= wwin
->normal_hints
->min_aspect
.x
;
1762 minAY
= wwin
->normal_hints
->min_aspect
.y
;
1763 maxAX
= wwin
->normal_hints
->max_aspect
.x
;
1764 maxAY
= wwin
->normal_hints
->max_aspect
.y
;
1778 /* aspect ratio code borrowed from olwm */
1780 /* adjust max aspect ratio */
1781 if (!(maxAX
== 1 && maxAY
== 1) && width
* maxAY
> height
* maxAX
) {
1782 if (maxAX
> maxAY
) {
1783 height
= (width
* maxAY
) / maxAX
;
1784 if (height
> maxH
) {
1786 width
= (height
* maxAX
) / maxAY
;
1789 width
= (height
* maxAX
) / maxAY
;
1792 height
= (width
* maxAY
) / maxAX
;
1797 /* adjust min aspect ratio */
1798 if (!(minAX
== 1 && minAY
== 1) && width
* minAY
< height
* minAX
) {
1799 if (minAX
> minAY
) {
1800 height
= (width
* minAY
) / minAX
;
1801 if (height
< minH
) {
1803 width
= (height
* minAX
) / minAY
;
1806 width
= (height
* minAX
) / minAY
;
1809 height
= (width
* minAY
) / minAX
;
1816 width
= (((width
- baseW
) / winc
) * winc
) + baseW
;
1818 width
= (((width
- minW
) / winc
) * winc
) + minW
;
1822 height
= (((height
- baseH
) / hinc
) * hinc
) + baseH
;
1824 height
= (((height
- minH
) / hinc
) * hinc
) + minH
;
1833 wWindowChangeWorkspace(WWindow
*wwin
, int workspace
)
1835 WScreen
*scr
= wwin
->screen_ptr
;
1839 if (workspace
>= scr
->workspace_count
|| workspace
< 0
1840 || workspace
== wwin
->frame
->workspace
)
1843 if (workspace
!= scr
->current_workspace
) {
1844 /* Sent to other workspace. Unmap window */
1845 if ((wwin
->flags
.mapped
1846 || wwin
->flags
.shaded
1847 || (wwin
->flags
.miniaturized
&& !wPreferences
.sticky_icons
))
1848 && !IS_OMNIPRESENT(wwin
) && !wwin
->flags
.changing_workspace
) {
1850 wapp
= wApplicationOf(wwin
->main_window
);
1852 wapp
->last_workspace
= workspace
;
1854 if (wwin
->flags
.miniaturized
) {
1856 XUnmapWindow(dpy
, wwin
->icon
->core
->window
);
1857 wwin
->icon
->mapped
= 0;
1861 wSetFocusTo(scr
, NULL
);
1865 /* brought to current workspace. Map window */
1866 if (wwin
->flags
.miniaturized
&& !wPreferences
.sticky_icons
) {
1868 XMapWindow(dpy
, wwin
->icon
->core
->window
);
1869 wwin
->icon
->mapped
= 1;
1871 } else if (!wwin
->flags
.mapped
&&
1872 !(wwin
->flags
.miniaturized
|| wwin
->flags
.hidden
)) {
1876 if (!IS_OMNIPRESENT(wwin
)) {
1877 wwin
->frame
->workspace
= workspace
;
1878 UpdateSwitchMenu(scr
, wwin
, ACTION_CHANGE_WORKSPACE
);
1881 wGNOMEUpdateClientStateHint(wwin
, True
);
1884 wKWMUpdateClientWorkspace(wwin
);
1885 wKWMSendEventMessage(wwin
, WKWMChangedClient
);
1894 wWindowSynthConfigureNotify(WWindow
*wwin
)
1898 sevent
.type
= ConfigureNotify
;
1899 sevent
.xconfigure
.display
= dpy
;
1900 sevent
.xconfigure
.event
= wwin
->client_win
;
1901 sevent
.xconfigure
.window
= wwin
->client_win
;
1903 sevent
.xconfigure
.x
= wwin
->client
.x
;
1904 sevent
.xconfigure
.y
= wwin
->client
.y
;
1905 sevent
.xconfigure
.width
= wwin
->client
.width
;
1906 sevent
.xconfigure
.height
= wwin
->client
.height
;
1908 sevent
.xconfigure
.border_width
= wwin
->old_border_width
;
1909 if (WFLAGP(wwin
, no_titlebar
))
1910 sevent
.xconfigure
.above
= None
;
1912 sevent
.xconfigure
.above
= wwin
->frame
->titlebar
->window
;
1914 sevent
.xconfigure
.override_redirect
= False
;
1915 XSendEvent(dpy
, wwin
->client_win
, False
, StructureNotifyMask
, &sevent
);
1917 wKWMSendEventMessage(wwin
, WKWMChangedClient
);
1924 *----------------------------------------------------------------------
1925 * wWindowConfigure--
1926 * Configures the frame, decorations and client window to the
1927 * specified geometry. The geometry is not checked for validity,
1928 * wWindowConstrainSize() must be used for that.
1929 * The size parameters are for the client window, but the position is
1931 * The client window receives a ConfigureNotify event, according
1932 * to what ICCCM says.
1938 * Window size and position are changed and client window receives
1939 * a ConfigureNotify event.
1940 *----------------------------------------------------------------------
1943 wWindowConfigure(wwin
, req_x
, req_y
, req_width
, req_height
)
1945 int req_x
, req_y
; /* new position of the frame */
1946 int req_width
, req_height
; /* new size of the client */
1948 int synth_notify
= False
;
1951 resize
= (req_width
!=wwin
->client
.width
1952 || req_height
!=wwin
->client
.height
);
1954 * if the window is being moved but not resized then
1955 * send a synthetic ConfigureNotify
1957 if ((req_x
!=wwin
->frame_x
|| req_y
!=wwin
->frame_y
) && !resize
) {
1958 synth_notify
= True
;
1961 if (WFLAGP(wwin
, dont_move_off
))
1962 wScreenBringInside(wwin
->screen_ptr
, &req_x
, &req_y
,
1963 req_width
, req_height
);
1965 if (req_width
< MIN_WINDOW_SIZE
)
1966 req_width
= MIN_WINDOW_SIZE
;
1967 if (req_height
< MIN_WINDOW_SIZE
)
1968 req_height
= MIN_WINDOW_SIZE
;
1970 /* If growing, resize inner part before frame,
1971 * if shrinking, resize frame before.
1972 * This will prevent the frame (that can have a different color)
1973 * to be exposed, causing flicker */
1974 if (req_height
> wwin
->frame
->core
->height
1975 || req_width
> wwin
->frame
->core
->width
)
1976 XResizeWindow(dpy
, wwin
->client_win
, req_width
, req_height
);
1978 if (wwin
->flags
.shaded
) {
1979 wFrameWindowConfigure(wwin
->frame
, req_x
, req_y
,
1980 req_width
, wwin
->frame
->core
->height
);
1981 wwin
->old_geometry
.height
= req_height
;
1985 h
= req_height
+ wwin
->frame
->top_width
1986 + wwin
->frame
->bottom_width
;
1988 wFrameWindowConfigure(wwin
->frame
, req_x
, req_y
, req_width
, h
);
1991 if (!(req_height
> wwin
->frame
->core
->height
1992 || req_width
> wwin
->frame
->core
->width
))
1993 XResizeWindow(dpy
, wwin
->client_win
, req_width
, req_height
);
1995 wwin
->client
.x
= req_x
;
1996 wwin
->client
.y
= req_y
+ wwin
->frame
->top_width
;
1997 wwin
->client
.width
= req_width
;
1998 wwin
->client
.height
= req_height
;
2000 wwin
->client
.x
= req_x
;
2001 wwin
->client
.y
= req_y
+ wwin
->frame
->top_width
;
2003 XMoveWindow(dpy
, wwin
->frame
->core
->window
, req_x
, req_y
);
2005 wwin
->frame_x
= req_x
;
2006 wwin
->frame_y
= req_y
;
2007 if (!WFLAGP(wwin
, no_border
)) {
2008 wwin
->client
.x
+= FRAME_BORDER_WIDTH
;
2009 wwin
->client
.y
+= FRAME_BORDER_WIDTH
;
2013 if (wShapeSupported
&& wwin
->flags
.shaped
&& resize
) {
2014 wWindowSetShape(wwin
);
2019 wWindowSynthConfigureNotify(wwin
);
2025 wWindowMove(wwin
, req_x
, req_y
)
2027 int req_x
, req_y
; /* new position of the frame */
2029 #ifdef CONFIGURE_WINDOW_WHILE_MOVING
2030 int synth_notify
= False
;
2032 /* Send a synthetic ConfigureNotify event for every window movement. */
2033 if ((req_x
!=wwin
->frame_x
|| req_y
!=wwin
->frame_y
)) {
2034 synth_notify
= True
;
2037 /* A single synthetic ConfigureNotify event is sent at the end of
2038 * a completed (opaque) movement in moveres.c */
2041 if (WFLAGP(wwin
, dont_move_off
))
2042 wScreenBringInside(wwin
->screen_ptr
, &req_x
, &req_y
,
2043 wwin
->frame
->core
->width
, wwin
->frame
->core
->height
);
2045 wwin
->client
.x
= req_x
;
2046 wwin
->client
.y
= req_y
+ wwin
->frame
->top_width
;
2047 if (!WFLAGP(wwin
, no_border
)) {
2048 wwin
->client
.x
+= FRAME_BORDER_WIDTH
;
2049 wwin
->client
.y
+= FRAME_BORDER_WIDTH
;
2052 XMoveWindow(dpy
, wwin
->frame
->core
->window
, req_x
, req_y
);
2054 wwin
->frame_x
= req_x
;
2055 wwin
->frame_y
= req_y
;
2057 #ifdef CONFIGURE_WINDOW_WHILE_MOVING
2059 wWindowSynthConfigureNotify(wwin
);
2065 wWindowUpdateButtonImages(WWindow
*wwin
)
2067 WScreen
*scr
= wwin
->screen_ptr
;
2068 Pixmap pixmap
, mask
;
2069 WFrameWindow
*fwin
= wwin
->frame
;
2071 if (WFLAGP(wwin
, no_titlebar
))
2074 /* miniaturize button */
2076 if (!WFLAGP(wwin
, no_miniaturize_button
)) {
2077 if (wwin
->wm_gnustep_attr
2078 && wwin
->wm_gnustep_attr
->flags
& GSMiniaturizePixmapAttr
) {
2079 pixmap
= wwin
->wm_gnustep_attr
->miniaturize_pixmap
;
2081 if (wwin
->wm_gnustep_attr
->flags
&GSMiniaturizeMaskAttr
) {
2082 mask
= wwin
->wm_gnustep_attr
->miniaturize_mask
;
2087 if (fwin
->lbutton_image
2088 && (fwin
->lbutton_image
->image
!= pixmap
2089 || fwin
->lbutton_image
->mask
!= mask
)) {
2090 wPixmapDestroy(fwin
->lbutton_image
);
2091 fwin
->lbutton_image
= NULL
;
2094 if (!fwin
->lbutton_image
) {
2095 fwin
->lbutton_image
= wPixmapCreate(scr
, pixmap
, mask
);
2096 fwin
->lbutton_image
->client_owned
= 1;
2097 fwin
->lbutton_image
->client_owned_mask
= 1;
2100 if (fwin
->lbutton_image
&& !fwin
->lbutton_image
->shared
) {
2101 wPixmapDestroy(fwin
->lbutton_image
);
2103 fwin
->lbutton_image
= scr
->b_pixmaps
[WBUT_ICONIFY
];
2107 #ifdef XKB_BUTTON_HINT
2108 if (!WFLAGP(wwin
, no_language_button
)) {
2109 if (fwin
->languagebutton_image
&&
2110 !fwin
->languagebutton_image
->shared
) {
2111 wPixmapDestroy(fwin
->languagebutton_image
);
2113 fwin
->languagebutton_image
=
2114 scr
->b_pixmaps
[WBUT_XKBGROUP1
+ fwin
->languagemode
];
2120 /* redefine WFLAGP to MGFLAGP to allow broken close operation */
2121 #define MGFLAGP(wwin, FLAG) (wwin)->client_flags.FLAG
2123 if (!WFLAGP(wwin
, no_close_button
)) {
2124 if (wwin
->wm_gnustep_attr
2125 && wwin
->wm_gnustep_attr
->flags
& GSClosePixmapAttr
) {
2126 pixmap
= wwin
->wm_gnustep_attr
->close_pixmap
;
2128 if (wwin
->wm_gnustep_attr
->flags
&GSCloseMaskAttr
)
2129 mask
= wwin
->wm_gnustep_attr
->close_mask
;
2133 if (fwin
->rbutton_image
&& (fwin
->rbutton_image
->image
!= pixmap
2134 || fwin
->rbutton_image
->mask
!= mask
)) {
2135 wPixmapDestroy(fwin
->rbutton_image
);
2136 fwin
->rbutton_image
= NULL
;
2139 if (!fwin
->rbutton_image
) {
2140 fwin
->rbutton_image
= wPixmapCreate(scr
, pixmap
, mask
);
2141 fwin
->rbutton_image
->client_owned
= 1;
2142 fwin
->rbutton_image
->client_owned_mask
= 1;
2145 } else if (WFLAGP(wwin
, kill_close
)) {
2147 if (fwin
->rbutton_image
&& !fwin
->rbutton_image
->shared
)
2148 wPixmapDestroy(fwin
->rbutton_image
);
2150 fwin
->rbutton_image
= scr
->b_pixmaps
[WBUT_KILL
];
2152 } else if (MGFLAGP(wwin
, broken_close
)) {
2154 if (fwin
->rbutton_image
&& !fwin
->rbutton_image
->shared
)
2155 wPixmapDestroy(fwin
->rbutton_image
);
2157 fwin
->rbutton_image
= scr
->b_pixmaps
[WBUT_BROKENCLOSE
];
2161 if (fwin
->rbutton_image
&& !fwin
->rbutton_image
->shared
)
2162 wPixmapDestroy(fwin
->rbutton_image
);
2164 fwin
->rbutton_image
= scr
->b_pixmaps
[WBUT_CLOSE
];
2168 /* force buttons to be redrawn */
2169 fwin
->flags
.need_texture_change
= 1;
2170 wFrameWindowPaint(fwin
);
2175 *---------------------------------------------------------------------------
2176 * wWindowConfigureBorders--
2177 * Update window border configuration according to attribute flags.
2179 *---------------------------------------------------------------------------
2182 wWindowConfigureBorders(WWindow
*wwin
)
2188 flags
= WFF_LEFT_BUTTON
|WFF_RIGHT_BUTTON
;
2189 #ifdef XKB_BUTTON_HINT
2190 flags
|= WFF_LANGUAGE_BUTTON
;
2192 if (!WFLAGP(wwin
, no_titlebar
))
2193 flags
|= WFF_TITLEBAR
;
2194 if (!WFLAGP(wwin
, no_resizebar
))
2195 flags
|= WFF_RESIZEBAR
;
2196 if (!WFLAGP(wwin
, no_border
))
2197 flags
|= WFF_BORDER
;
2198 if (wwin
->flags
.shaded
)
2199 flags
|= WFF_IS_SHADED
;
2201 oldh
= wwin
->frame
->top_width
;
2202 wFrameWindowUpdateBorders(wwin
->frame
, flags
);
2203 if (oldh
!= wwin
->frame
->top_width
) {
2204 newy
= wwin
->frame_y
+ oldh
- wwin
->frame
->top_width
;
2206 XMoveWindow(dpy
, wwin
->client_win
, 0, wwin
->frame
->top_width
);
2207 wWindowConfigure(wwin
, wwin
->frame_x
, newy
,
2208 wwin
->client
.width
, wwin
->client
.height
);
2212 if (!WFLAGP(wwin
, no_miniaturize_button
)
2213 && wwin
->frame
->flags
.hide_left_button
)
2214 flags
|= WFF_LEFT_BUTTON
;
2216 #ifdef XKB_BUTTON_HINT
2217 if (!WFLAGP(wwin
, no_language_button
)
2218 && wwin
->frame
->flags
.hide_language_button
)
2219 flags
|= WFF_LANGUAGE_BUTTON
;
2222 if (!WFLAGP(wwin
, no_close_button
)
2223 && wwin
->frame
->flags
.hide_right_button
)
2224 flags
|= WFF_RIGHT_BUTTON
;
2227 wWindowUpdateButtonImages(wwin
);
2228 wFrameWindowShowButton(wwin
->frame
, flags
);
2232 if (WFLAGP(wwin
, no_miniaturize_button
)
2233 && !wwin
->frame
->flags
.hide_left_button
)
2234 flags
|= WFF_LEFT_BUTTON
;
2236 #ifdef XKB_BUTTON_HINT
2237 if (WFLAGP(wwin
, no_language_button
)
2238 && !wwin
->frame
->flags
.hide_language_button
)
2239 flags
|= WFF_LANGUAGE_BUTTON
;
2242 if (WFLAGP(wwin
, no_close_button
)
2243 && !wwin
->frame
->flags
.hide_right_button
)
2244 flags
|= WFF_RIGHT_BUTTON
;
2247 wFrameWindowHideButton(wwin
->frame
, flags
);
2250 if (wShapeSupported
&& wwin
->flags
.shaped
) {
2251 wWindowSetShape(wwin
);
2259 wWindowSaveState(WWindow
*wwin
)
2264 memset(data
, 0, sizeof(CARD32
)*10);
2265 data
[0] = wwin
->frame
->workspace
;
2266 data
[1] = wwin
->flags
.miniaturized
;
2267 data
[2] = wwin
->flags
.shaded
;
2268 data
[3] = wwin
->flags
.hidden
;
2270 for (i
= 0; i
< MAX_WINDOW_SHORTCUTS
; i
++) {
2271 if (wwin
->screen_ptr
->shortcutWindows
[i
] &&
2272 WMCountInBag(wwin
->screen_ptr
->shortcutWindows
[i
], wwin
))
2275 XChangeProperty(dpy
, wwin
->client_win
, _XA_WINDOWMAKER_STATE
,
2276 _XA_WINDOWMAKER_STATE
, 32, PropModeReplace
,
2277 (unsigned char *)data
, 10);
2282 getSavedState(Window window
, WSavedState
**state
)
2286 unsigned long nitems_ret
;
2287 unsigned long bytes_after_ret
;
2290 if (XGetWindowProperty(dpy
, window
, _XA_WINDOWMAKER_STATE
, 0, 10,
2291 True
, _XA_WINDOWMAKER_STATE
,
2292 &type_ret
, &fmt_ret
, &nitems_ret
, &bytes_after_ret
,
2293 (unsigned char **)&data
)!=Success
|| !data
)
2296 *state
= malloc(sizeof(WSavedState
));
2299 (*state
)->workspace
= data
[0];
2300 (*state
)->miniaturized
= data
[1];
2301 (*state
)->shaded
= data
[2];
2302 (*state
)->hidden
= data
[3];
2303 (*state
)->use_geometry
= data
[4];
2304 (*state
)->x
= data
[5];
2305 (*state
)->y
= data
[6];
2306 (*state
)->w
= data
[7];
2307 (*state
)->h
= data
[8];
2308 (*state
)->window_shortcuts
= data
[9];
2312 if (*state
&& type_ret
==_XA_WINDOWMAKER_STATE
)
2321 wWindowClearShape(WWindow
*wwin
)
2323 XShapeCombineMask(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2324 0, wwin
->frame
->top_width
, None
, ShapeSet
);
2329 wWindowSetShape(WWindow
*wwin
)
2333 #ifdef OPTIMIZE_SHAPE
2338 /* only shape is the client's */
2339 if (WFLAGP(wwin
, no_titlebar
) && WFLAGP(wwin
, no_resizebar
)) {
2343 /* Get array of rectangles describing the shape mask */
2344 rects
= XShapeGetRectangles(dpy
, wwin
->client_win
, ShapeBounding
,
2350 urec
= malloc(sizeof(XRectangle
)*(count
+2));
2356 /* insert our decoration rectangles in the rect list */
2357 memcpy(urec
, rects
, sizeof(XRectangle
)*count
);
2360 if (!WFLAGP(wwin
, no_titlebar
)) {
2362 urec
[count
].y
= -1 - wwin
->frame
->top_width
;
2363 urec
[count
].width
= wwin
->frame
->core
->width
+ 2;
2364 urec
[count
].height
= wwin
->frame
->top_width
+ 1;
2367 if (!WFLAGP(wwin
, no_resizebar
)) {
2369 urec
[count
].y
= wwin
->frame
->core
->height
2370 - wwin
->frame
->bottom_width
- wwin
->frame
->top_width
;
2371 urec
[count
].width
= wwin
->frame
->core
->width
+ 2;
2372 urec
[count
].height
= wwin
->frame
->bottom_width
+ 1;
2376 /* shape our frame window */
2377 XShapeCombineRectangles(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2378 0, wwin
->frame
->top_width
, urec
, count
,
2379 ShapeSet
, Unsorted
);
2385 #endif /* OPTIMIZE_SHAPE */
2387 if (!WFLAGP(wwin
, no_titlebar
)) {
2390 rect
[count
].width
= wwin
->frame
->core
->width
+ 2;
2391 rect
[count
].height
= wwin
->frame
->top_width
+ 1;
2394 if (!WFLAGP(wwin
, no_resizebar
)) {
2396 rect
[count
].y
= wwin
->frame
->core
->height
- wwin
->frame
->bottom_width
;
2397 rect
[count
].width
= wwin
->frame
->core
->width
+ 2;
2398 rect
[count
].height
= wwin
->frame
->bottom_width
+ 1;
2402 XShapeCombineRectangles(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2403 0, 0, rect
, count
, ShapeSet
, Unsorted
);
2405 XShapeCombineShape(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2406 0, wwin
->frame
->top_width
, wwin
->client_win
,
2407 ShapeBounding
, (count
> 0 ? ShapeUnion
: ShapeSet
));
2412 /* ====================================================================== */
2415 getFocusMode(WWindow
*wwin
)
2419 if ((wwin
->wm_hints
) && (wwin
->wm_hints
->flags
& InputHint
)) {
2420 if (wwin
->wm_hints
->input
== True
) {
2421 if (wwin
->protocols
.TAKE_FOCUS
)
2422 mode
= WFM_LOCALLY_ACTIVE
;
2426 if (wwin
->protocols
.TAKE_FOCUS
)
2427 mode
= WFM_GLOBALLY_ACTIVE
;
2429 mode
= WFM_NO_INPUT
;
2439 wWindowSetKeyGrabs(WWindow
*wwin
)
2444 for (i
=0; i
<WKBD_LAST
; i
++) {
2445 key
= &wKeyBindings
[i
];
2447 if (key
->keycode
==0)
2449 if (key
->modifier
!=AnyModifier
) {
2450 XGrabKey(dpy
, key
->keycode
, key
->modifier
|LockMask
,
2451 wwin
->frame
->core
->window
, True
, GrabModeAsync
, GrabModeAsync
);
2453 /* Also grab all modifier combinations possible that include,
2454 * LockMask, ScrollLockMask and NumLockMask, so that keygrabs
2455 * work even if the NumLock/ScrollLock key is on.
2457 wHackedGrabKey(key
->keycode
, key
->modifier
,
2458 wwin
->frame
->core
->window
, True
, GrabModeAsync
,
2462 XGrabKey(dpy
, key
->keycode
, key
->modifier
,
2463 wwin
->frame
->core
->window
, True
, GrabModeAsync
, GrabModeAsync
);
2467 wRootMenuBindShortcuts(wwin
->frame
->core
->window
);
2474 wWindowResetMouseGrabs(WWindow
*wwin
)
2476 /* Mouse grabs can't be done on the client window because of
2477 * ICCCM and because clients that try to do the same will crash.
2479 * But there is a problem wich makes tbar buttons of unfocused
2480 * windows not usable as the click goes to the frame window instead
2481 * of the button itself. Must figure a way to fix that.
2484 XUngrabButton(dpy
, AnyButton
, AnyModifier
, wwin
->client_win
);
2486 if (!WFLAGP(wwin
, no_bind_mouse
)) {
2487 /* grabs for Meta+drag */
2488 wHackedGrabButton(AnyButton
, MOD_MASK
, wwin
->client_win
,
2489 True
, ButtonPressMask
, GrabModeSync
,
2490 GrabModeAsync
, None
, None
);
2493 if (!wwin
->flags
.focused
&& !WFLAGP(wwin
, no_focusable
)
2494 && !wwin
->flags
.is_gnustep
) {
2495 /* the passive grabs to focus the window */
2496 if (wPreferences
.focus_mode
== WKF_CLICK
)
2497 XGrabButton(dpy
, AnyButton
, AnyModifier
, wwin
->client_win
,
2498 True
, ButtonPressMask
, GrabModeSync
, GrabModeAsync
,
2506 wWindowUpdateGNUstepAttr(WWindow
*wwin
, GNUstepWMAttributes
*attr
)
2508 if (attr
->flags
& GSExtraFlagsAttr
) {
2509 if (MGFLAGP(wwin
, broken_close
) !=
2510 (attr
->extra_flags
& GSDocumentEditedFlag
)) {
2511 wwin
->client_flags
.broken_close
= !MGFLAGP(wwin
, broken_close
);
2512 wWindowUpdateButtonImages(wwin
);
2519 wWindowAddSavedState(char *instance
, char *class, char *command
,
2520 pid_t pid
, WSavedState
*state
)
2522 WWindowState
*wstate
;
2524 wstate
= malloc(sizeof(WWindowState
));
2528 memset(wstate
, 0, sizeof(WWindowState
));
2531 wstate
->instance
= wstrdup(instance
);
2533 wstate
->class = wstrdup(class);
2535 wstate
->command
= wstrdup(command
);
2536 wstate
->state
= state
;
2538 wstate
->next
= windowState
;
2539 windowState
= wstate
;
2542 printf("Added WindowState with ID %p, for %s.%s : \"%s\"\n", wstate
, instance
,
2550 #define SAME(x, y) (((x) && (y) && !strcmp((x), (y))) || (!(x) && !(y)))
2554 wWindowGetSavedState(Window win
)
2556 char *instance
, *class, *command
=NULL
;
2557 WWindowState
*wstate
= windowState
;
2564 if (XGetCommand(dpy
, win
, &argv
, &argc
)) {
2566 command
= FlattenStringList(argv
, argc
);
2567 XFreeStringList(argv
);
2572 if (PropGetWMClass(win
, &class, &instance
)) {
2574 if (SAME(instance
, wstate
->instance
) &&
2575 SAME(class, wstate
->class) &&
2576 SAME(command
, wstate
->command
)) {
2579 wstate
= wstate
->next
;
2586 printf("Read WindowState with ID %p, for %s.%s : \"%s\"\n", wstate
, instance
,
2590 if (command
) free(command
);
2591 if (instance
) XFree(instance
);
2592 if (class) XFree(class);
2599 wWindowDeleteSavedState(WMagicNumber id
)
2601 WWindowState
*tmp
, *wstate
=(WWindowState
*)id
;
2603 if (!wstate
|| !windowState
)
2608 windowState
= wstate
->next
;
2610 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2611 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
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
);
2620 if (tmp
->next
==wstate
) {
2621 tmp
->next
=wstate
->next
;
2623 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2624 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2626 if (wstate
->instance
) free(wstate
->instance
);
2627 if (wstate
->class) free(wstate
->class);
2628 if (wstate
->command
) free(wstate
->command
);
2629 free(wstate
->state
);
2640 wWindowDeleteSavedStatesForPID(pid_t pid
)
2642 WWindowState
*tmp
, *wstate
;
2648 if (tmp
->pid
== pid
) {
2649 wstate
= windowState
;
2650 windowState
= tmp
->next
;
2652 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2653 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2655 if (wstate
->instance
) free(wstate
->instance
);
2656 if (wstate
->class) free(wstate
->class);
2657 if (wstate
->command
) free(wstate
->command
);
2658 free(wstate
->state
);
2662 if (tmp
->next
->pid
==pid
) {
2664 tmp
->next
= wstate
->next
;
2666 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2667 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2669 if (wstate
->instance
) free(wstate
->instance
);
2670 if (wstate
->class) free(wstate
->class);
2671 if (wstate
->command
) free(wstate
->command
);
2672 free(wstate
->state
);
2682 /* ====================================================================== */
2685 resizebarMouseDown(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2687 WWindow
*wwin
= data
;
2689 #ifndef NUMLOCK_HACK
2690 if ((event
->xbutton
.state
& ValidModMask
)
2691 != (event
->xbutton
.state
& ~LockMask
)) {
2692 wwarning(_("the NumLock, ScrollLock or similar key seems to be turned on.\n"\
2693 "Turn it off or some mouse actions and keyboard shortcuts will not work."));
2697 event
->xbutton
.state
&= ValidModMask
;
2699 CloseWindowMenu(wwin
->screen_ptr
);
2701 if (wPreferences
.focus_mode
==WKF_CLICK
2702 && !(event
->xbutton
.state
&ControlMask
)
2703 && !WFLAGP(wwin
, no_focusable
)) {
2704 wSetFocusTo(wwin
->screen_ptr
, wwin
);
2707 if (event
->xbutton
.button
== Button1
)
2708 wRaiseFrame(wwin
->frame
->core
);
2710 if (event
->xbutton
.window
!= wwin
->frame
->resizebar
->window
) {
2711 if (XGrabPointer(dpy
, wwin
->frame
->resizebar
->window
, True
,
2712 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2713 GrabModeAsync
, GrabModeAsync
, None
,
2714 None
, CurrentTime
)!=GrabSuccess
) {
2716 wwarning("pointer grab failed for window move");
2722 if (event
->xbutton
.state
& MOD_MASK
) {
2723 /* move the window */
2724 wMouseMoveWindow(wwin
, event
);
2725 XUngrabPointer(dpy
, CurrentTime
);
2727 wMouseResizeWindow(wwin
, event
);
2728 XUngrabPointer(dpy
, CurrentTime
);
2735 titlebarDblClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2737 WWindow
*wwin
= data
;
2739 event
->xbutton
.state
&= ValidModMask
;
2741 if (event
->xbutton
.button
==Button1
) {
2742 if (event
->xbutton
.state
== 0) {
2743 if (!WFLAGP(wwin
, no_shadeable
)) {
2745 if (wwin
->flags
.shaded
)
2746 wUnshadeWindow(wwin
);
2753 if (event
->xbutton
.state
& ControlMask
)
2754 dir
|= MAX_VERTICAL
;
2756 if (event
->xbutton
.state
& ShiftMask
) {
2757 dir
|= MAX_HORIZONTAL
;
2758 if (!(event
->xbutton
.state
& ControlMask
))
2759 wSelectWindow(wwin
, !wwin
->flags
.selected
);
2762 /* maximize window */
2763 if (dir
!=0 && !WFLAGP(wwin
, no_resizable
)) {
2764 if (wwin
->flags
.maximized
)
2765 wUnmaximizeWindow(wwin
);
2767 wMaximizeWindow(wwin
, dir
);
2770 } else if (event
->xbutton
.button
==Button3
) {
2771 if (event
->xbutton
.state
& MOD_MASK
) {
2772 wHideOtherApplications(wwin
);
2774 } else if (event
->xbutton
.button
==Button2
) {
2775 wSelectWindow(wwin
, !wwin
->flags
.selected
);
2781 frameMouseDown(WObjDescriptor
*desc
, XEvent
*event
)
2783 WWindow
*wwin
= desc
->parent
;
2785 event
->xbutton
.state
&= ValidModMask
;
2787 CloseWindowMenu(wwin
->screen_ptr
);
2789 if (wPreferences
.focus_mode
==WKF_CLICK
2790 && !(event
->xbutton
.state
&ControlMask
)
2791 && !WFLAGP(wwin
, no_focusable
)) {
2792 wSetFocusTo(wwin
->screen_ptr
, wwin
);
2794 if (event
->xbutton
.button
== Button1
) {
2795 wRaiseFrame(wwin
->frame
->core
);
2798 if (event
->xbutton
.state
& MOD_MASK
) {
2799 /* move the window */
2800 if (XGrabPointer(dpy
, wwin
->client_win
, False
,
2801 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2802 GrabModeAsync
, GrabModeAsync
, None
,
2803 None
, CurrentTime
)!=GrabSuccess
) {
2805 wwarning("pointer grab failed for window move");
2809 if (event
->xbutton
.button
== Button3
&& !WFLAGP(wwin
, no_resizable
))
2810 wMouseResizeWindow(wwin
, event
);
2812 wMouseMoveWindow(wwin
, event
);
2813 XUngrabPointer(dpy
, CurrentTime
);
2819 titlebarMouseDown(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2821 WWindow
*wwin
= (WWindow
*)data
;
2823 #ifndef NUMLOCK_HACK
2824 if ((event
->xbutton
.state
& ValidModMask
)
2825 != (event
->xbutton
.state
& ~LockMask
)) {
2826 wwarning(_("the NumLock, ScrollLock or similar key seems to be turned on.\n"\
2827 "Turn it off or some mouse actions and keyboard shortcuts will not work."));
2830 event
->xbutton
.state
&= ValidModMask
;
2832 CloseWindowMenu(wwin
->screen_ptr
);
2834 if (wPreferences
.focus_mode
==WKF_CLICK
2835 && !(event
->xbutton
.state
&ControlMask
)
2836 && !WFLAGP(wwin
, no_focusable
)) {
2837 wSetFocusTo(wwin
->screen_ptr
, wwin
);
2840 if (event
->xbutton
.button
== Button1
2841 || event
->xbutton
.button
== Button2
) {
2843 if (event
->xbutton
.button
== Button1
) {
2844 if (event
->xbutton
.state
& MOD_MASK
) {
2845 wLowerFrame(wwin
->frame
->core
);
2847 wRaiseFrame(wwin
->frame
->core
);
2850 if ((event
->xbutton
.state
& ShiftMask
)
2851 && !(event
->xbutton
.state
& ControlMask
)) {
2852 wSelectWindow(wwin
, !wwin
->flags
.selected
);
2855 if (event
->xbutton
.window
!= wwin
->frame
->titlebar
->window
2856 && XGrabPointer(dpy
, wwin
->frame
->titlebar
->window
, False
,
2857 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2858 GrabModeAsync
, GrabModeAsync
, None
,
2859 None
, CurrentTime
)!=GrabSuccess
) {
2861 wwarning("pointer grab failed for window move");
2866 /* move the window */
2867 wMouseMoveWindow(wwin
, event
);
2869 XUngrabPointer(dpy
, CurrentTime
);
2870 } else if (event
->xbutton
.button
== Button3
&& event
->xbutton
.state
==0
2871 && !wwin
->flags
.internal_window
2872 && !WCHECK_STATE(WSTATE_MODAL
)) {
2873 WObjDescriptor
*desc
;
2875 if (event
->xbutton
.window
!= wwin
->frame
->titlebar
->window
2876 && XGrabPointer(dpy
, wwin
->frame
->titlebar
->window
, False
,
2877 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2878 GrabModeAsync
, GrabModeAsync
, None
,
2879 None
, CurrentTime
)!=GrabSuccess
) {
2881 wwarning("pointer grab failed for window move");
2886 OpenWindowMenu(wwin
, event
->xbutton
.x_root
,
2887 wwin
->frame_y
+wwin
->frame
->top_width
, False
);
2889 /* allow drag select */
2890 desc
= &wwin
->screen_ptr
->window_menu
->menu
->descriptor
;
2891 event
->xany
.send_event
= True
;
2892 (*desc
->handle_mousedown
)(desc
, event
);
2894 XUngrabPointer(dpy
, CurrentTime
);
2901 windowCloseClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2903 WWindow
*wwin
= data
;
2905 event
->xbutton
.state
&= ValidModMask
;
2907 CloseWindowMenu(wwin
->screen_ptr
);
2909 if (event
->xbutton
.button
< Button1
|| event
->xbutton
.button
> Button3
)
2912 /* if control-click, kill the client */
2913 if (event
->xbutton
.state
& ControlMask
) {
2917 if (wwin
->flags
.olwm_push_pin_out
) {
2919 wwin
->flags
.olwm_push_pin_out
= 0;
2921 wOLWMChangePushpinState(wwin
, True
);
2923 wFrameWindowUpdatePushButton(wwin
->frame
, False
);
2928 if (wwin
->protocols
.DELETE_WINDOW
&& event
->xbutton
.state
==0) {
2929 /* send delete message */
2930 wClientSendProtocol(wwin
, _XA_WM_DELETE_WINDOW
, LastTimestamp
);
2937 windowCloseDblClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2939 WWindow
*wwin
= data
;
2941 CloseWindowMenu(wwin
->screen_ptr
);
2943 if (event
->xbutton
.button
< Button1
|| event
->xbutton
.button
> Button3
)
2946 /* send delete message */
2947 if (wwin
->protocols
.DELETE_WINDOW
) {
2948 wClientSendProtocol(wwin
, _XA_WM_DELETE_WINDOW
, LastTimestamp
);
2955 #ifdef XKB_BUTTON_HINT
2957 windowLanguageClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2959 WWindow
*wwin
= data
;
2960 WFrameWindow
*fwin
= wwin
->frame
;
2961 WScreen
*scr
= fwin
->screen_ptr
;
2962 XkbStateRec staterec
;
2965 if (event
->xbutton
.button
!= Button1
&& event
->xbutton
.button
!= Button3
)
2967 tl
= wwin
->frame
->languagemode
;
2968 wwin
->frame
->languagemode
= wwin
->frame
->last_languagemode
;
2969 wwin
->frame
->last_languagemode
= tl
;
2970 wSetFocusTo(scr
, wwin
);
2971 wwin
->frame
->languagebutton_image
=
2972 wwin
->frame
->screen_ptr
->b_pixmaps
[WBUT_XKBGROUP1
+
2973 wwin
->frame
->languagemode
];
2974 wFrameWindowUpdateLanguageButton(wwin
->frame
);
2975 if (event
->xbutton
.button
== Button3
)
2977 wRaiseFrame(fwin
->core
);
2983 windowIconifyClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2985 WWindow
*wwin
= data
;
2987 event
->xbutton
.state
&= ValidModMask
;
2989 CloseWindowMenu(wwin
->screen_ptr
);
2991 if (event
->xbutton
.button
< Button1
|| event
->xbutton
.button
> Button3
)
2994 if (wwin
->protocols
.MINIATURIZE_WINDOW
&& event
->xbutton
.state
==0) {
2995 wClientSendProtocol(wwin
, _XA_GNUSTEP_WM_MINIATURIZE_WINDOW
,
2999 if ((event
->xbutton
.state
& ControlMask
) ||
3000 (event
->xbutton
.button
== Button3
)) {
3002 wapp
= wApplicationOf(wwin
->main_window
);
3003 if (wapp
&& !WFLAGP(wwin
, no_appicon
))
3004 wHideApplication(wapp
);
3005 } else if (event
->xbutton
.state
==0) {
3006 wIconifyWindow(wwin
);