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
);
150 if (flags
& WTextureSettings
) {
151 wwin
->frame
->flags
.need_texture_remake
= 1;
153 if (flags
& (WTextureSettings
| WColorSettings
)) {
154 if (wwin
->frame
->titlebar
)
155 XClearWindow(dpy
, wwin
->frame
->titlebar
->window
);
157 wFrameWindowPaint(wwin
->frame
);
161 /************************************/
164 wWindowFor(Window window
)
166 WObjDescriptor
*desc
;
171 if (XFindContext(dpy
, window
, wWinContext
, (XPointer
*)&desc
)==XCNOENT
)
174 if (desc
->parent_type
==WCLASS_WINDOW
)
176 else if (desc
->parent_type
==WCLASS_FRAME
) {
177 WFrameWindow
*frame
= (WFrameWindow
*)desc
->parent
;
178 if (frame
->flags
.is_client_window_frame
)
191 wwin
= wmalloc(sizeof(WWindow
));
194 memset(wwin
, 0, sizeof(WWindow
));
196 wwin
->client_descriptor
.handle_mousedown
= frameMouseDown
;
197 wwin
->client_descriptor
.parent
= wwin
;
198 wwin
->client_descriptor
.self
= wwin
;
199 wwin
->client_descriptor
.parent_type
= WCLASS_WINDOW
;
206 wWindowDestroy(WWindow
*wwin
)
210 WMRemoveNotificationObserver(wwin
);
212 wwin
->flags
.destroyed
= 1;
214 for (i
= 0; i
< MAX_WINDOW_SHORTCUTS
; i
++) {
215 wwin
->screen_ptr
->shortcutSelectedWindows
[i
] = list_remove_elem(wwin
->screen_ptr
->shortcutSelectedWindows
[i
], wwin
);
216 if (wwin
->screen_ptr
->shortcutWindow
[i
] == wwin
) {
217 if (wwin
->screen_ptr
->shortcutSelectedWindows
[i
]) {
218 LinkedList
*list
= wwin
->screen_ptr
->shortcutSelectedWindows
[i
];
219 wwin
->screen_ptr
->shortcutWindow
[i
] =
222 else wwin
->screen_ptr
->shortcutWindow
[i
] = NULL
;
226 if (wwin
->normal_hints
)
227 free(wwin
->normal_hints
);
230 XFree(wwin
->wm_hints
);
232 if (wwin
->wm_instance
)
233 XFree(wwin
->wm_instance
);
236 XFree(wwin
->wm_class
);
238 if (wwin
->wm_gnustep_attr
)
239 free(wwin
->wm_gnustep_attr
);
241 if (wwin
->cmap_windows
)
242 XFree(wwin
->cmap_windows
);
244 XDeleteContext(dpy
, wwin
->client_win
, wWinContext
);
247 wFrameWindowDestroy(wwin
->frame
);
250 RemoveFromStackList(wwin
->icon
->core
);
251 wIconDestroy(wwin
->icon
);
252 if (wPreferences
.auto_arrange_icons
)
253 wArrangeIcons(wwin
->screen_ptr
, True
);
262 setupGNUstepHints(WWindow
*wwin
, GNUstepWMAttributes
*gs_hints
)
264 if (gs_hints
->flags
& GSWindowStyleAttr
) {
265 wwin
->client_flags
.no_titlebar
=
266 ((gs_hints
->window_style
& WMTitledWindowMask
)?0:1);
268 wwin
->client_flags
.no_close_button
=
269 ((gs_hints
->window_style
& WMClosableWindowMask
)?0:1);
271 wwin
->client_flags
.no_closable
=
272 ((gs_hints
->window_style
& WMClosableWindowMask
)?0:1);
274 wwin
->client_flags
.no_miniaturize_button
=
275 ((gs_hints
->window_style
& WMMiniaturizableWindowMask
)?0:1);
277 wwin
->client_flags
.no_miniaturizable
=
278 ((gs_hints
->window_style
& WMMiniaturizableWindowMask
)?0:1);
280 wwin
->client_flags
.no_resizebar
=
281 ((gs_hints
->window_style
& WMResizableWindowMask
)?0:1);
283 wwin
->client_flags
.no_resizable
=
284 ((gs_hints
->window_style
& WMResizableWindowMask
)?0:1);
286 /* setup the defaults */
287 wwin
->client_flags
.no_titlebar
= 0;
288 wwin
->client_flags
.no_closable
= 0;
289 wwin
->client_flags
.no_miniaturizable
= 0;
290 wwin
->client_flags
.no_resizable
= 0;
291 wwin
->client_flags
.no_close_button
= 0;
292 wwin
->client_flags
.no_miniaturize_button
= 0;
293 wwin
->client_flags
.no_resizebar
= 0;
295 if (gs_hints
->extra_flags
& GSNoApplicationIconFlag
) {
296 wwin
->client_flags
.no_appicon
= 1;
302 wWindowCheckAttributeSanity(WWindow
*wwin
, WWindowAttributes
*wflags
,
303 WWindowAttributes
*mask
)
305 if (wflags
->no_appicon
&& mask
->no_appicon
)
306 wflags
->emulate_appicon
= 0;
308 if (wwin
->main_window
!=None
) {
309 WApplication
*wapp
= wApplicationOf(wwin
->main_window
);
310 if (wapp
&& !wapp
->flags
.emulated
)
311 wflags
->emulate_appicon
= 0;
314 if (wwin
->transient_for
!=None
315 && wwin
->transient_for
!=wwin
->screen_ptr
->root_win
)
316 wflags
->emulate_appicon
= 0;
318 if (wflags
->sunken
&& mask
->sunken
&& wflags
->floating
&& mask
->floating
)
325 wWindowSetupInitialAttributes(WWindow
*wwin
, int *level
, int *workspace
)
327 WScreen
*scr
= wwin
->screen_ptr
;
329 /* sets global default stuff */
330 wDefaultFillAttributes(scr
, wwin
->wm_instance
, wwin
->wm_class
,
331 &wwin
->client_flags
, NULL
, True
);
333 * Decoration setting is done in this precedence (lower to higher)
334 * - use global default in the resource database
335 * - guess some settings
336 * - use GNUstep/external window attributes
337 * - set hints specified for the app in the resource DB
340 WSETUFLAG(wwin
, broken_close
, 0);
342 if (wwin
->protocols
.DELETE_WINDOW
)
343 WSETUFLAG(wwin
, kill_close
, 0);
345 WSETUFLAG(wwin
, kill_close
, 1);
347 /* transients can't be iconified or maximized */
348 if (wwin
->transient_for
) {
349 WSETUFLAG(wwin
, no_miniaturizable
, 1);
350 WSETUFLAG(wwin
, no_miniaturize_button
, 1);
353 /* if the window can't be resized, remove the resizebar */
354 if (wwin
->normal_hints
->flags
& (PMinSize
|PMaxSize
)
355 && (wwin
->normal_hints
->min_width
==wwin
->normal_hints
->max_width
)
356 && (wwin
->normal_hints
->min_height
==wwin
->normal_hints
->max_height
)) {
357 WSETUFLAG(wwin
, no_resizable
, 1);
358 WSETUFLAG(wwin
, no_resizebar
, 1);
361 /* set GNUstep window attributes */
362 if (wwin
->wm_gnustep_attr
) {
363 setupGNUstepHints(wwin
, wwin
->wm_gnustep_attr
);
365 if (wwin
->wm_gnustep_attr
->flags
& GSWindowLevelAttr
) {
367 switch (wwin
->wm_gnustep_attr
->window_level
) {
368 case WMNormalWindowLevel
:
369 *level
= WMNormalLevel
;
371 case WMFloatingWindowLevel
:
372 *level
= WMFloatingLevel
;
374 case WMDockWindowLevel
:
375 *level
= WMDockLevel
;
377 case WMSubmenuWindowLevel
:
378 *level
= WMSubmenuLevel
;
380 case WMMainMenuWindowLevel
:
381 *level
= WMMainMenuLevel
;
384 *level
= WMNormalLevel
;
389 *level
= WMNormalLevel
;
392 int tmp_workspace
= -1;
396 wMWMCheckClientHints(wwin
);
397 #endif /* MWM_HINTS */
400 wKWMCheckClientHints(wwin
, &tmp_level
, &tmp_workspace
);
401 #endif /* KWM_HINTS */
404 wGNOMECheckClientHints(wwin
, &tmp_level
, &tmp_workspace
);
405 #endif /* GNOME_STUFF */
408 wOLWMCheckClientHints(wwin
);
409 #endif /* OLWM_HINTS */
412 if (WFLAGP(wwin
, floating
))
413 *level
= WMFloatingLevel
;
414 else if (WFLAGP(wwin
, sunken
))
415 *level
= WMSunkenLevel
;
417 *level
= WMNormalLevel
;
422 if (tmp_workspace
>= 0) {
423 *workspace
= tmp_workspace
% scr
->workspace_count
;
428 * Set attributes specified only for that window/class.
429 * This might do duplicate work with the 1st wDefaultFillAttributes().
431 wDefaultFillAttributes(scr
, wwin
->wm_instance
, wwin
->wm_class
,
432 &wwin
->user_flags
, &wwin
->defined_user_flags
,
435 * Sanity checks for attributes that depend on other attributes
437 if (wwin
->user_flags
.no_appicon
&& wwin
->defined_user_flags
.no_appicon
)
438 wwin
->user_flags
.emulate_appicon
= 0;
440 if (wwin
->main_window
!=None
) {
441 WApplication
*wapp
= wApplicationOf(wwin
->main_window
);
442 if (wapp
&& !wapp
->flags
.emulated
)
443 wwin
->user_flags
.emulate_appicon
= 0;
446 if (wwin
->transient_for
!=None
447 && wwin
->transient_for
!=wwin
->screen_ptr
->root_win
)
448 wwin
->user_flags
.emulate_appicon
= 0;
450 if (wwin
->user_flags
.sunken
&& wwin
->defined_user_flags
.sunken
451 && wwin
->user_flags
.floating
&& wwin
->defined_user_flags
.floating
)
452 wwin
->user_flags
.sunken
= 0;
454 WSETUFLAG(wwin
, no_shadeable
, WFLAGP(wwin
, no_titlebar
));
461 wWindowCanReceiveFocus(WWindow
*wwin
)
463 if (!wwin
->flags
.mapped
&& (!wwin
->flags
.shaded
|| wwin
->flags
.hidden
))
465 if (WFLAGP(wwin
, no_focusable
) || wwin
->flags
.miniaturized
)
467 if (wwin
->frame
->workspace
!= wwin
->screen_ptr
->current_workspace
)
475 wWindowObscuresWindow(WWindow
*wwin
, WWindow
*obscured
)
479 w1
= wwin
->frame
->core
->width
;
480 h1
= wwin
->frame
->core
->height
;
481 w2
= obscured
->frame
->core
->width
;
482 h2
= obscured
->frame
->core
->height
;
484 if (!IS_OMNIPRESENT(wwin
) && !IS_OMNIPRESENT(obscured
)
485 && wwin
->frame
->workspace
!= obscured
->frame
->workspace
)
488 if (wwin
->frame_x
+ w1
< obscured
->frame_x
489 || wwin
->frame_y
+ h1
< obscured
->frame_y
490 || wwin
->frame_x
> obscured
->frame_x
+ w2
491 || wwin
->frame_y
> obscured
->frame_y
+ h2
) {
500 *----------------------------------------------------------------
502 * reparents the window and allocates a descriptor for it.
503 * Window manager hints and other hints are fetched to configure
504 * the window decoration attributes and others. User preferences
505 * for the window are used if available, to configure window
506 * decorations and some behaviour.
507 * If in startup, windows that are override redirect,
508 * unmapped and never were managed and are Withdrawn are not
512 * the new window descriptor
515 * The window is reparented and appropriate notification
516 * is done to the client. Input mask for the window is setup.
517 * The window descriptor is also associated with various window
518 * contexts and inserted in the head of the window list.
519 * Event handler contexts are associated for some objects
520 * (buttons, titlebar and resizebar)
522 *----------------------------------------------------------------
525 wManageWindow(WScreen
*scr
, Window window
)
529 unsigned width
, height
;
530 XWindowAttributes wattribs
;
531 XSetWindowAttributes attribs
;
532 WWindowState
*win_state
;
533 WWindow
*transientOwner
= NULL
;
539 Bool withdraw
= False
;
542 /* XGrabServer(dpy); */
544 /* make sure the window is still there */
545 if (!XGetWindowAttributes(dpy
, window
, &wattribs
)) {
550 /* if it's an override-redirect, ignore it */
551 if (wattribs
.override_redirect
) {
556 wm_state
= PropGetWindowState(window
);
558 /* if it's startup and the window is unmapped, don't manage it */
559 if (scr
->flags
.startup
&& wm_state
< 0 && wattribs
.map_state
==IsUnmapped
) {
564 if (!wFetchName(dpy
, window
, &title
)) {
569 if (title
&& !wKWMManageableClient(scr
, window
, title
)) {
574 #endif /* KWM_HINTS */
577 wwin
= wWindowCreate();
579 XSaveContext(dpy
, window
, wWinContext
, (XPointer
)&wwin
->client_descriptor
);
582 printf("managing window %x\n", (unsigned)window
);
586 if (wShapeSupported
) {
591 XShapeSelectInput(dpy
, window
, ShapeNotifyMask
);
592 XShapeQueryExtents(dpy
, window
, &b_shaped
, &junk
, &junk
, &ujunk
,
593 &ujunk
, &junk
, &junk
, &junk
, &ujunk
, &ujunk
);
594 wwin
->flags
.shaped
= b_shaped
;
599 *--------------------------------------------------
601 * Get hints and other information in properties
603 *--------------------------------------------------
605 PropGetWMClass(window
, &wwin
->wm_class
, &wwin
->wm_instance
);
607 /* setup descriptor */
608 wwin
->client_win
= window
;
609 wwin
->screen_ptr
= scr
;
611 wwin
->old_border_width
= wattribs
.border_width
;
613 wwin
->event_mask
= CLIENT_EVENTS
;
614 attribs
.event_mask
= CLIENT_EVENTS
;
615 attribs
.do_not_propagate_mask
= ButtonPressMask
| ButtonReleaseMask
;
616 attribs
.save_under
= False
;
617 XChangeWindowAttributes(dpy
, window
, CWEventMask
|CWDontPropagate
618 |CWSaveUnder
, &attribs
);
619 XSetWindowBorderWidth(dpy
, window
, 0);
621 /* get hints from GNUstep app */
622 if (!PropGetGNUstepWMAttr(window
, &wwin
->wm_gnustep_attr
)) {
623 wwin
->wm_gnustep_attr
= NULL
;
626 wwin
->client_leader
= PropGetClientLeader(window
);
627 if (wwin
->client_leader
!=None
)
628 wwin
->main_window
= wwin
->client_leader
;
630 wwin
->wm_hints
= XGetWMHints(dpy
, window
);
632 if (wwin
->wm_hints
) {
633 if (wwin
->wm_hints
->flags
& StateHint
) {
635 if (wwin
->wm_hints
->initial_state
== IconicState
) {
637 wwin
->flags
.miniaturized
= 1;
639 } else if (wwin
->wm_hints
->initial_state
== WithdrawnState
) {
645 if (wwin
->wm_hints
->flags
& WindowGroupHint
) {
646 wwin
->group_id
= wwin
->wm_hints
->window_group
;
647 /* window_group has priority over CLIENT_LEADER */
648 wwin
->main_window
= wwin
->group_id
;
650 wwin
->group_id
= None
;
653 if (wwin
->wm_hints
->flags
& UrgencyHint
)
654 wwin
->flags
.urgent
= 1;
656 wwin
->group_id
= None
;
659 PropGetProtocols(window
, &wwin
->protocols
);
661 if (!XGetTransientForHint(dpy
, window
, &wwin
->transient_for
)) {
662 wwin
->transient_for
= None
;
664 if (wwin
->transient_for
==None
|| wwin
->transient_for
==window
) {
665 wwin
->transient_for
= scr
->root_win
;
667 transientOwner
= wWindowFor(wwin
->transient_for
);
668 if (transientOwner
&& transientOwner
->main_window
!=None
) {
669 wwin
->main_window
= transientOwner
->main_window
;
671 wwin->main_window = None;
676 /* guess the focus mode */
677 wwin
->focus_mode
= getFocusMode(wwin
);
679 /* get geometry stuff */
680 wClientGetNormalHints(wwin
, &wattribs
, True
, &x
, &y
, &width
, &height
);
682 /* get colormap windows */
683 GetColormapWindows(wwin
);
686 *--------------------------------------------------
688 * Setup the decoration/window attributes and
691 *--------------------------------------------------
694 wWindowSetupInitialAttributes(wwin
, &window_level
, &workspace
);
697 if (wwin
->client_flags
.olwm_transient
&& wwin
->transient_for
==None
698 && wwin
->group_id
!= None
&& wwin
->group_id
!= window
) {
700 transientOwner
= wWindowFor(wwin
->group_id
);
702 if (transientOwner
) {
703 wwin
->transient_for
= wwin
->group_id
;
705 /* transients can't be iconified or maximized */
706 if (wwin
->transient_for
) {
707 WSETUFLAG(wwin
, no_miniaturizable
, 1);
708 WSETUFLAG(wwin
, no_miniaturize_button
, 1);
712 #endif /* OLWM_HINTS */
715 * Make broken apps behave as a nice app.
717 if (WFLAGP(wwin
, emulate_appicon
)) {
718 wwin
->main_window
= wwin
->client_win
;
722 *------------------------------------------------------------
724 * Setup the initial state of the window
726 *------------------------------------------------------------
729 if (WFLAGP(wwin
, start_miniaturized
) && !WFLAGP(wwin
, no_miniaturizable
)) {
730 wwin
->flags
.miniaturized
= 1;
733 if (WFLAGP(wwin
, start_maximized
) && !WFLAGP(wwin
, no_resizable
)) {
734 wwin
->flags
.maximized
= MAX_VERTICAL
|MAX_HORIZONTAL
;
738 wGNOMECheckInitialClientState(wwin
);
741 wKWMCheckClientInitialState(wwin
);
744 /* apply previous state if it exists and we're in startup */
745 if (scr
->flags
.startup
&& wm_state
>= 0) {
747 if (wm_state
== IconicState
) {
749 wwin
->flags
.miniaturized
= 1;
751 } else if (wm_state
== WithdrawnState
) {
757 /* if there is a saved state (from file), restore it */
759 if (wwin
->main_window
!=None
/* && wwin->main_window!=window*/) {
760 win_state
= (WWindowState
*)wWindowGetSavedState(wwin
->main_window
);
762 win_state
= (WWindowState
*)wWindowGetSavedState(window
);
764 if (win_state
&& !withdraw
) {
766 if (win_state
->state
->hidden
>0)
767 wwin
->flags
.hidden
= win_state
->state
->hidden
;
769 if (win_state
->state
->shaded
>0 && !WFLAGP(wwin
, no_shadeable
))
770 wwin
->flags
.shaded
= win_state
->state
->shaded
;
772 if (win_state
->state
->miniaturized
>0 &&
773 !WFLAGP(wwin
, no_miniaturizable
)) {
774 wwin
->flags
.miniaturized
= win_state
->state
->miniaturized
;
776 if (!IS_OMNIPRESENT(wwin
)) {
777 int w
= wDefaultGetStartWorkspace(scr
, wwin
->wm_instance
,
779 if (w
< 0 || w
>= scr
->workspace_count
) {
780 workspace
= win_state
->state
->workspace
;
781 if (workspace
>= scr
->workspace_count
)
782 workspace
= scr
->current_workspace
;
787 workspace
= scr
->current_workspace
;
791 /* if we're restarting, restore saved state (from hints).
792 * This will overwrite previous */
796 if (getSavedState(window
, &wstate
)) {
797 wwin
->flags
.shaded
= wstate
->shaded
;
798 wwin
->flags
.hidden
= wstate
->hidden
;
799 wwin
->flags
.miniaturized
= wstate
->miniaturized
;
800 workspace
= wstate
->workspace
;
802 if (scr
->flags
.startup
&& wstate
->window_shortcuts
>= 0) {
805 for (i
= 0; i
< MAX_WINDOW_SHORTCUTS
; i
++) {
806 if (wstate
->window_shortcuts
& (1<<i
))
807 scr
->shortcutWindow
[i
] = wwin
;
814 /* don't let transients start miniaturized if their owners are not */
815 if (transientOwner
&& !transientOwner
->flags
.miniaturized
816 && wwin
->flags
.miniaturized
&& !withdraw
) {
817 wwin
->flags
.miniaturized
= 0;
819 wwin
->wm_hints
->initial_state
= NormalState
;
822 /* set workspace on which the window starts */
823 if (workspace
>= 0) {
824 if (workspace
> scr
->workspace_count
-1) {
825 workspace
= workspace
% scr
->workspace_count
;
830 w
= wDefaultGetStartWorkspace(scr
, wwin
->wm_instance
, wwin
->wm_class
);
832 if (w
>= 0 && w
< scr
->workspace_count
&& !(IS_OMNIPRESENT(wwin
))) {
837 if (wPreferences
.open_transients_with_parent
&& transientOwner
) {
839 workspace
= transientOwner
->frame
->workspace
;
843 workspace
= scr
->current_workspace
;
848 /* setup window geometry */
849 if (win_state
&& win_state
->state
->use_geometry
) {
850 width
= win_state
->state
->w
;
851 height
= win_state
->state
->h
;
853 wWindowConstrainSize(wwin
, &width
, &height
);
855 /* do not ask for window placement if the window is
856 * transient, during startup, if the initial workspace is another one
857 * or if the window wants to start iconic.
858 * If geometry was saved, restore it. */
860 Bool dontBring
= False
;
862 if (win_state
&& win_state
->state
->use_geometry
) {
863 x
= win_state
->state
->x
;
864 y
= win_state
->state
->y
;
865 } else if ((wwin
->transient_for
==None
866 || wPreferences
.window_placement
!=WPM_MANUAL
)
867 && !scr
->flags
.startup
868 && workspace
== scr
->current_workspace
869 && !wwin
->flags
.miniaturized
870 && !wwin
->flags
.maximized
871 && !(wwin
->normal_hints
->flags
& (USPosition
|PPosition
))) {
872 PlaceWindow(wwin
, &x
, &y
, width
, height
);
873 if (wPreferences
.window_placement
== WPM_MANUAL
)
877 if (WFLAGP(wwin
, dont_move_off
) && dontBring
)
878 wScreenBringInside(scr
, &x
, &y
, width
, height
);
881 if (wwin
->flags
.urgent
) {
882 if (!IS_OMNIPRESENT(wwin
))
883 wwin
->flags
.omnipresent
^= 1;
887 *--------------------------------------------------
889 * Create frame, borders and do reparenting
891 *--------------------------------------------------
893 foo
= WFF_LEFT_BUTTON
| WFF_RIGHT_BUTTON
;
894 #ifdef XKB_BUTTON_HINT
895 if (wPreferences
.modelock
)
896 foo
|= WFF_LANGUAGE_BUTTON
;
898 if (!WFLAGP(wwin
, no_titlebar
))
900 if (!WFLAGP(wwin
, no_resizebar
))
901 foo
|= WFF_RESIZEBAR
;
903 wwin
->frame
= wFrameWindowCreate(scr
, window_level
,
904 x
, y
, width
, height
, foo
,
905 scr
->window_title_texture
,
906 scr
->resizebar_texture
,
907 scr
->window_title_pixel
,
908 &scr
->window_title_gc
,
911 wwin
->frame
->flags
.is_client_window_frame
= 1;
912 wwin
->frame
->flags
.justification
= wPreferences
.title_justification
;
914 /* setup button images */
915 wWindowUpdateButtonImages(wwin
);
917 /* hide unused buttons */
919 if (WFLAGP(wwin
, no_close_button
))
920 foo
|= WFF_RIGHT_BUTTON
;
921 if (WFLAGP(wwin
, no_miniaturize_button
))
922 foo
|= WFF_LEFT_BUTTON
;
923 #ifdef XKB_BUTTON_HINT
924 if (WFLAGP(wwin
, no_language_button
) || WFLAGP(wwin
, no_focusable
))
925 foo
|= WFF_LANGUAGE_BUTTON
;
928 wFrameWindowHideButton(wwin
->frame
, foo
);
930 wwin
->frame
->child
= wwin
;
933 /* emulate olwm push pin. Make the button look as pushed-in for
934 * the pinned-out state. When the button is clicked, it will
935 * revert to the normal position, which means the pin is pinned-in.
937 if (wwin
->flags
.olwm_push_pin_out
)
938 wFrameWindowUpdatePushButton(wwin
->frame
, True
);
939 #endif /* OLWM_HINTS */
941 wFrameWindowChangeTitle(wwin
->frame
, title
? title
: DEF_WINDOW_TITLE
);
945 wwin
->frame
->workspace
= workspace
;
947 wwin
->frame
->on_click_left
= windowIconifyClick
;
948 #ifdef XKB_BUTTON_HINT
949 if (wPreferences
.modelock
)
950 wwin
->frame
->on_click_language
= windowLanguageClick
;
953 wwin
->frame
->on_click_right
= windowCloseClick
;
954 wwin
->frame
->on_dblclick_right
= windowCloseDblClick
;
956 wwin
->frame
->on_mousedown_titlebar
= titlebarMouseDown
;
957 wwin
->frame
->on_dblclick_titlebar
= titlebarDblClick
;
959 wwin
->frame
->on_mousedown_resizebar
= resizebarMouseDown
;
962 XSelectInput(dpy
, wwin
->client_win
,
963 wwin
->event_mask
& ~StructureNotifyMask
);
965 XReparentWindow(dpy
, wwin
->client_win
, wwin
->frame
->core
->window
,
966 0, wwin
->frame
->top_width
);
968 XSelectInput(dpy
, wwin
->client_win
, wwin
->event_mask
);
974 wClientGetGravityOffsets(wwin
, &gx
, &gy
);
976 /* if gravity is to the south, account for the border sizes */
978 y
-= wwin
->frame
->top_width
+ wwin
->frame
->bottom_width
;
982 * wWindowConfigure() will init the client window's size
983 * (wwin->client.{width,height}) and all other geometry
984 * related variables (frame_x,frame_y)
986 wWindowConfigure(wwin
, x
, y
, width
, height
);
988 /* to make sure the window receives it's new position after reparenting */
989 wWindowSynthConfigureNotify(wwin
);
992 *--------------------------------------------------
994 * Setup descriptors and save window to internal
997 *--------------------------------------------------
1000 if (wwin
->main_window
!=None
) {
1004 /* Leader windows do not necessary set themselves as leaders.
1005 * If this is the case, point the leader of this window to
1007 leader
= wWindowFor(wwin
->main_window
);
1008 if (leader
&& leader
->main_window
==None
) {
1009 leader
->main_window
= leader
->client_win
;
1011 app
= wApplicationCreate(scr
, wwin
->main_window
);
1013 app
->last_workspace
= workspace
;
1016 * Do application specific stuff, like setting application
1020 if (wwin
->flags
.hidden
) {
1021 /* if the window was set to hidden because it was hidden
1022 * in a previous incarnation and that state was restored */
1023 app
->flags
.hidden
= 1;
1026 if (app
->flags
.hidden
) {
1027 wwin
->flags
.hidden
= 1;
1032 /* setup the frame descriptor */
1033 wwin
->frame
->core
->descriptor
.handle_mousedown
= frameMouseDown
;
1034 wwin
->frame
->core
->descriptor
.parent
= wwin
;
1035 wwin
->frame
->core
->descriptor
.parent_type
= WCLASS_WINDOW
;
1037 /* don't let windows go away if we die */
1038 XAddToSaveSet(dpy
, window
);
1040 XLowerWindow(dpy
, window
);
1042 /* if window is in this workspace and should be mapped, then map it */
1043 if (!wwin
->flags
.miniaturized
1044 && (workspace
== scr
->current_workspace
|| IS_OMNIPRESENT(wwin
))
1045 && !wwin
->flags
.hidden
&& !withdraw
) {
1047 /* The following "if" is to avoid crashing of clients that expect
1048 * WM_STATE set before they get mapped. Else WM_STATE is set later,
1049 * after the return from this function.
1051 if (wwin
->wm_hints
&& (wwin
->wm_hints
->flags
& StateHint
)) {
1052 wClientSetState(wwin
, wwin
->wm_hints
->initial_state
, None
);
1054 wClientSetState(wwin
, NormalState
, None
);
1058 /* if not auto focus, then map the window under the currently
1060 #define _WIDTH(w) (w)->frame->core->width
1061 #define _HEIGHT(w) (w)->frame->core->height
1062 if (!wPreferences
.auto_focus
&& scr
->focused_window
1063 && !scr
->flags
.startup
&& !transientOwner
1064 && ((wWindowObscuresWindow(wwin
, scr
->focused_window
)
1065 && (_WIDTH(wwin
) > (_WIDTH(scr
->focused_window
)*5)/3
1066 || _HEIGHT(wwin
) > (_HEIGHT(scr
->focused_window
)*5)/3)
1067 && WINDOW_LEVEL(scr
->focused_window
) == WINDOW_LEVEL(wwin
))
1068 || wwin
->flags
.maximized
)) {
1069 MoveInStackListUnder(scr
->focused_window
->frame
->core
,
1077 if (wPreferences
.superfluous
&& !wPreferences
.no_animations
1078 && !scr
->flags
.startup
&& wwin
->transient_for
==None
1080 * The brain damaged idiotic non-click to focus modes will
1081 * have trouble with this because:
1083 * 1. window is created and mapped by the client
1084 * 2. window is mapped by wmaker in small size
1085 * 3. window is animated to grow to normal size
1086 * 4. this function returns to normal event loop
1087 * 5. eventually, the EnterNotify event that would trigger
1088 * the window focusing (if the mouse is over that window)
1089 * will be processed by wmaker.
1090 * But since this event will be rather delayed
1091 * (step 3 has a large delay) the time when the event ocurred
1092 * and when it is processed, the client that owns that window
1093 * will reject the XSetInputFocus() for it.
1095 && (wPreferences
.focus_mode
==WKF_CLICK
1096 || wPreferences
.auto_focus
)) {
1097 DoWindowBirth(wwin
);
1103 /* setup stacking descriptor */
1104 if (transientOwner
) {
1105 /* && wPreferences.on_top_transients */
1106 if (transientOwner
) {
1107 wwin
->frame
->core
->stacking
->child_of
=
1108 transientOwner
->frame
->core
;
1111 wwin
->frame
->core
->stacking
->child_of
= NULL
;
1115 if (!scr
->focused_window
) {
1116 /* first window on the list */
1119 scr
->focused_window
= wwin
;
1123 /* add window at beginning of focus window list */
1124 tmp
= scr
->focused_window
;
1133 wGNOMEUpdateClientStateHint(wwin
, True
);
1136 wKWMUpdateClientWorkspace(wwin
);
1137 wKWMUpdateClientStateHint(wwin
, KWMAllFlags
);
1143 *--------------------------------------------------
1145 * Final preparations before window is ready to go
1147 *--------------------------------------------------
1150 wFrameWindowChangeState(wwin
->frame
, WS_UNFOCUSED
);
1153 if (!wwin
->flags
.miniaturized
&& workspace
== scr
->current_workspace
1154 && !wwin
->flags
.hidden
) {
1155 if (((transientOwner
&& transientOwner
->flags
.focused
)
1156 || wPreferences
.auto_focus
) && !WFLAGP(wwin
, no_focusable
))
1157 wSetFocusTo(scr
, wwin
);
1159 wWindowResetMouseGrabs(wwin
);
1161 if (!WFLAGP(wwin
, no_bind_keys
)) {
1162 wWindowSetKeyGrabs(wwin
);
1165 wGNOMEUpdateClientListHint(scr
);
1168 wwin
->flags
.kwm_managed
= 1;
1170 wKWMSendEventMessage(wwin
, WKWMAddWindow
);
1173 wColormapInstallForWindow(scr
, scr
->cmap_window
);
1175 UpdateSwitchMenu(scr
, wwin
, ACTION_ADD
);
1178 if (wwin
->client_flags
.olwm_warp_to_pin
&& wwin
->frame
->titlebar
!= NULL
1179 && !WFLAGP(wwin
, no_close_button
) && !withdraw
) {
1181 XWarpPointer(dpy
, None
, None
, 0, 0, 0, 0,
1182 wwin
->frame_x
+ width
- wwin
->frame
->titlebar
->height
* 2,
1188 *------------------------------------------------------------
1189 * Setup Notification Observers
1190 *------------------------------------------------------------
1192 WMAddNotificationObserver(appearanceObserver
, wwin
,
1193 WNWindowAppearanceSettingsChanged
, wwin
);
1197 *--------------------------------------------------
1199 * Cleanup temporary stuff
1201 *--------------------------------------------------
1205 wWindowDeleteSavedState(win_state
);
1207 /* If the window must be withdrawed, then do it now.
1208 * Must do some optimization, 'though */
1210 wwin
->flags
.mapped
= 0;
1211 wClientSetState(wwin
, WithdrawnState
, None
);
1212 wUnmanageWindow(wwin
, True
, False
);
1224 wManageInternalWindow(WScreen
*scr
, Window window
, Window owner
,
1225 char *title
, int x
, int y
, int width
, int height
)
1230 wwin
= wWindowCreate();
1232 WMAddNotificationObserver(appearanceObserver
, wwin
,
1233 WNWindowAppearanceSettingsChanged
, wwin
);
1235 wwin
->flags
.internal_window
= 1;
1237 WSETUFLAG(wwin
, omnipresent
, 1);
1238 WSETUFLAG(wwin
, no_shadeable
, 1);
1239 WSETUFLAG(wwin
, no_resizable
, 1);
1240 WSETUFLAG(wwin
, no_miniaturizable
, 1);
1242 wwin
->focus_mode
= WFM_PASSIVE
;
1244 wwin
->client_win
= window
;
1245 wwin
->screen_ptr
= scr
;
1247 wwin
->transient_for
= owner
;
1251 wwin
->client
.width
= width
;
1252 wwin
->client
.height
= height
;
1254 wwin
->frame_x
= wwin
->client
.x
;
1255 wwin
->frame_y
= wwin
->client
.y
;
1258 foo
= WFF_RIGHT_BUTTON
;
1259 foo
|= WFF_TITLEBAR
;
1260 #ifdef XKB_BUTTON_HINT
1261 foo
|= WFF_LANGUAGE_BUTTON
;
1264 wwin
->frame
= wFrameWindowCreate(scr
, WMFloatingLevel
,
1265 wwin
->frame_x
, wwin
->frame_y
,
1267 scr
->window_title_texture
,
1268 scr
->resizebar_texture
,
1269 scr
->window_title_pixel
,
1270 &scr
->window_title_gc
,
1273 XSaveContext(dpy
, window
, wWinContext
, (XPointer
)&wwin
->client_descriptor
);
1275 wwin
->frame
->flags
.is_client_window_frame
= 1;
1276 wwin
->frame
->flags
.justification
= wPreferences
.title_justification
;
1278 wFrameWindowChangeTitle(wwin
->frame
, title
);
1280 /* setup button images */
1281 wWindowUpdateButtonImages(wwin
);
1284 wFrameWindowHideButton(wwin
->frame
, WFF_RIGHT_BUTTON
);
1286 wwin
->frame
->child
= wwin
;
1288 wwin
->frame
->workspace
= wwin
->screen_ptr
->current_workspace
;
1290 #ifdef XKB_BUTTON_HINT
1291 if (wPreferences
.modelock
)
1292 wwin
->frame
->on_click_language
= windowLanguageClick
;
1295 wwin
->frame
->on_click_right
= windowCloseClick
;
1297 wwin
->frame
->on_mousedown_titlebar
= titlebarMouseDown
;
1298 wwin
->frame
->on_dblclick_titlebar
= titlebarDblClick
;
1300 wwin
->frame
->on_mousedown_resizebar
= resizebarMouseDown
;
1302 wwin
->client
.y
+= wwin
->frame
->top_width
;
1303 XReparentWindow(dpy
, wwin
->client_win
, wwin
->frame
->core
->window
,
1304 0, wwin
->frame
->top_width
);
1306 wWindowConfigure(wwin
, wwin
->frame_x
, wwin
->frame_y
,
1307 wwin
->client
.width
, wwin
->client
.height
);
1309 /* setup the frame descriptor */
1310 wwin
->frame
->core
->descriptor
.handle_mousedown
= frameMouseDown
;
1311 wwin
->frame
->core
->descriptor
.parent
= wwin
;
1312 wwin
->frame
->core
->descriptor
.parent_type
= WCLASS_WINDOW
;
1315 XLowerWindow(dpy
, window
);
1316 XMapSubwindows(dpy
, wwin
->frame
->core
->window
);
1318 /* setup stacking descriptor */
1321 wPreferences
.on_top_transients
&&
1323 wwin
->transient_for
!=None
1324 && wwin
->transient_for
!=scr
->root_win
) {
1326 tmp
= wWindowFor(wwin
->transient_for
);
1328 wwin
->frame
->core
->stacking
->child_of
= tmp
->frame
->core
;
1330 wwin
->frame
->core
->stacking
->child_of
= NULL
;
1334 if (!scr
->focused_window
) {
1335 /* first window on the list */
1338 scr
->focused_window
= wwin
;
1342 /* add window at beginning of focus window list */
1343 tmp
= scr
->focused_window
;
1351 wFrameWindowChangeState(wwin
->frame
, WS_UNFOCUSED
);
1353 /* if (wPreferences.auto_focus)*/
1354 wSetFocusTo(scr
, wwin
);
1356 wWindowResetMouseGrabs(wwin
);
1358 wWindowSetKeyGrabs(wwin
);
1360 UpdateSwitchMenu(wwin
->screen_ptr
, wwin
, ACTION_ADD
);
1367 *----------------------------------------------------------------------
1369 * Removes the frame window from a window and destroys all data
1370 * related to it. The window will be reparented back to the root window
1371 * if restore is True.
1374 * Everything related to the window is destroyed and the window
1375 * is removed from the window lists. Focus is set to the previous on the
1377 *----------------------------------------------------------------------
1380 wUnmanageWindow(WWindow
*wwin
, Bool restore
, Bool destroyed
)
1382 WCoreWindow
*frame
= wwin
->frame
->core
;
1383 WWindow
*owner
= NULL
;
1384 WWindow
*newFocusedWindow
= NULL
;
1386 WScreen
*scr
= wwin
->screen_ptr
;
1390 wwin
->frame
->workspace
= -1;
1392 wKWMUpdateClientWorkspace(wwin
);
1395 /* First close attribute editor window if open */
1396 if (wwin
->flags
.inspector_open
) {
1397 WWindow
*pwin
= wwin
->inspector
->frame
; /* the inspector window */
1398 (*pwin
->frame
->on_click_right
)(NULL
, pwin
, NULL
);
1401 /* Close window menu if it's open for this window */
1402 if (wwin
->flags
.menu_open_for_me
) {
1403 CloseWindowMenu(scr
);
1407 if (!wwin
->flags
.internal_window
)
1408 XRemoveFromSaveSet(dpy
, wwin
->client_win
);
1410 XSelectInput(dpy
, wwin
->client_win
, NoEventMask
);
1412 XUngrabButton(dpy
, AnyButton
, AnyModifier
, wwin
->client_win
);
1413 XUngrabKey(dpy
, AnyKey
, AnyModifier
, wwin
->client_win
);
1416 XUnmapWindow(dpy
, frame
->window
);
1418 XUnmapWindow(dpy
, wwin
->client_win
);
1420 /* deselect window */
1421 wSelectWindow(wwin
, False
);
1423 /* remove all pending events on window */
1424 /* I think this only matters for autoraise */
1425 if (wPreferences
.raise_delay
)
1426 WMDeleteTimerWithClientData(wwin
->frame
->core
);
1430 UpdateSwitchMenu(scr
, wwin
, ACTION_REMOVE
);
1432 /* reparent the window back to the root */
1434 wClientRestore(wwin
);
1436 if (wwin
->transient_for
!=scr
->root_win
) {
1437 owner
= wWindowFor(wwin
->transient_for
);
1439 if (!owner
->flags
.semi_focused
) {
1442 owner
->flags
.semi_focused
= 0;
1447 wasFocused
= wwin
->flags
.focused
;
1449 /* remove from window focus list */
1450 if (!wwin
->prev
&& !wwin
->next
) {
1451 /* was the only window */
1452 scr
->focused_window
= NULL
;
1453 newFocusedWindow
= NULL
;
1458 wwin
->prev
->next
= wwin
->next
;
1460 wwin
->next
->prev
= wwin
->prev
;
1462 scr
->focused_window
= wwin
->prev
;
1463 scr
->focused_window
->next
= NULL
;
1466 /* if in click to focus mode and the window
1467 * was a transient, focus the owner window
1470 if (wPreferences
.focus_mode
==WKF_CLICK
) {
1471 tmp
= wWindowFor(wwin
->transient_for
);
1472 if (tmp
&& (!tmp
->flags
.mapped
|| WFLAGP(tmp
, no_focusable
))) {
1476 /* otherwise, focus the next one in the focus list */
1478 tmp
= scr
->focused_window
;
1480 if (!WFLAGP(tmp
, no_focusable
)
1481 && (tmp
->flags
.mapped
|| tmp
->flags
.shaded
))
1486 if (wPreferences
.focus_mode
==WKF_CLICK
) {
1487 newFocusedWindow
= tmp
;
1488 } else if (wPreferences
.focus_mode
==WKF_SLOPPY
1489 || wPreferences
.focus_mode
==WKF_POINTER
) {
1494 /* This is to let the root window get the keyboard input
1495 * if Sloppy focus mode and no other window get focus.
1496 * This way keybindings will not freeze.
1499 if (XQueryPointer(dpy
, scr
->root_win
, &bar
, &win
,
1500 &foo
, &foo
, &foo
, &foo
, &mask
))
1501 tmp
= wWindowFor(win
);
1504 newFocusedWindow
= tmp
;
1506 newFocusedWindow
= NULL
;
1510 if (!wwin
->flags
.internal_window
) {
1512 wGNOMERemoveClient(wwin
);
1515 wKWMSendEventMessage(wwin
, WKWMRemoveWindow
);
1520 printf("destroying window %x frame %x\n", (unsigned)wwin
->client_win
,
1521 (unsigned)frame
->window
);
1525 if (newFocusedWindow
!= owner
&& owner
) {
1526 wFrameWindowChangeState(owner
->frame
, WS_UNFOCUSED
);
1528 wSetFocusTo(scr
, newFocusedWindow
);
1530 wWindowDestroy(wwin
);
1536 wWindowMap(WWindow
*wwin
)
1538 XMapWindow(dpy
, wwin
->frame
->core
->window
);
1539 if (!wwin
->flags
.shaded
) {
1540 /* window will be remapped when getting MapNotify */
1541 XSelectInput(dpy
, wwin
->client_win
,
1542 wwin
->event_mask
& ~StructureNotifyMask
);
1543 XMapWindow(dpy
, wwin
->client_win
);
1544 XSelectInput(dpy
, wwin
->client_win
, wwin
->event_mask
);
1546 wwin
->flags
.mapped
= 1;
1552 wWindowUnmap(WWindow
*wwin
)
1554 wwin
->flags
.mapped
= 0;
1556 /* prevent window withdrawal when getting UnmapNotify */
1557 XSelectInput(dpy
, wwin
->client_win
,
1558 wwin
->event_mask
& ~StructureNotifyMask
);
1559 XUnmapWindow(dpy
, wwin
->client_win
);
1560 XSelectInput(dpy
, wwin
->client_win
, wwin
->event_mask
);
1562 XUnmapWindow(dpy
, wwin
->frame
->core
->window
);
1568 wWindowFocus(WWindow
*wwin
, WWindow
*owin
)
1573 #ifdef KEEP_XKB_LOCK_STATUS
1574 if (wPreferences
.modelock
) {
1575 XkbLockGroup(dpy
, XkbUseCoreKbd
, wwin
->frame
->languagemode
);
1577 #endif /* KEEP_XKB_LOCK_STATUS */
1579 wwin
->flags
.semi_focused
= 0;
1581 wFrameWindowChangeState(wwin
->frame
, WS_FOCUSED
);
1583 wwin
->flags
.focused
= 1;
1585 wWindowResetMouseGrabs(wwin
);
1587 UpdateSwitchMenu(wwin
->screen_ptr
, wwin
, ACTION_CHANGE_STATE
);
1589 if (owin
== wwin
|| !owin
)
1592 nowner
= wWindowFor(wwin
->transient_for
);
1594 /* new window is a transient for the old window */
1595 if (nowner
== owin
) {
1596 owin
->flags
.semi_focused
= 1;
1597 wWindowUnfocus(nowner
);
1601 oowner
= wWindowFor(owin
->transient_for
);
1603 /* new window is owner of old window */
1604 if (wwin
== oowner
) {
1605 wWindowUnfocus(owin
);
1610 wWindowUnfocus(owin
);
1614 /* new window has same owner of old window */
1615 if (oowner
== nowner
) {
1616 /* prevent unfocusing of owner */
1617 oowner
->flags
.semi_focused
= 0;
1618 wWindowUnfocus(owin
);
1619 oowner
->flags
.semi_focused
= 1;
1624 /* nowner != NULL && oowner != nowner */
1625 nowner
->flags
.semi_focused
= 1;
1626 wWindowUnfocus(nowner
);
1627 wWindowUnfocus(owin
);
1632 wWindowUnfocus(WWindow
*wwin
)
1634 CloseWindowMenu(wwin
->screen_ptr
);
1636 wFrameWindowChangeState(wwin
->frame
, wwin
->flags
.semi_focused
1637 ? WS_PFOCUSED
: WS_UNFOCUSED
);
1639 if (wwin
->transient_for
!=None
1640 && wwin
->transient_for
!=wwin
->screen_ptr
->root_win
) {
1642 owner
= wWindowFor(wwin
->transient_for
);
1643 if (owner
&& owner
->flags
.semi_focused
) {
1644 owner
->flags
.semi_focused
= 0;
1645 if (owner
->flags
.mapped
|| owner
->flags
.shaded
) {
1646 wWindowUnfocus(owner
);
1647 wFrameWindowPaint(owner
->frame
);
1651 wwin
->flags
.focused
= 0;
1653 wWindowResetMouseGrabs(wwin
);
1655 UpdateSwitchMenu(wwin
->screen_ptr
, wwin
, ACTION_CHANGE_STATE
);
1662 *----------------------------------------------------------------------
1664 * wWindowConstrainSize--
1665 * Constrains size for the client window, taking the maximal size,
1666 * window resize increments and other size hints into account.
1669 * The closest size to what was given that the client window can
1672 *----------------------------------------------------------------------
1675 wWindowConstrainSize(WWindow
*wwin
, int *nwidth
, int *nheight
)
1677 int width
= *nwidth
;
1678 int height
= *nheight
;
1681 int minW
= 1, minH
= 1;
1682 int maxW
= wwin
->screen_ptr
->scr_width
*2;
1683 int maxH
= wwin
->screen_ptr
->scr_height
*2;
1684 int minAX
= -1, minAY
= -1;
1685 int maxAX
= -1, maxAY
= -1;
1689 if (wwin
->normal_hints
) {
1690 winc
= wwin
->normal_hints
->width_inc
;
1691 hinc
= wwin
->normal_hints
->height_inc
;
1692 minW
= wwin
->normal_hints
->min_width
;
1693 minH
= wwin
->normal_hints
->min_height
;
1694 maxW
= wwin
->normal_hints
->max_width
;
1695 maxH
= wwin
->normal_hints
->max_height
;
1696 if (wwin
->normal_hints
->flags
& PAspect
) {
1697 minAX
= wwin
->normal_hints
->min_aspect
.x
;
1698 minAY
= wwin
->normal_hints
->min_aspect
.y
;
1699 maxAX
= wwin
->normal_hints
->max_aspect
.x
;
1700 maxAY
= wwin
->normal_hints
->max_aspect
.y
;
1714 /* aspect ratio code borrowed from olwm */
1716 /* adjust max aspect ratio */
1717 if (!(maxAX
== 1 && maxAY
== 1) && width
* maxAY
> height
* maxAX
) {
1718 if (maxAX
> maxAY
) {
1719 height
= (width
* maxAY
) / maxAX
;
1720 if (height
> maxH
) {
1722 width
= (height
* maxAX
) / maxAY
;
1725 width
= (height
* maxAX
) / maxAY
;
1728 height
= (width
* maxAY
) / maxAX
;
1733 /* adjust min aspect ratio */
1734 if (!(minAX
== 1 && minAY
== 1) && width
* minAY
< height
* minAX
) {
1735 if (minAX
> minAY
) {
1736 height
= (width
* minAY
) / minAX
;
1737 if (height
< minH
) {
1739 width
= (height
* minAX
) / minAY
;
1742 width
= (height
* minAX
) / minAY
;
1745 height
= (width
* minAY
) / minAX
;
1752 width
= (((width
- baseW
) / winc
) * winc
) + baseW
;
1754 width
= (((width
- minW
) / winc
) * winc
) + minW
;
1758 height
= (((height
- baseH
) / hinc
) * hinc
) + baseH
;
1760 height
= (((height
- minH
) / hinc
) * hinc
) + minH
;
1769 wWindowChangeWorkspace(WWindow
*wwin
, int workspace
)
1771 WScreen
*scr
= wwin
->screen_ptr
;
1775 if (workspace
>= scr
->workspace_count
|| workspace
< 0
1776 || workspace
== wwin
->frame
->workspace
)
1779 if (workspace
!= scr
->current_workspace
) {
1780 /* Sent to other workspace. Unmap window */
1781 if ((wwin
->flags
.mapped
1782 || wwin
->flags
.shaded
1783 || (wwin
->flags
.miniaturized
&& !wPreferences
.sticky_icons
))
1784 && !IS_OMNIPRESENT(wwin
) && !wwin
->flags
.changing_workspace
) {
1786 wapp
= wApplicationOf(wwin
->main_window
);
1788 wapp
->last_workspace
= workspace
;
1790 if (wwin
->flags
.miniaturized
) {
1791 XUnmapWindow(dpy
, wwin
->icon
->core
->window
);
1792 wwin
->icon
->mapped
= 0;
1795 wSetFocusTo(scr
, NULL
);
1799 /* brought to current workspace. Map window */
1800 if (wwin
->flags
.miniaturized
&& !wPreferences
.sticky_icons
) {
1801 XMapWindow(dpy
, wwin
->icon
->core
->window
);
1802 wwin
->icon
->mapped
= 1;
1803 } else if (!wwin
->flags
.mapped
&&
1804 !(wwin
->flags
.miniaturized
|| wwin
->flags
.hidden
)) {
1808 if (!IS_OMNIPRESENT(wwin
)) {
1809 wwin
->frame
->workspace
= workspace
;
1810 UpdateSwitchMenu(scr
, wwin
, ACTION_CHANGE_WORKSPACE
);
1813 wGNOMEUpdateClientStateHint(wwin
, True
);
1816 wKWMUpdateClientWorkspace(wwin
);
1817 wKWMSendEventMessage(wwin
, WKWMChangedClient
);
1826 wWindowSynthConfigureNotify(WWindow
*wwin
)
1830 sevent
.type
= ConfigureNotify
;
1831 sevent
.xconfigure
.display
= dpy
;
1832 sevent
.xconfigure
.event
= wwin
->client_win
;
1833 sevent
.xconfigure
.window
= wwin
->client_win
;
1835 sevent
.xconfigure
.x
= wwin
->client
.x
;
1836 sevent
.xconfigure
.y
= wwin
->client
.y
;
1837 sevent
.xconfigure
.width
= wwin
->client
.width
;
1838 sevent
.xconfigure
.height
= wwin
->client
.height
;
1840 sevent
.xconfigure
.border_width
= wwin
->old_border_width
;
1841 if (WFLAGP(wwin
, no_titlebar
))
1842 sevent
.xconfigure
.above
= None
;
1844 sevent
.xconfigure
.above
= wwin
->frame
->titlebar
->window
;
1846 sevent
.xconfigure
.override_redirect
= False
;
1847 XSendEvent(dpy
, wwin
->client_win
, False
, StructureNotifyMask
, &sevent
);
1849 wKWMSendEventMessage(wwin
, WKWMChangedClient
);
1856 *----------------------------------------------------------------------
1857 * wWindowConfigure--
1858 * Configures the frame, decorations and client window to the
1859 * specified geometry. The geometry is not checked for validity,
1860 * wWindowConstrainSize() must be used for that.
1861 * The size parameters are for the client window, but the position is
1863 * The client window receives a ConfigureNotify event, according
1864 * to what ICCCM says.
1870 * Window size and position are changed and client window receives
1871 * a ConfigureNotify event.
1872 *----------------------------------------------------------------------
1875 wWindowConfigure(wwin
, req_x
, req_y
, req_width
, req_height
)
1877 int req_x
, req_y
; /* new position of the frame */
1878 int req_width
, req_height
; /* new size of the client */
1880 int synth_notify
= False
;
1883 resize
= (req_width
!=wwin
->client
.width
1884 || req_height
!=wwin
->client
.height
);
1886 * if the window is being moved but not resized then
1887 * send a synthetic ConfigureNotify
1889 if ((req_x
!=wwin
->frame_x
|| req_y
!=wwin
->frame_y
) && !resize
) {
1890 synth_notify
= True
;
1893 if (WFLAGP(wwin
, dont_move_off
))
1894 wScreenBringInside(wwin
->screen_ptr
, &req_x
, &req_y
,
1895 req_width
, req_height
);
1897 if (req_width
< MIN_WINDOW_SIZE
)
1898 req_width
= MIN_WINDOW_SIZE
;
1899 if (req_height
< MIN_WINDOW_SIZE
)
1900 req_height
= MIN_WINDOW_SIZE
;
1902 /* If growing, resize inner part before frame,
1903 * if shrinking, resize frame before.
1904 * This will prevent the frame (that can have a different color)
1905 * to be exposed, causing flicker */
1906 if (req_height
> wwin
->frame
->core
->height
1907 || req_width
> wwin
->frame
->core
->width
)
1908 XResizeWindow(dpy
, wwin
->client_win
, req_width
, req_height
);
1910 if (wwin
->flags
.shaded
) {
1911 wFrameWindowConfigure(wwin
->frame
, req_x
, req_y
,
1912 req_width
, wwin
->frame
->core
->height
);
1913 wwin
->old_geometry
.height
= req_height
;
1917 h
= req_height
+ wwin
->frame
->top_width
1918 + wwin
->frame
->bottom_width
;
1920 wFrameWindowConfigure(wwin
->frame
, req_x
, req_y
, req_width
, h
);
1923 if (!(req_height
> wwin
->frame
->core
->height
1924 || req_width
> wwin
->frame
->core
->width
))
1925 XResizeWindow(dpy
, wwin
->client_win
, req_width
, req_height
);
1927 wwin
->client
.x
= req_x
;
1928 wwin
->client
.y
= req_y
+ wwin
->frame
->top_width
;
1929 wwin
->client
.width
= req_width
;
1930 wwin
->client
.height
= req_height
;
1932 wwin
->client
.x
= req_x
;
1933 wwin
->client
.y
= req_y
+ wwin
->frame
->top_width
;
1935 XMoveWindow(dpy
, wwin
->frame
->core
->window
, req_x
, req_y
);
1937 wwin
->frame_x
= req_x
;
1938 wwin
->frame_y
= req_y
;
1941 if (wShapeSupported
&& wwin
->flags
.shaped
&& resize
) {
1942 wWindowSetShape(wwin
);
1947 wWindowSynthConfigureNotify(wwin
);
1953 wWindowMove(wwin
, req_x
, req_y
)
1955 int req_x
, req_y
; /* new position of the frame */
1957 #ifdef CONFIGURE_WINDOW_WHILE_MOVING
1958 int synth_notify
= False
;
1960 /* Send a synthetic ConfigureNotify event for every window movement. */
1961 if ((req_x
!=wwin
->frame_x
|| req_y
!=wwin
->frame_y
)) {
1962 synth_notify
= True
;
1965 /* A single synthetic ConfigureNotify event is sent at the end of
1966 * a completed (opaque) movement in moveres.c */
1969 if (WFLAGP(wwin
, dont_move_off
))
1970 wScreenBringInside(wwin
->screen_ptr
, &req_x
, &req_y
,
1971 wwin
->frame
->core
->width
, wwin
->frame
->core
->height
);
1973 wwin
->client
.x
= req_x
;
1974 wwin
->client
.y
= req_y
+ wwin
->frame
->top_width
;
1976 XMoveWindow(dpy
, wwin
->frame
->core
->window
, req_x
, req_y
);
1978 wwin
->frame_x
= req_x
;
1979 wwin
->frame_y
= req_y
;
1981 #ifdef CONFIGURE_WINDOW_WHILE_MOVING
1983 wWindowSynthConfigureNotify(wwin
);
1989 wWindowUpdateButtonImages(WWindow
*wwin
)
1991 WScreen
*scr
= wwin
->screen_ptr
;
1992 Pixmap pixmap
, mask
;
1993 WFrameWindow
*fwin
= wwin
->frame
;
1995 if (WFLAGP(wwin
, no_titlebar
))
1998 /* miniaturize button */
2000 if (!WFLAGP(wwin
, no_miniaturize_button
)) {
2001 if (wwin
->wm_gnustep_attr
2002 && wwin
->wm_gnustep_attr
->flags
& GSMiniaturizePixmapAttr
) {
2003 pixmap
= wwin
->wm_gnustep_attr
->miniaturize_pixmap
;
2005 if (wwin
->wm_gnustep_attr
->flags
&GSMiniaturizeMaskAttr
) {
2006 mask
= wwin
->wm_gnustep_attr
->miniaturize_mask
;
2011 if (fwin
->lbutton_image
2012 && (fwin
->lbutton_image
->image
!= pixmap
2013 || fwin
->lbutton_image
->mask
!= mask
)) {
2014 wPixmapDestroy(fwin
->lbutton_image
);
2015 fwin
->lbutton_image
= NULL
;
2018 if (!fwin
->lbutton_image
) {
2019 fwin
->lbutton_image
= wPixmapCreate(scr
, pixmap
, mask
);
2020 fwin
->lbutton_image
->client_owned
= 1;
2021 fwin
->lbutton_image
->client_owned_mask
= 1;
2024 if (fwin
->lbutton_image
&& !fwin
->lbutton_image
->shared
) {
2025 wPixmapDestroy(fwin
->lbutton_image
);
2027 fwin
->lbutton_image
= scr
->b_pixmaps
[WBUT_ICONIFY
];
2031 #ifdef XKB_BUTTON_HINT
2032 if (!WFLAGP(wwin
, no_language_button
)) {
2033 if (fwin
->languagebutton_image
&& !fwin
->languagebutton_image
->shared
) {
2034 wPixmapDestroy(fwin
->languagebutton_image
);
2036 fwin
->languagebutton_image
= scr
->b_pixmaps
[WBUT_XKBGROUP1
+ fwin
->languagemode
];
2042 if (!WFLAGP(wwin
, no_close_button
)) {
2043 if (wwin
->wm_gnustep_attr
2044 && wwin
->wm_gnustep_attr
->flags
&GSClosePixmapAttr
) {
2045 pixmap
= wwin
->wm_gnustep_attr
->close_pixmap
;
2047 if (wwin
->wm_gnustep_attr
->flags
&GSCloseMaskAttr
) {
2048 mask
= wwin
->wm_gnustep_attr
->close_mask
;
2053 if (fwin
->rbutton_image
2054 && (fwin
->rbutton_image
->image
!= pixmap
2055 || fwin
->rbutton_image
->mask
!= mask
)) {
2056 wPixmapDestroy(fwin
->rbutton_image
);
2057 fwin
->rbutton_image
= NULL
;
2060 if (!fwin
->rbutton_image
) {
2061 fwin
->rbutton_image
= wPixmapCreate(scr
, pixmap
, mask
);
2062 fwin
->rbutton_image
->client_owned
= 1;
2063 fwin
->rbutton_image
->client_owned_mask
= 1;
2065 } else if (WFLAGP(wwin
, kill_close
)) {
2066 if (fwin
->rbutton_image
&& !fwin
->rbutton_image
->shared
) {
2067 wPixmapDestroy(fwin
->rbutton_image
);
2069 fwin
->rbutton_image
= scr
->b_pixmaps
[WBUT_KILL
];
2070 } else if (WFLAGP(wwin
, broken_close
)) {
2071 if (fwin
->rbutton_image
&& !fwin
->rbutton_image
->shared
) {
2072 wPixmapDestroy(fwin
->rbutton_image
);
2074 fwin
->rbutton_image
= scr
->b_pixmaps
[WBUT_BROKENCLOSE
];
2076 if (fwin
->rbutton_image
&& !fwin
->rbutton_image
->shared
) {
2077 wPixmapDestroy(fwin
->rbutton_image
);
2079 fwin
->rbutton_image
= scr
->b_pixmaps
[WBUT_CLOSE
];
2083 /* force buttons to be redrawn */
2084 fwin
->flags
.need_texture_change
= 1;
2085 wFrameWindowPaint(fwin
);
2090 *---------------------------------------------------------------------------
2091 * wWindowConfigureBorders--
2092 * Update window border configuration according to attribute flags.
2094 *---------------------------------------------------------------------------
2097 wWindowConfigureBorders(WWindow
*wwin
)
2103 flags
= WFF_LEFT_BUTTON
|WFF_RIGHT_BUTTON
;
2104 #ifdef XKB_BUTTON_HINT
2105 flags
|= WFF_LANGUAGE_BUTTON
;
2107 if (!WFLAGP(wwin
, no_titlebar
))
2108 flags
|= WFF_TITLEBAR
;
2109 if (!WFLAGP(wwin
, no_resizebar
))
2110 flags
|= WFF_RESIZEBAR
;
2111 if (wwin
->flags
.shaded
)
2112 flags
|= WFF_IS_SHADED
;
2114 oldh
= wwin
->frame
->top_width
;
2115 wFrameWindowUpdateBorders(wwin
->frame
, flags
);
2116 if (oldh
!= wwin
->frame
->top_width
) {
2117 newy
= wwin
->frame_y
+ oldh
- wwin
->frame
->top_width
;
2119 XMoveWindow(dpy
, wwin
->client_win
, 0, wwin
->frame
->top_width
);
2120 wWindowConfigure(wwin
, wwin
->frame_x
, newy
,
2121 wwin
->client
.width
, wwin
->client
.height
);
2125 if (!WFLAGP(wwin
, no_miniaturize_button
)
2126 && wwin
->frame
->flags
.hide_left_button
)
2127 flags
|= WFF_LEFT_BUTTON
;
2129 #ifdef XKB_BUTTON_HINT
2130 if (!WFLAGP(wwin
, no_language_button
)
2131 && wwin
->frame
->flags
.hide_language_button
)
2132 flags
|= WFF_LANGUAGE_BUTTON
;
2135 if (!WFLAGP(wwin
, no_close_button
)
2136 && wwin
->frame
->flags
.hide_right_button
)
2137 flags
|= WFF_RIGHT_BUTTON
;
2140 wWindowUpdateButtonImages(wwin
);
2141 wFrameWindowShowButton(wwin
->frame
, flags
);
2145 if (WFLAGP(wwin
, no_miniaturize_button
)
2146 && !wwin
->frame
->flags
.hide_left_button
)
2147 flags
|= WFF_LEFT_BUTTON
;
2149 #ifdef XKB_BUTTON_HINT
2150 if (WFLAGP(wwin
, no_language_button
)
2151 && !wwin
->frame
->flags
.hide_language_button
)
2152 flags
|= WFF_LANGUAGE_BUTTON
;
2155 if (WFLAGP(wwin
, no_close_button
)
2156 && !wwin
->frame
->flags
.hide_right_button
)
2157 flags
|= WFF_RIGHT_BUTTON
;
2160 wFrameWindowHideButton(wwin
->frame
, flags
);
2163 if (wShapeSupported
&& wwin
->flags
.shaped
) {
2164 wWindowSetShape(wwin
);
2172 wWindowSaveState(WWindow
*wwin
)
2177 memset(data
, 0, sizeof(CARD32
)*10);
2178 data
[0] = wwin
->frame
->workspace
;
2179 data
[1] = wwin
->flags
.miniaturized
;
2180 data
[2] = wwin
->flags
.shaded
;
2181 data
[3] = wwin
->flags
.hidden
;
2183 for (i
= 0; i
< MAX_WINDOW_SHORTCUTS
; i
++) {
2184 if (wwin
->screen_ptr
->shortcutWindow
[i
] == wwin
)
2187 XChangeProperty(dpy
, wwin
->client_win
, _XA_WINDOWMAKER_STATE
,
2188 _XA_WINDOWMAKER_STATE
, 32, PropModeReplace
,
2189 (unsigned char *)data
, 10);
2194 getSavedState(Window window
, WSavedState
**state
)
2198 unsigned long nitems_ret
;
2199 unsigned long bytes_after_ret
;
2202 if (XGetWindowProperty(dpy
, window
, _XA_WINDOWMAKER_STATE
, 0, 10,
2203 True
, _XA_WINDOWMAKER_STATE
,
2204 &type_ret
, &fmt_ret
, &nitems_ret
, &bytes_after_ret
,
2205 (unsigned char **)&data
)!=Success
|| !data
)
2208 *state
= malloc(sizeof(WSavedState
));
2211 (*state
)->workspace
= data
[0];
2212 (*state
)->miniaturized
= data
[1];
2213 (*state
)->shaded
= data
[2];
2214 (*state
)->hidden
= data
[3];
2215 (*state
)->use_geometry
= data
[4];
2216 (*state
)->x
= data
[5];
2217 (*state
)->y
= data
[6];
2218 (*state
)->w
= data
[7];
2219 (*state
)->h
= data
[8];
2220 (*state
)->window_shortcuts
= data
[9];
2224 if (*state
&& type_ret
==_XA_WINDOWMAKER_STATE
)
2233 wWindowClearShape(WWindow
*wwin
)
2235 XShapeCombineMask(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2236 0, wwin
->frame
->top_width
, None
, ShapeSet
);
2241 wWindowSetShape(WWindow
*wwin
)
2245 #ifdef OPTIMIZE_SHAPE
2250 /* only shape is the client's */
2251 if (WFLAGP(wwin
, no_titlebar
) && WFLAGP(wwin
, no_resizebar
)) {
2255 /* Get array of rectangles describing the shape mask */
2256 rects
= XShapeGetRectangles(dpy
, wwin
->client_win
, ShapeBounding
,
2262 urec
= malloc(sizeof(XRectangle
)*(count
+2));
2268 /* insert our decoration rectangles in the rect list */
2269 memcpy(urec
, rects
, sizeof(XRectangle
)*count
);
2272 if (!WFLAGP(wwin
, no_titlebar
)) {
2274 urec
[count
].y
= -1 - wwin
->frame
->top_width
;
2275 urec
[count
].width
= wwin
->frame
->core
->width
+ 2;
2276 urec
[count
].height
= wwin
->frame
->top_width
+ 1;
2279 if (!WFLAGP(wwin
, no_resizebar
)) {
2281 urec
[count
].y
= wwin
->frame
->core
->height
2282 - wwin
->frame
->bottom_width
- wwin
->frame
->top_width
;
2283 urec
[count
].width
= wwin
->frame
->core
->width
+ 2;
2284 urec
[count
].height
= wwin
->frame
->bottom_width
+ 1;
2288 /* shape our frame window */
2289 XShapeCombineRectangles(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2290 0, wwin
->frame
->top_width
, urec
, count
,
2291 ShapeSet
, Unsorted
);
2297 #endif /* OPTIMIZE_SHAPE */
2299 if (!WFLAGP(wwin
, no_titlebar
)) {
2302 rect
[count
].width
= wwin
->frame
->core
->width
+ 2;
2303 rect
[count
].height
= wwin
->frame
->top_width
+ 1;
2306 if (!WFLAGP(wwin
, no_resizebar
)) {
2308 rect
[count
].y
= wwin
->frame
->core
->height
- wwin
->frame
->bottom_width
;
2309 rect
[count
].width
= wwin
->frame
->core
->width
+ 2;
2310 rect
[count
].height
= wwin
->frame
->bottom_width
+ 1;
2314 XShapeCombineRectangles(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2315 0, 0, rect
, count
, ShapeSet
, Unsorted
);
2317 XShapeCombineShape(dpy
, wwin
->frame
->core
->window
, ShapeBounding
,
2318 0, wwin
->frame
->top_width
, wwin
->client_win
,
2319 ShapeBounding
, (count
> 0 ? ShapeUnion
: ShapeSet
));
2324 /* ====================================================================== */
2327 getFocusMode(WWindow
*wwin
)
2331 if ((wwin
->wm_hints
) && (wwin
->wm_hints
->flags
& InputHint
)) {
2332 if (wwin
->wm_hints
->input
== True
) {
2333 if (wwin
->protocols
.TAKE_FOCUS
)
2334 mode
= WFM_LOCALLY_ACTIVE
;
2338 if (wwin
->protocols
.TAKE_FOCUS
)
2339 mode
= WFM_GLOBALLY_ACTIVE
;
2341 mode
= WFM_NO_INPUT
;
2351 wWindowSetKeyGrabs(WWindow
*wwin
)
2356 for (i
=0; i
<WKBD_LAST
; i
++) {
2357 key
= &wKeyBindings
[i
];
2359 if (key
->keycode
==0)
2361 if (key
->modifier
!=AnyModifier
) {
2362 XGrabKey(dpy
, key
->keycode
, key
->modifier
|LockMask
,
2363 wwin
->frame
->core
->window
, True
, GrabModeAsync
, GrabModeAsync
);
2365 /* Also grab all modifier combinations possible that include,
2366 * LockMask, ScrollLockMask and NumLockMask, so that keygrabs
2367 * work even if the NumLock/ScrollLock key is on.
2369 wHackedGrabKey(key
->keycode
, key
->modifier
,
2370 wwin
->frame
->core
->window
, True
, GrabModeAsync
,
2374 XGrabKey(dpy
, key
->keycode
, key
->modifier
,
2375 wwin
->frame
->core
->window
, True
, GrabModeAsync
, GrabModeAsync
);
2379 wRootMenuBindShortcuts(wwin
->frame
->core
->window
);
2386 wWindowResetMouseGrabs(WWindow
*wwin
)
2388 /* Mouse grabs can't be done on the client window because of
2389 * ICCCM and because clients that try to do the same will crash.
2391 * But there is a problem wich makes tbar buttons of unfocused
2392 * windows not usable as the click goes to the frame window instead
2393 * of the button itself. Must figure a way to fix that.
2396 XUngrabButton(dpy
, AnyButton
, AnyModifier
, wwin
->client_win
);
2398 if (!WFLAGP(wwin
, no_bind_mouse
)) {
2399 /* grabs for Meta+drag */
2400 wHackedGrabButton(AnyButton
, MOD_MASK
, wwin
->client_win
,
2401 True
, ButtonPressMask
, GrabModeSync
,
2402 GrabModeAsync
, None
, None
);
2405 if (!wwin
->flags
.focused
&& !WFLAGP(wwin
, no_focusable
)) {
2406 /* the passive grabs to focus the window */
2407 if (wPreferences
.focus_mode
== WKF_CLICK
)
2408 XGrabButton(dpy
, AnyButton
, AnyModifier
, wwin
->client_win
,
2409 True
, ButtonPressMask
, GrabModeSync
, GrabModeAsync
,
2417 wWindowUpdateGNUstepAttr(WWindow
*wwin
, GNUstepWMAttributes
*attr
)
2420 if (attr
->flags
& GSExtraFlagsAttr
) {
2421 if (WFLAGP(wwin
, broken_close
) !=
2422 (attr
->extra_flags
& GSDocumentEditedFlag
)) {
2424 wwin
->client_flags
.broken_close
= !WFLAGP(wwin
, broken_close
);
2426 wWindowUpdateButtonImages(wwin
);
2434 wWindowAddSavedState(char *instance
, char *class, char *command
,
2435 pid_t pid
, WSavedState
*state
)
2437 WWindowState
*wstate
;
2439 wstate
= malloc(sizeof(WWindowState
));
2443 memset(wstate
, 0, sizeof(WWindowState
));
2446 wstate
->instance
= wstrdup(instance
);
2448 wstate
->class = wstrdup(class);
2450 wstate
->command
= wstrdup(command
);
2451 wstate
->state
= state
;
2453 wstate
->next
= windowState
;
2454 windowState
= wstate
;
2457 printf("Added WindowState with ID %p, for %s.%s : \"%s\"\n", wstate
, instance
,
2465 #define SAME(x, y) (((x) && (y) && !strcmp((x), (y))) || (!(x) && !(y)))
2469 wWindowGetSavedState(Window win
)
2471 char *instance
, *class, *command
=NULL
;
2472 WWindowState
*wstate
= windowState
;
2479 if (XGetCommand(dpy
, win
, &argv
, &argc
)) {
2481 command
= FlattenStringList(argv
, argc
);
2482 XFreeStringList(argv
);
2487 if (PropGetWMClass(win
, &class, &instance
)) {
2489 if (SAME(instance
, wstate
->instance
) &&
2490 SAME(class, wstate
->class) &&
2491 SAME(command
, wstate
->command
)) {
2494 wstate
= wstate
->next
;
2501 printf("Read WindowState with ID %p, for %s.%s : \"%s\"\n", wstate
, instance
,
2505 if (command
) free(command
);
2506 if (instance
) XFree(instance
);
2507 if (class) XFree(class);
2514 wWindowDeleteSavedState(WMagicNumber id
)
2516 WWindowState
*tmp
, *wstate
=(WWindowState
*)id
;
2518 if (!wstate
|| !windowState
)
2523 windowState
= wstate
->next
;
2525 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2526 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2528 if (wstate
->instance
) free(wstate
->instance
);
2529 if (wstate
->class) free(wstate
->class);
2530 if (wstate
->command
) free(wstate
->command
);
2531 free(wstate
->state
);
2535 if (tmp
->next
==wstate
) {
2536 tmp
->next
=wstate
->next
;
2538 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2539 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2541 if (wstate
->instance
) free(wstate
->instance
);
2542 if (wstate
->class) free(wstate
->class);
2543 if (wstate
->command
) free(wstate
->command
);
2544 free(wstate
->state
);
2555 wWindowDeleteSavedStatesForPID(pid_t pid
)
2557 WWindowState
*tmp
, *wstate
;
2563 if (tmp
->pid
== pid
) {
2564 wstate
= windowState
;
2565 windowState
= tmp
->next
;
2567 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2568 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2570 if (wstate
->instance
) free(wstate
->instance
);
2571 if (wstate
->class) free(wstate
->class);
2572 if (wstate
->command
) free(wstate
->command
);
2573 free(wstate
->state
);
2577 if (tmp
->next
->pid
==pid
) {
2579 tmp
->next
= wstate
->next
;
2581 printf("Deleted WindowState with ID %p, for %s.%s : \"%s\"\n",
2582 wstate
, wstate
->instance
, wstate
->class, wstate
->command
);
2584 if (wstate
->instance
) free(wstate
->instance
);
2585 if (wstate
->class) free(wstate
->class);
2586 if (wstate
->command
) free(wstate
->command
);
2587 free(wstate
->state
);
2597 /* ====================================================================== */
2600 resizebarMouseDown(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2602 WWindow
*wwin
= data
;
2604 #ifndef NUMLOCK_HACK
2605 if ((event
->xbutton
.state
& ValidModMask
)
2606 != (event
->xbutton
.state
& ~LockMask
)) {
2607 wwarning(_("the NumLock, ScrollLock or similar key seems to be turned on.\n"\
2608 "Turn it off or some mouse actions and keyboard shortcuts will not work."));
2612 event
->xbutton
.state
&= ValidModMask
;
2614 CloseWindowMenu(wwin
->screen_ptr
);
2616 if (wPreferences
.focus_mode
==WKF_CLICK
2617 && !(event
->xbutton
.state
&ControlMask
)
2618 && !WFLAGP(wwin
, no_focusable
)) {
2619 wSetFocusTo(wwin
->screen_ptr
, wwin
);
2622 if (event
->xbutton
.button
== Button1
)
2623 wRaiseFrame(wwin
->frame
->core
);
2625 if (event
->xbutton
.window
!= wwin
->frame
->resizebar
->window
) {
2626 if (XGrabPointer(dpy
, wwin
->frame
->resizebar
->window
, True
,
2627 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2628 GrabModeAsync
, GrabModeAsync
, None
,
2629 None
, CurrentTime
)!=GrabSuccess
) {
2631 wwarning("pointer grab failed for window move");
2637 if (event
->xbutton
.state
& MOD_MASK
) {
2638 /* move the window */
2639 wMouseMoveWindow(wwin
, event
);
2640 XUngrabPointer(dpy
, CurrentTime
);
2642 wMouseResizeWindow(wwin
, event
);
2643 XUngrabPointer(dpy
, CurrentTime
);
2650 titlebarDblClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2652 WWindow
*wwin
= data
;
2654 event
->xbutton
.state
&= ValidModMask
;
2656 if (event
->xbutton
.button
==Button1
) {
2657 if (event
->xbutton
.state
== 0) {
2658 if (!WFLAGP(wwin
, no_shadeable
)) {
2660 if (wwin
->flags
.shaded
)
2661 wUnshadeWindow(wwin
);
2668 if (event
->xbutton
.state
& ControlMask
)
2669 dir
|= MAX_VERTICAL
;
2671 if (event
->xbutton
.state
& ShiftMask
) {
2672 dir
|= MAX_HORIZONTAL
;
2673 if (!(event
->xbutton
.state
& ControlMask
))
2674 wSelectWindow(wwin
, !wwin
->flags
.selected
);
2677 /* maximize window */
2678 if (dir
!=0 && !WFLAGP(wwin
, no_resizable
)) {
2679 if (wwin
->flags
.maximized
)
2680 wUnmaximizeWindow(wwin
);
2682 wMaximizeWindow(wwin
, dir
);
2685 } else if (event
->xbutton
.button
==Button3
) {
2686 if (event
->xbutton
.state
& MOD_MASK
) {
2687 wHideOtherApplications(wwin
);
2689 } else if (event
->xbutton
.button
==Button2
) {
2690 wSelectWindow(wwin
, !wwin
->flags
.selected
);
2696 frameMouseDown(WObjDescriptor
*desc
, XEvent
*event
)
2698 WWindow
*wwin
= desc
->parent
;
2700 event
->xbutton
.state
&= ValidModMask
;
2702 CloseWindowMenu(wwin
->screen_ptr
);
2704 if (wPreferences
.focus_mode
==WKF_CLICK
2705 && !(event
->xbutton
.state
&ControlMask
)
2706 && !WFLAGP(wwin
, no_focusable
)) {
2707 wSetFocusTo(wwin
->screen_ptr
, wwin
);
2709 if (event
->xbutton
.button
== Button1
) {
2710 wRaiseFrame(wwin
->frame
->core
);
2713 if (event
->xbutton
.state
& MOD_MASK
) {
2714 /* move the window */
2715 if (XGrabPointer(dpy
, wwin
->client_win
, False
,
2716 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2717 GrabModeAsync
, GrabModeAsync
, None
,
2718 None
, CurrentTime
)!=GrabSuccess
) {
2720 wwarning("pointer grab failed for window move");
2724 if (event
->xbutton
.button
== Button3
&& !WFLAGP(wwin
, no_resizable
))
2725 wMouseResizeWindow(wwin
, event
);
2727 wMouseMoveWindow(wwin
, event
);
2728 XUngrabPointer(dpy
, CurrentTime
);
2734 titlebarMouseDown(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2736 WWindow
*wwin
= (WWindow
*)data
;
2738 #ifndef NUMLOCK_HACK
2739 if ((event
->xbutton
.state
& ValidModMask
)
2740 != (event
->xbutton
.state
& ~LockMask
)) {
2741 wwarning(_("the NumLock, ScrollLock or similar key seems to be turned on.\n"\
2742 "Turn it off or some mouse actions and keyboard shortcuts will not work."));
2745 event
->xbutton
.state
&= ValidModMask
;
2747 CloseWindowMenu(wwin
->screen_ptr
);
2749 if (wPreferences
.focus_mode
==WKF_CLICK
2750 && !(event
->xbutton
.state
&ControlMask
)
2751 && !WFLAGP(wwin
, no_focusable
)) {
2752 wSetFocusTo(wwin
->screen_ptr
, wwin
);
2755 if (event
->xbutton
.button
== Button1
2756 || event
->xbutton
.button
== Button2
) {
2758 if (event
->xbutton
.button
== Button1
) {
2759 if (event
->xbutton
.state
& MOD_MASK
) {
2760 wLowerFrame(wwin
->frame
->core
);
2762 wRaiseFrame(wwin
->frame
->core
);
2765 if ((event
->xbutton
.state
& ShiftMask
)
2766 && !(event
->xbutton
.state
& ControlMask
)) {
2767 wSelectWindow(wwin
, !wwin
->flags
.selected
);
2770 if (event
->xbutton
.window
!= wwin
->frame
->titlebar
->window
2771 && XGrabPointer(dpy
, wwin
->frame
->titlebar
->window
, False
,
2772 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2773 GrabModeAsync
, GrabModeAsync
, None
,
2774 None
, CurrentTime
)!=GrabSuccess
) {
2776 wwarning("pointer grab failed for window move");
2781 /* move the window */
2782 wMouseMoveWindow(wwin
, event
);
2784 XUngrabPointer(dpy
, CurrentTime
);
2785 } else if (event
->xbutton
.button
== Button3
&& event
->xbutton
.state
==0
2786 && !wwin
->flags
.internal_window
2787 && !WCHECK_STATE(WSTATE_MODAL
)) {
2788 WObjDescriptor
*desc
;
2790 if (event
->xbutton
.window
!= wwin
->frame
->titlebar
->window
2791 && XGrabPointer(dpy
, wwin
->frame
->titlebar
->window
, False
,
2792 ButtonMotionMask
|ButtonReleaseMask
|ButtonPressMask
,
2793 GrabModeAsync
, GrabModeAsync
, None
,
2794 None
, CurrentTime
)!=GrabSuccess
) {
2796 wwarning("pointer grab failed for window move");
2801 OpenWindowMenu(wwin
, event
->xbutton
.x_root
,
2802 wwin
->frame_y
+wwin
->frame
->top_width
, False
);
2804 /* allow drag select */
2805 desc
= &wwin
->screen_ptr
->window_menu
->menu
->descriptor
;
2806 event
->xany
.send_event
= True
;
2807 (*desc
->handle_mousedown
)(desc
, event
);
2809 XUngrabPointer(dpy
, CurrentTime
);
2816 windowCloseClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2818 WWindow
*wwin
= data
;
2820 event
->xbutton
.state
&= ValidModMask
;
2822 CloseWindowMenu(wwin
->screen_ptr
);
2824 if (event
->xbutton
.button
< Button1
|| event
->xbutton
.button
> Button3
)
2827 /* if control-click, kill the client */
2828 if (event
->xbutton
.state
& ControlMask
) {
2832 if (wwin
->flags
.olwm_push_pin_out
) {
2834 wwin
->flags
.olwm_push_pin_out
= 0;
2836 wOLWMChangePushpinState(wwin
, True
);
2838 wFrameWindowUpdatePushButton(wwin
->frame
, False
);
2843 if (wwin
->protocols
.DELETE_WINDOW
&& event
->xbutton
.state
==0) {
2844 /* send delete message */
2845 wClientSendProtocol(wwin
, _XA_WM_DELETE_WINDOW
, LastTimestamp
);
2852 windowCloseDblClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2854 WWindow
*wwin
= data
;
2856 CloseWindowMenu(wwin
->screen_ptr
);
2858 if (event
->xbutton
.button
< Button1
|| event
->xbutton
.button
> Button3
)
2861 /* send delete message */
2862 if (wwin
->protocols
.DELETE_WINDOW
) {
2863 wClientSendProtocol(wwin
, _XA_WM_DELETE_WINDOW
, LastTimestamp
);
2870 #ifdef XKB_BUTTON_HINT
2872 windowLanguageClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2874 WWindow
*wwin
= data
;
2875 WFrameWindow
*fwin
= wwin
->frame
;
2876 WScreen
*scr
= fwin
->screen_ptr
;
2877 XkbStateRec staterec
;
2880 if (event
->xbutton
.button
!= Button1
&& event
->xbutton
.button
!= Button3
)
2882 tl
= wwin
->frame
->languagemode
;
2883 wwin
->frame
->languagemode
= wwin
->frame
->last_languagemode
;
2884 wwin
->frame
->last_languagemode
= tl
;
2885 wSetFocusTo(scr
, wwin
);
2886 wwin
->frame
->languagebutton_image
=
2887 wwin
->frame
->screen_ptr
->b_pixmaps
[WBUT_XKBGROUP1
+
2888 wwin
->frame
->languagemode
];
2889 wFrameWindowUpdateLanguageButton(wwin
->frame
);
2890 if (event
->xbutton
.button
== Button3
)
2892 wRaiseFrame(fwin
->core
);
2898 windowIconifyClick(WCoreWindow
*sender
, void *data
, XEvent
*event
)
2900 WWindow
*wwin
= data
;
2902 event
->xbutton
.state
&= ValidModMask
;
2904 CloseWindowMenu(wwin
->screen_ptr
);
2906 if (event
->xbutton
.button
< Button1
|| event
->xbutton
.button
> Button3
)
2909 if (wwin
->protocols
.MINIATURIZE_WINDOW
&& event
->xbutton
.state
==0) {
2910 wClientSendProtocol(wwin
, _XA_GNUSTEP_WM_MINIATURIZE_WINDOW
,
2914 if ((event
->xbutton
.state
& ControlMask
) ||
2915 (event
->xbutton
.button
== Button3
)) {
2917 wapp
= wApplicationOf(wwin
->main_window
);
2918 if (wapp
&& !WFLAGP(wwin
, no_appicon
))
2919 wHideApplication(wapp
);
2920 } else if (event
->xbutton
.state
==0) {
2921 wIconifyWindow(wwin
);