2 * Window position related functions.
4 * Copyright 1993, 1994, 1995, 2001 Alexandre Julliard
5 * Copyright 1995, 1996, 1999 Alex Korobka
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <X11/IntrinsicP.h>
27 #include <X11/extensions/shape.h>
28 #endif /* HAVE_LIBXSHAPE */
38 #include "wine/wingdi16.h"
44 #include "wine/server.h"
45 #include "wine/debug.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(x11drv
);
49 #define SWP_AGG_NOPOSCHANGE \
50 (SWP_NOSIZE | SWP_NOMOVE | SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE | SWP_NOZORDER)
51 #define SWP_AGG_STATUSFLAGS \
52 (SWP_AGG_NOPOSCHANGE | SWP_FRAMECHANGED | SWP_HIDEWINDOW | SWP_SHOWWINDOW)
54 #define SWP_EX_NOCOPY 0x0001
55 #define SWP_EX_PAINTSELF 0x0002
56 #define SWP_EX_NONCLIENT 0x0004
58 #define HAS_THICKFRAME(style) \
59 (((style) & WS_THICKFRAME) && \
60 !(((style) & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME))
62 #define ON_LEFT_BORDER(hit) \
63 (((hit) == HTLEFT) || ((hit) == HTTOPLEFT) || ((hit) == HTBOTTOMLEFT))
64 #define ON_RIGHT_BORDER(hit) \
65 (((hit) == HTRIGHT) || ((hit) == HTTOPRIGHT) || ((hit) == HTBOTTOMRIGHT))
66 #define ON_TOP_BORDER(hit) \
67 (((hit) == HTTOP) || ((hit) == HTTOPLEFT) || ((hit) == HTTOPRIGHT))
68 #define ON_BOTTOM_BORDER(hit) \
69 (((hit) == HTBOTTOM) || ((hit) == HTBOTTOMLEFT) || ((hit) == HTBOTTOMRIGHT))
71 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
72 #define _NET_WM_MOVERESIZE_SIZE_TOP 1
73 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT 2
74 #define _NET_WM_MOVERESIZE_SIZE_RIGHT 3
75 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT 4
76 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM 5
77 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT 6
78 #define _NET_WM_MOVERESIZE_SIZE_LEFT 7
79 #define _NET_WM_MOVERESIZE_MOVE 8 /* movement only */
80 #define _NET_WM_MOVERESIZE_SIZE_KEYBOARD 9 /* size via keyboard */
81 #define _NET_WM_MOVERESIZE_MOVE_KEYBOARD 10 /* move via keyboard */
84 /***********************************************************************
87 void X11DRV_Expose( HWND hwnd
, XEvent
*xev
)
89 XExposeEvent
*event
= &xev
->xexpose
;
91 struct x11drv_win_data
*data
;
92 int flags
= RDW_INVALIDATE
| RDW_ERASE
| RDW_ALLCHILDREN
;
94 TRACE( "win %p (%lx) %d,%d %dx%d\n",
95 hwnd
, event
->window
, event
->x
, event
->y
, event
->width
, event
->height
);
97 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
101 rect
.right
= rect
.left
+ event
->width
;
102 rect
.bottom
= rect
.top
+ event
->height
;
104 if (rect
.left
< data
->client_rect
.left
||
105 rect
.top
< data
->client_rect
.top
||
106 rect
.right
> data
->client_rect
.right
||
107 rect
.bottom
> data
->client_rect
.bottom
) flags
|= RDW_FRAME
;
109 SERVER_START_REQ( update_window_zorder
)
112 req
->rect
.left
= rect
.left
+ data
->whole_rect
.left
;
113 req
->rect
.top
= rect
.top
+ data
->whole_rect
.top
;
114 req
->rect
.right
= rect
.right
+ data
->whole_rect
.left
;
115 req
->rect
.bottom
= rect
.bottom
+ data
->whole_rect
.top
;
116 wine_server_call( req
);
120 /* make position relative to client area instead of window */
121 OffsetRect( &rect
, -data
->client_rect
.left
, -data
->client_rect
.top
);
122 RedrawWindow( hwnd
, &rect
, 0, flags
);
126 /***********************************************************************
127 * SWP_DoWinPosChanging
129 static BOOL
SWP_DoWinPosChanging( WINDOWPOS
* pWinpos
, RECT
* pNewWindowRect
, RECT
* pNewClientRect
)
133 /* Send WM_WINDOWPOSCHANGING message */
135 if (!(pWinpos
->flags
& SWP_NOSENDCHANGING
))
136 SendMessageW( pWinpos
->hwnd
, WM_WINDOWPOSCHANGING
, 0, (LPARAM
)pWinpos
);
138 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return FALSE
;
140 /* Calculate new position and size */
142 *pNewWindowRect
= wndPtr
->rectWindow
;
143 *pNewClientRect
= (wndPtr
->dwStyle
& WS_MINIMIZE
) ? wndPtr
->rectWindow
144 : wndPtr
->rectClient
;
146 if (!(pWinpos
->flags
& SWP_NOSIZE
))
148 pNewWindowRect
->right
= pNewWindowRect
->left
+ pWinpos
->cx
;
149 pNewWindowRect
->bottom
= pNewWindowRect
->top
+ pWinpos
->cy
;
151 if (!(pWinpos
->flags
& SWP_NOMOVE
))
153 pNewWindowRect
->left
= pWinpos
->x
;
154 pNewWindowRect
->top
= pWinpos
->y
;
155 pNewWindowRect
->right
+= pWinpos
->x
- wndPtr
->rectWindow
.left
;
156 pNewWindowRect
->bottom
+= pWinpos
->y
- wndPtr
->rectWindow
.top
;
158 OffsetRect( pNewClientRect
, pWinpos
->x
- wndPtr
->rectWindow
.left
,
159 pWinpos
->y
- wndPtr
->rectWindow
.top
);
161 pWinpos
->flags
|= SWP_NOCLIENTMOVE
| SWP_NOCLIENTSIZE
;
163 TRACE( "hwnd %p, after %p, swp %d,%d %dx%d flags %08x\n",
164 pWinpos
->hwnd
, pWinpos
->hwndInsertAfter
, pWinpos
->x
, pWinpos
->y
,
165 pWinpos
->cx
, pWinpos
->cy
, pWinpos
->flags
);
166 TRACE( "current %s style %08lx new %s\n",
167 wine_dbgstr_rect( &wndPtr
->rectWindow
), wndPtr
->dwStyle
,
168 wine_dbgstr_rect( pNewWindowRect
));
170 WIN_ReleasePtr( wndPtr
);
175 /***********************************************************************
178 * Compute the valid rects from the old and new client rect and WVR_* flags.
179 * Helper for WM_NCCALCSIZE handling.
181 static inline void get_valid_rects( const RECT
*old_client
, const RECT
*new_client
, UINT flags
,
186 if (flags
& WVR_REDRAW
)
188 SetRectEmpty( &valid
[0] );
189 SetRectEmpty( &valid
[1] );
193 if (flags
& WVR_VALIDRECTS
)
195 if (!IntersectRect( &valid
[0], &valid
[0], new_client
) ||
196 !IntersectRect( &valid
[1], &valid
[1], old_client
))
198 SetRectEmpty( &valid
[0] );
199 SetRectEmpty( &valid
[1] );
202 flags
= WVR_ALIGNLEFT
| WVR_ALIGNTOP
;
206 valid
[0] = *new_client
;
207 valid
[1] = *old_client
;
210 /* make sure the rectangles have the same size */
211 cx
= min( valid
[0].right
- valid
[0].left
, valid
[1].right
- valid
[1].left
);
212 cy
= min( valid
[0].bottom
- valid
[0].top
, valid
[1].bottom
- valid
[1].top
);
214 if (flags
& WVR_ALIGNBOTTOM
)
216 valid
[0].top
= valid
[0].bottom
- cy
;
217 valid
[1].top
= valid
[1].bottom
- cy
;
221 valid
[0].bottom
= valid
[0].top
+ cy
;
222 valid
[1].bottom
= valid
[1].top
+ cy
;
224 if (flags
& WVR_ALIGNRIGHT
)
226 valid
[0].left
= valid
[0].right
- cx
;
227 valid
[1].left
= valid
[1].right
- cx
;
231 valid
[0].right
= valid
[0].left
+ cx
;
232 valid
[1].right
= valid
[1].left
+ cx
;
237 /***********************************************************************
240 static UINT
SWP_DoNCCalcSize( WINDOWPOS
* pWinpos
, const RECT
* pNewWindowRect
, RECT
* pNewClientRect
,
246 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
248 /* Send WM_NCCALCSIZE message to get new client area */
249 if( (pWinpos
->flags
& (SWP_FRAMECHANGED
| SWP_NOSIZE
)) != SWP_NOSIZE
)
251 NCCALCSIZE_PARAMS params
;
252 WINDOWPOS winposCopy
;
254 params
.rgrc
[0] = *pNewWindowRect
;
255 params
.rgrc
[1] = wndPtr
->rectWindow
;
256 params
.rgrc
[2] = wndPtr
->rectClient
;
257 params
.lppos
= &winposCopy
;
258 winposCopy
= *pWinpos
;
259 WIN_ReleasePtr( wndPtr
);
261 wvrFlags
= SendMessageW( pWinpos
->hwnd
, WM_NCCALCSIZE
, TRUE
, (LPARAM
)¶ms
);
263 *pNewClientRect
= params
.rgrc
[0];
265 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
267 TRACE( "hwnd %p old win %s old client %s new win %s new client %s\n", pWinpos
->hwnd
,
268 wine_dbgstr_rect(&wndPtr
->rectWindow
), wine_dbgstr_rect(&wndPtr
->rectClient
),
269 wine_dbgstr_rect(pNewWindowRect
), wine_dbgstr_rect(pNewClientRect
) );
271 if( pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
272 pNewClientRect
->top
!= wndPtr
->rectClient
.top
)
273 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
275 if( (pNewClientRect
->right
- pNewClientRect
->left
!=
276 wndPtr
->rectClient
.right
- wndPtr
->rectClient
.left
))
277 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
279 wvrFlags
&= ~WVR_HREDRAW
;
281 if (pNewClientRect
->bottom
- pNewClientRect
->top
!=
282 wndPtr
->rectClient
.bottom
- wndPtr
->rectClient
.top
)
283 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
285 wvrFlags
&= ~WVR_VREDRAW
;
287 validRects
[0] = params
.rgrc
[1];
288 validRects
[1] = params
.rgrc
[2];
292 if (!(pWinpos
->flags
& SWP_NOMOVE
) &&
293 (pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
294 pNewClientRect
->top
!= wndPtr
->rectClient
.top
))
295 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
298 if (pWinpos
->flags
& (SWP_NOCOPYBITS
| SWP_NOREDRAW
| SWP_SHOWWINDOW
| SWP_HIDEWINDOW
))
300 SetRectEmpty( &validRects
[0] );
301 SetRectEmpty( &validRects
[1] );
303 else get_valid_rects( &wndPtr
->rectClient
, pNewClientRect
, wvrFlags
, validRects
);
305 WIN_ReleasePtr( wndPtr
);
310 struct move_owned_info
316 static BOOL CALLBACK
move_owned_popups( HWND hwnd
, LPARAM lparam
)
318 struct move_owned_info
*info
= (struct move_owned_info
*)lparam
;
320 if (hwnd
== info
->owner
) return FALSE
;
321 if ((GetWindowLongW( hwnd
, GWL_STYLE
) & WS_POPUP
) &&
322 GetWindow( hwnd
, GW_OWNER
) == info
->owner
)
324 SetWindowPos( hwnd
, info
->insert_after
, 0, 0, 0, 0,
325 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
|
326 SWP_NOSENDCHANGING
| SWP_DEFERERASE
);
327 info
->insert_after
= hwnd
;
332 /***********************************************************************
335 * fix Z order taking into account owned popups -
336 * basically we need to maintain them above the window that owns them
338 * FIXME: hide/show owned popups when owner visibility changes.
340 static HWND
SWP_DoOwnedPopups(HWND hwnd
, HWND hwndInsertAfter
)
342 HWND owner
= GetWindow( hwnd
, GW_OWNER
);
343 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
344 struct move_owned_info info
;
346 TRACE("(%p) hInsertAfter = %p\n", hwnd
, hwndInsertAfter
);
348 if ((style
& WS_POPUP
) && owner
)
350 /* make sure this popup stays above the owner */
352 if( hwndInsertAfter
!= HWND_TOP
)
354 HWND hwndLocalPrev
= HWND_TOP
;
355 HWND prev
= GetWindow( owner
, GW_HWNDPREV
);
357 while (prev
&& prev
!= hwndInsertAfter
)
359 if (hwndLocalPrev
== HWND_TOP
&& GetWindowLongW( prev
, GWL_STYLE
) & WS_VISIBLE
)
360 hwndLocalPrev
= prev
;
361 prev
= GetWindow( prev
, GW_HWNDPREV
);
363 if (!prev
) hwndInsertAfter
= hwndLocalPrev
;
366 else if (style
& WS_CHILD
) return hwndInsertAfter
;
369 info
.insert_after
= hwndInsertAfter
;
370 EnumWindows( move_owned_popups
, (LPARAM
)&info
);
371 return info
.insert_after
;
375 /* fix redundant flags and values in the WINDOWPOS structure */
376 static BOOL
fixup_flags( WINDOWPOS
*winpos
)
379 WND
*wndPtr
= WIN_GetPtr( winpos
->hwnd
);
382 if (!wndPtr
|| wndPtr
== WND_OTHER_PROCESS
)
384 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
387 winpos
->hwnd
= wndPtr
->hwndSelf
; /* make it a full handle */
389 /* Finally make sure that all coordinates are valid */
390 if (winpos
->x
< -32768) winpos
->x
= -32768;
391 else if (winpos
->x
> 32767) winpos
->x
= 32767;
392 if (winpos
->y
< -32768) winpos
->y
= -32768;
393 else if (winpos
->y
> 32767) winpos
->y
= 32767;
395 if (winpos
->cx
< 0) winpos
->cx
= 0;
396 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
397 if (winpos
->cy
< 0) winpos
->cy
= 0;
398 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
400 parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
401 if (!IsWindowVisible( parent
)) winpos
->flags
|= SWP_NOREDRAW
;
403 if (wndPtr
->dwStyle
& WS_VISIBLE
) winpos
->flags
&= ~SWP_SHOWWINDOW
;
406 winpos
->flags
&= ~SWP_HIDEWINDOW
;
407 if (!(winpos
->flags
& SWP_SHOWWINDOW
)) winpos
->flags
|= SWP_NOREDRAW
;
410 if ((wndPtr
->rectWindow
.right
- wndPtr
->rectWindow
.left
== winpos
->cx
) &&
411 (wndPtr
->rectWindow
.bottom
- wndPtr
->rectWindow
.top
== winpos
->cy
))
412 winpos
->flags
|= SWP_NOSIZE
; /* Already the right size */
414 if ((wndPtr
->rectWindow
.left
== winpos
->x
) && (wndPtr
->rectWindow
.top
== winpos
->y
))
415 winpos
->flags
|= SWP_NOMOVE
; /* Already the right position */
417 if ((wndPtr
->dwStyle
& (WS_POPUP
| WS_CHILD
)) != WS_CHILD
)
419 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
))) /* Bring to the top when activating */
421 winpos
->flags
&= ~SWP_NOZORDER
;
422 winpos
->hwndInsertAfter
= HWND_TOP
;
426 /* Check hwndInsertAfter */
427 if (winpos
->flags
& SWP_NOZORDER
) goto done
;
429 /* fix sign extension */
430 if (winpos
->hwndInsertAfter
== (HWND
)0xffff) winpos
->hwndInsertAfter
= HWND_TOPMOST
;
431 else if (winpos
->hwndInsertAfter
== (HWND
)0xfffe) winpos
->hwndInsertAfter
= HWND_NOTOPMOST
;
433 /* FIXME: TOPMOST not supported yet */
434 if ((winpos
->hwndInsertAfter
== HWND_TOPMOST
) ||
435 (winpos
->hwndInsertAfter
== HWND_NOTOPMOST
)) winpos
->hwndInsertAfter
= HWND_TOP
;
437 /* hwndInsertAfter must be a sibling of the window */
438 if (winpos
->hwndInsertAfter
== HWND_TOP
)
440 if (GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
441 winpos
->flags
|= SWP_NOZORDER
;
443 else if (winpos
->hwndInsertAfter
== HWND_BOTTOM
)
445 if (GetWindow(winpos
->hwnd
, GW_HWNDLAST
) == winpos
->hwnd
)
446 winpos
->flags
|= SWP_NOZORDER
;
450 if (GetAncestor( winpos
->hwndInsertAfter
, GA_PARENT
) != parent
) ret
= FALSE
;
453 /* don't need to change the Zorder of hwnd if it's already inserted
454 * after hwndInsertAfter or when inserting hwnd after itself.
456 if ((winpos
->hwnd
== winpos
->hwndInsertAfter
) ||
457 (winpos
->hwnd
== GetWindow( winpos
->hwndInsertAfter
, GW_HWNDNEXT
)))
458 winpos
->flags
|= SWP_NOZORDER
;
462 WIN_ReleasePtr( wndPtr
);
467 /***********************************************************************
468 * SetWindowStyle (X11DRV.@)
470 * Update the X state of a window to reflect a style change
472 void X11DRV_SetWindowStyle( HWND hwnd
, DWORD old_style
)
474 Display
*display
= thread_display();
475 struct x11drv_win_data
*data
;
476 DWORD new_style
, changed
;
478 if (hwnd
== GetDesktopWindow()) return;
479 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
481 new_style
= GetWindowLongW( hwnd
, GWL_STYLE
);
482 changed
= new_style
^ old_style
;
484 if (changed
& WS_VISIBLE
)
486 if (data
->whole_window
&& X11DRV_is_window_rect_mapped( &data
->window_rect
))
488 if (new_style
& WS_VISIBLE
)
490 TRACE( "mapping win %p\n", hwnd
);
491 X11DRV_sync_window_style( display
, data
);
492 X11DRV_set_wm_hints( display
, data
);
494 XMapWindow( display
, data
->whole_window
);
497 /* we don't unmap windows, that causes trouble with the window manager */
499 invalidate_dce( hwnd
, &data
->window_rect
);
502 if (changed
& WS_DISABLED
)
504 if (data
->whole_window
&& data
->managed
)
508 if (!(wm_hints
= XGetWMHints( display
, data
->whole_window
)))
509 wm_hints
= XAllocWMHints();
512 wm_hints
->flags
|= InputHint
;
513 wm_hints
->input
= !(new_style
& WS_DISABLED
);
514 XSetWMHints( display
, data
->whole_window
, wm_hints
);
523 /***********************************************************************
524 * X11DRV_set_window_pos
526 * Set a window position and Z order.
528 BOOL
X11DRV_set_window_pos( HWND hwnd
, HWND insert_after
, const RECT
*rectWindow
,
529 const RECT
*rectClient
, UINT swp_flags
, const RECT
*valid_rects
)
531 struct x11drv_win_data
*data
;
534 DWORD old_style
, new_style
;
537 if (!(data
= X11DRV_get_win_data( hwnd
))) return FALSE
;
539 new_whole_rect
= *rectWindow
;
540 X11DRV_window_to_X_rect( data
, &new_whole_rect
);
542 if (!IsRectEmpty( &valid_rects
[0] ))
544 int x_offset
= 0, y_offset
= 0;
546 if (data
->whole_window
)
548 /* the X server will move the bits for us */
549 x_offset
= data
->whole_rect
.left
- new_whole_rect
.left
;
550 y_offset
= data
->whole_rect
.top
- new_whole_rect
.top
;
553 if (x_offset
!= valid_rects
[1].left
- valid_rects
[0].left
||
554 y_offset
!= valid_rects
[1].top
- valid_rects
[0].top
)
556 /* FIXME: should copy the window bits here */
561 if (!(win
= WIN_GetPtr( hwnd
))) return FALSE
;
562 if (win
== WND_OTHER_PROCESS
)
564 if (IsWindow( hwnd
)) ERR( "cannot set rectangles of other process window %p\n", hwnd
);
567 SERVER_START_REQ( set_window_pos
)
570 req
->previous
= insert_after
;
571 req
->flags
= swp_flags
& ~SWP_WINE_NOHOSTMOVE
;
572 req
->window
.left
= rectWindow
->left
;
573 req
->window
.top
= rectWindow
->top
;
574 req
->window
.right
= rectWindow
->right
;
575 req
->window
.bottom
= rectWindow
->bottom
;
576 req
->client
.left
= rectClient
->left
;
577 req
->client
.top
= rectClient
->top
;
578 req
->client
.right
= rectClient
->right
;
579 req
->client
.bottom
= rectClient
->bottom
;
580 if (memcmp( rectWindow
, &new_whole_rect
, sizeof(RECT
) ) || !IsRectEmpty( &valid_rects
[0] ))
582 wine_server_add_data( req
, &new_whole_rect
, sizeof(new_whole_rect
) );
583 if (!IsRectEmpty( &valid_rects
[0] ))
584 wine_server_add_data( req
, valid_rects
, 2 * sizeof(*valid_rects
) );
586 ret
= !wine_server_call( req
);
587 new_style
= reply
->new_style
;
591 if (win
== WND_DESKTOP
) return ret
;
595 Display
*display
= thread_display();
597 /* invalidate DCEs */
599 if ((((swp_flags
& SWP_AGG_NOPOSCHANGE
) != SWP_AGG_NOPOSCHANGE
) && (new_style
& WS_VISIBLE
)) ||
600 (swp_flags
& (SWP_HIDEWINDOW
| SWP_SHOWWINDOW
)))
603 UnionRect( &rect
, rectWindow
, &win
->rectWindow
);
604 invalidate_dce( hwnd
, &rect
);
607 win
->rectWindow
= *rectWindow
;
608 win
->rectClient
= *rectClient
;
609 old_style
= win
->dwStyle
;
610 win
->dwStyle
= new_style
;
611 data
->window_rect
= *rectWindow
;
613 TRACE( "win %p window %s client %s style %08lx\n",
614 hwnd
, wine_dbgstr_rect(rectWindow
), wine_dbgstr_rect(rectClient
), new_style
);
616 /* FIXME: copy the valid bits */
618 if (data
->whole_window
&& !(swp_flags
& SWP_WINE_NOHOSTMOVE
))
620 if ((old_style
& WS_VISIBLE
) && !(new_style
& WS_VISIBLE
))
622 /* window got hidden, unmap it */
623 TRACE( "unmapping win %p\n", hwnd
);
625 XUnmapWindow( display
, data
->whole_window
);
628 else if ((new_style
& WS_VISIBLE
) && !X11DRV_is_window_rect_mapped( rectWindow
))
630 /* resizing to zero size or off screen -> unmap */
631 TRACE( "unmapping zero size or off-screen win %p\n", hwnd
);
633 XUnmapWindow( display
, data
->whole_window
);
638 X11DRV_sync_window_position( display
, data
, swp_flags
, rectClient
, &new_whole_rect
);
640 if (data
->whole_window
&& !(swp_flags
& SWP_WINE_NOHOSTMOVE
))
642 if (!(old_style
& WS_VISIBLE
) && (new_style
& WS_VISIBLE
))
644 /* window got shown, map it */
645 if (X11DRV_is_window_rect_mapped( rectWindow
))
647 TRACE( "mapping win %p\n", hwnd
);
648 X11DRV_sync_window_style( display
, data
);
649 X11DRV_set_wm_hints( display
, data
);
651 XMapWindow( display
, data
->whole_window
);
655 else if ((new_style
& WS_VISIBLE
) && X11DRV_is_window_rect_mapped( rectWindow
))
657 /* resizing from zero size to non-zero -> map */
658 TRACE( "mapping non zero size or off-screen win %p\n", hwnd
);
660 XMapWindow( display
, data
->whole_window
);
664 XFlush( display
); /* FIXME: should not be necessary */
668 WIN_ReleasePtr( win
);
673 /***********************************************************************
674 * SetWindowPos (X11DRV.@)
676 BOOL
X11DRV_SetWindowPos( WINDOWPOS
*winpos
)
678 RECT newWindowRect
, newClientRect
, valid_rects
[2];
681 TRACE( "hwnd %p, after %p, swp %d,%d %dx%d flags %08x\n",
682 winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->x
, winpos
->y
,
683 winpos
->cx
, winpos
->cy
, winpos
->flags
);
685 orig_flags
= winpos
->flags
;
686 winpos
->flags
&= ~SWP_WINE_NOHOSTMOVE
;
688 /* Check window handle */
689 if (winpos
->hwnd
== GetDesktopWindow()) return FALSE
;
691 /* First make sure that coordinates are valid for WM_WINDOWPOSCHANGING */
692 if (!(winpos
->flags
& SWP_NOMOVE
))
694 if (winpos
->x
< -32768) winpos
->x
= -32768;
695 else if (winpos
->x
> 32767) winpos
->x
= 32767;
696 if (winpos
->y
< -32768) winpos
->y
= -32768;
697 else if (winpos
->y
> 32767) winpos
->y
= 32767;
699 if (!(winpos
->flags
& SWP_NOSIZE
))
701 if (winpos
->cx
< 0) winpos
->cx
= 0;
702 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
703 if (winpos
->cy
< 0) winpos
->cy
= 0;
704 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
707 if (!SWP_DoWinPosChanging( winpos
, &newWindowRect
, &newClientRect
)) return FALSE
;
709 /* Fix redundant flags */
710 if (!fixup_flags( winpos
)) return FALSE
;
712 if((winpos
->flags
& (SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_SHOWWINDOW
)) != SWP_NOZORDER
)
714 if (GetAncestor( winpos
->hwnd
, GA_PARENT
) == GetDesktopWindow())
715 winpos
->hwndInsertAfter
= SWP_DoOwnedPopups( winpos
->hwnd
, winpos
->hwndInsertAfter
);
718 /* Common operations */
720 SWP_DoNCCalcSize( winpos
, &newWindowRect
, &newClientRect
, valid_rects
);
722 if (!X11DRV_set_window_pos( winpos
->hwnd
, winpos
->hwndInsertAfter
,
723 &newWindowRect
, &newClientRect
, orig_flags
, valid_rects
))
726 if( winpos
->flags
& SWP_HIDEWINDOW
)
727 HideCaret(winpos
->hwnd
);
728 else if (winpos
->flags
& SWP_SHOWWINDOW
)
729 ShowCaret(winpos
->hwnd
);
731 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)))
733 /* child windows get WM_CHILDACTIVATE message */
734 if ((GetWindowLongW( winpos
->hwnd
, GWL_STYLE
) & (WS_CHILD
| WS_POPUP
)) == WS_CHILD
)
735 SendMessageA( winpos
->hwnd
, WM_CHILDACTIVATE
, 0, 0 );
737 SetForegroundWindow( winpos
->hwnd
);
740 /* And last, send the WM_WINDOWPOSCHANGED message */
742 TRACE("\tstatus flags = %04x\n", winpos
->flags
& SWP_AGG_STATUSFLAGS
);
744 if (((winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOPOSCHANGE
))
746 /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
747 and always contains final window position.
749 winpos
->x
= newWindowRect
.left
;
750 winpos
->y
= newWindowRect
.top
;
751 winpos
->cx
= newWindowRect
.right
- newWindowRect
.left
;
752 winpos
->cy
= newWindowRect
.bottom
- newWindowRect
.top
;
753 SendMessageW( winpos
->hwnd
, WM_WINDOWPOSCHANGED
, 0, (LPARAM
)winpos
);
760 /***********************************************************************
763 * Find a suitable place for an iconic window.
765 static POINT
WINPOS_FindIconPos( HWND hwnd
, POINT pt
)
767 RECT rect
, rectParent
;
770 int xspacing
, yspacing
;
772 parent
= GetAncestor( hwnd
, GA_PARENT
);
773 GetClientRect( parent
, &rectParent
);
774 if ((pt
.x
>= rectParent
.left
) && (pt
.x
+ GetSystemMetrics(SM_CXICON
) < rectParent
.right
) &&
775 (pt
.y
>= rectParent
.top
) && (pt
.y
+ GetSystemMetrics(SM_CYICON
) < rectParent
.bottom
))
776 return pt
; /* The icon already has a suitable position */
778 xspacing
= GetSystemMetrics(SM_CXICONSPACING
);
779 yspacing
= GetSystemMetrics(SM_CYICONSPACING
);
781 /* Check if another icon already occupies this spot */
782 /* FIXME: this is completely inefficient */
784 hrgn
= CreateRectRgn( 0, 0, 0, 0 );
785 tmp
= CreateRectRgn( 0, 0, 0, 0 );
786 for (child
= GetWindow( parent
, GW_HWNDFIRST
); child
; child
= GetWindow( child
, GW_HWNDNEXT
))
789 if (child
== hwnd
) continue;
790 if ((GetWindowLongW( child
, GWL_STYLE
) & (WS_VISIBLE
|WS_MINIMIZE
)) != (WS_VISIBLE
|WS_MINIMIZE
))
792 if (!(childPtr
= WIN_GetPtr( child
)) || childPtr
== WND_OTHER_PROCESS
)
794 SetRectRgn( tmp
, childPtr
->rectWindow
.left
, childPtr
->rectWindow
.top
,
795 childPtr
->rectWindow
.right
, childPtr
->rectWindow
.bottom
);
796 CombineRgn( hrgn
, hrgn
, tmp
, RGN_OR
);
797 WIN_ReleasePtr( childPtr
);
801 for (rect
.bottom
= rectParent
.bottom
; rect
.bottom
>= yspacing
; rect
.bottom
-= yspacing
)
803 for (rect
.left
= rectParent
.left
; rect
.left
<= rectParent
.right
- xspacing
; rect
.left
+= xspacing
)
805 rect
.right
= rect
.left
+ xspacing
;
806 rect
.top
= rect
.bottom
- yspacing
;
807 if (!RectInRegion( hrgn
, &rect
))
809 /* No window was found, so it's OK for us */
810 pt
.x
= rect
.left
+ (xspacing
- GetSystemMetrics(SM_CXICON
)) / 2;
811 pt
.y
= rect
.top
+ (yspacing
- GetSystemMetrics(SM_CYICON
)) / 2;
812 DeleteObject( hrgn
);
817 DeleteObject( hrgn
);
826 UINT
WINPOS_MinMaximize( HWND hwnd
, UINT cmd
, LPRECT rect
)
834 TRACE("%p %u\n", hwnd
, cmd
);
836 wpl
.length
= sizeof(wpl
);
837 GetWindowPlacement( hwnd
, &wpl
);
839 if (HOOK_CallHooks( WH_CBT
, HCBT_MINMAX
, (WPARAM
)hwnd
, cmd
, TRUE
))
840 return SWP_NOSIZE
| SWP_NOMOVE
;
842 if (IsIconic( hwnd
))
844 if (cmd
== SW_MINIMIZE
) return SWP_NOSIZE
| SWP_NOMOVE
;
845 if (!SendMessageW( hwnd
, WM_QUERYOPEN
, 0, 0 )) return SWP_NOSIZE
| SWP_NOMOVE
;
846 swpFlags
|= SWP_NOCOPYBITS
;
852 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
853 if( wndPtr
->dwStyle
& WS_MAXIMIZE
) wndPtr
->flags
|= WIN_RESTORE_MAX
;
854 else wndPtr
->flags
&= ~WIN_RESTORE_MAX
;
855 WIN_ReleasePtr( wndPtr
);
857 WIN_SetStyle( hwnd
, WS_MINIMIZE
, WS_MAXIMIZE
);
859 X11DRV_set_iconic_state( hwnd
);
861 wpl
.ptMinPosition
= WINPOS_FindIconPos( hwnd
, wpl
.ptMinPosition
);
863 SetRect( rect
, wpl
.ptMinPosition
.x
, wpl
.ptMinPosition
.y
,
864 GetSystemMetrics(SM_CXICON
), GetSystemMetrics(SM_CYICON
) );
865 swpFlags
|= SWP_NOCOPYBITS
;
869 WINPOS_GetMinMaxInfo( hwnd
, &size
, &wpl
.ptMaxPosition
, NULL
, NULL
);
871 old_style
= WIN_SetStyle( hwnd
, WS_MAXIMIZE
, WS_MINIMIZE
);
872 if (old_style
& WS_MINIMIZE
)
874 WINPOS_ShowIconTitle( hwnd
, FALSE
);
875 X11DRV_set_iconic_state( hwnd
);
877 SetRect( rect
, wpl
.ptMaxPosition
.x
, wpl
.ptMaxPosition
.y
, size
.x
, size
.y
);
881 old_style
= WIN_SetStyle( hwnd
, 0, WS_MINIMIZE
| WS_MAXIMIZE
);
882 if (old_style
& WS_MINIMIZE
)
886 WINPOS_ShowIconTitle( hwnd
, FALSE
);
887 X11DRV_set_iconic_state( hwnd
);
889 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
890 restore_max
= (wndPtr
->flags
& WIN_RESTORE_MAX
) != 0;
891 WIN_ReleasePtr( wndPtr
);
894 /* Restore to maximized position */
895 WINPOS_GetMinMaxInfo( hwnd
, &size
, &wpl
.ptMaxPosition
, NULL
, NULL
);
896 WIN_SetStyle( hwnd
, WS_MAXIMIZE
, 0 );
897 SetRect( rect
, wpl
.ptMaxPosition
.x
, wpl
.ptMaxPosition
.y
, size
.x
, size
.y
);
901 else if (!(old_style
& WS_MAXIMIZE
)) break;
903 /* Restore to normal position */
905 *rect
= wpl
.rcNormalPosition
;
906 rect
->right
-= rect
->left
;
907 rect
->bottom
-= rect
->top
;
916 /***********************************************************************
917 * ShowWindow (X11DRV.@)
919 BOOL
X11DRV_ShowWindow( HWND hwnd
, INT cmd
)
922 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
923 BOOL wasVisible
= (style
& WS_VISIBLE
) != 0;
924 BOOL showFlag
= TRUE
;
925 RECT newPos
= {0, 0, 0, 0};
928 if (hwnd
== GetDesktopWindow()) return FALSE
;
930 TRACE("hwnd=%p, cmd=%d, wasVisible %d\n", hwnd
, cmd
, wasVisible
);
935 if (!wasVisible
) return FALSE
;
937 swp
|= SWP_HIDEWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOZORDER
;
940 case SW_SHOWMINNOACTIVE
:
941 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
943 case SW_SHOWMINIMIZED
:
944 case SW_FORCEMINIMIZE
: /* FIXME: Does not work if thread is hung. */
945 swp
|= SWP_SHOWWINDOW
;
948 swp
|= SWP_FRAMECHANGED
;
949 if( !(style
& WS_MINIMIZE
) )
950 swp
|= WINPOS_MinMaximize( hwnd
, SW_MINIMIZE
, &newPos
);
951 else swp
|= SWP_NOSIZE
| SWP_NOMOVE
;
954 case SW_SHOWMAXIMIZED
: /* same as SW_MAXIMIZE */
955 swp
|= SWP_SHOWWINDOW
| SWP_FRAMECHANGED
;
956 if( !(style
& WS_MAXIMIZE
) )
957 swp
|= WINPOS_MinMaximize( hwnd
, SW_MAXIMIZE
, &newPos
);
958 else swp
|= SWP_NOSIZE
| SWP_NOMOVE
;
962 swp
|= SWP_NOACTIVATE
| SWP_SHOWWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
963 if (style
& WS_CHILD
) swp
|= SWP_NOZORDER
;
966 if (wasVisible
) return TRUE
;
967 swp
|= SWP_SHOWWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
971 swp
|= SWP_FRAMECHANGED
;
973 case SW_SHOWNOACTIVATE
:
974 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
976 case SW_SHOWNORMAL
: /* same as SW_NORMAL: */
977 case SW_SHOWDEFAULT
: /* FIXME: should have its own handler */
978 swp
|= SWP_SHOWWINDOW
;
980 if (style
& (WS_MINIMIZE
| WS_MAXIMIZE
))
981 swp
|= WINPOS_MinMaximize( hwnd
, SW_RESTORE
, &newPos
);
982 else swp
|= SWP_NOSIZE
| SWP_NOMOVE
;
986 if (showFlag
!= wasVisible
|| cmd
== SW_SHOWNA
)
988 SendMessageW( hwnd
, WM_SHOWWINDOW
, showFlag
, 0 );
989 if (!IsWindow( hwnd
)) return wasVisible
;
992 /* ShowWindow won't activate a not being maximized child window */
993 if ((style
& WS_CHILD
) && cmd
!= SW_MAXIMIZE
)
994 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
996 SetWindowPos( hwnd
, HWND_TOP
, newPos
.left
, newPos
.top
,
997 newPos
.right
, newPos
.bottom
, LOWORD(swp
) );
1002 /* FIXME: This will cause the window to be activated irrespective
1003 * of whether it is owned by the same thread. Has to be done
1007 if (hwnd
== GetActiveWindow())
1008 WINPOS_ActivateOtherWindow(hwnd
);
1010 /* Revert focus to parent */
1011 hFocus
= GetFocus();
1012 if (hwnd
== hFocus
|| IsChild(hwnd
, hFocus
))
1014 HWND parent
= GetAncestor(hwnd
, GA_PARENT
);
1015 if (parent
== GetDesktopWindow()) parent
= 0;
1020 if (IsIconic(hwnd
)) WINPOS_ShowIconTitle( hwnd
, TRUE
);
1022 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return wasVisible
;
1024 if (wndPtr
->flags
& WIN_NEED_SIZE
)
1026 /* should happen only in CreateWindowEx() */
1027 int wParam
= SIZE_RESTORED
;
1028 RECT client
= wndPtr
->rectClient
;
1030 wndPtr
->flags
&= ~WIN_NEED_SIZE
;
1031 if (wndPtr
->dwStyle
& WS_MAXIMIZE
) wParam
= SIZE_MAXIMIZED
;
1032 else if (wndPtr
->dwStyle
& WS_MINIMIZE
) wParam
= SIZE_MINIMIZED
;
1033 WIN_ReleasePtr( wndPtr
);
1035 SendMessageW( hwnd
, WM_SIZE
, wParam
,
1036 MAKELONG( client
.right
- client
.left
, client
.bottom
- client
.top
));
1037 SendMessageW( hwnd
, WM_MOVE
, 0, MAKELONG( client
.left
, client
.top
));
1039 else WIN_ReleasePtr( wndPtr
);
1045 /**********************************************************************
1048 void X11DRV_MapNotify( HWND hwnd
, XEvent
*event
)
1050 struct x11drv_win_data
*data
;
1051 HWND hwndFocus
= GetFocus();
1054 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1056 if (!(win
= WIN_GetPtr( hwnd
))) return;
1058 if (data
->managed
&& (win
->dwStyle
& WS_VISIBLE
) && (win
->dwStyle
& WS_MINIMIZE
))
1061 unsigned int width
, height
, border
, depth
;
1064 LONG style
= WS_VISIBLE
;
1068 XGetGeometry( event
->xmap
.display
, data
->whole_window
, &root
, &x
, &y
, &width
, &height
,
1070 XTranslateCoordinates( event
->xmap
.display
, data
->whole_window
, root
, 0, 0, &x
, &y
, &top
);
1071 wine_tsx11_unlock();
1074 rect
.right
= x
+ width
;
1075 rect
.bottom
= y
+ height
;
1076 X11DRV_X_to_window_rect( data
, &rect
);
1078 invalidate_dce( hwnd
, &data
->window_rect
);
1080 if (win
->flags
& WIN_RESTORE_MAX
) style
|= WS_MAXIMIZE
;
1081 WIN_SetStyle( hwnd
, style
, WS_MINIMIZE
);
1082 WIN_ReleasePtr( win
);
1084 SendMessageA( hwnd
, WM_SHOWWINDOW
, SW_RESTORE
, 0 );
1085 SetWindowPos( hwnd
, 0, rect
.left
, rect
.top
, rect
.right
-rect
.left
, rect
.bottom
-rect
.top
,
1086 SWP_NOZORDER
| SWP_WINE_NOHOSTMOVE
);
1088 else WIN_ReleasePtr( win
);
1089 if (hwndFocus
&& IsChild( hwnd
, hwndFocus
)) X11DRV_SetFocus(hwndFocus
); /* FIXME */
1093 /**********************************************************************
1094 * X11DRV_UnmapNotify
1096 void X11DRV_UnmapNotify( HWND hwnd
, XEvent
*event
)
1098 struct x11drv_win_data
*data
;
1101 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1103 if (!(win
= WIN_GetPtr( hwnd
))) return;
1105 if ((win
->dwStyle
& WS_VISIBLE
) && data
->managed
&&
1106 X11DRV_is_window_rect_mapped( &win
->rectWindow
))
1108 if (win
->dwStyle
& WS_MAXIMIZE
)
1109 win
->flags
|= WIN_RESTORE_MAX
;
1111 win
->flags
&= ~WIN_RESTORE_MAX
;
1113 WIN_SetStyle( hwnd
, WS_MINIMIZE
, WS_MAXIMIZE
);
1114 WIN_ReleasePtr( win
);
1117 SendMessageA( hwnd
, WM_SHOWWINDOW
, SW_MINIMIZE
, 0 );
1118 SetWindowPos( hwnd
, 0, 0, 0, GetSystemMetrics(SM_CXICON
), GetSystemMetrics(SM_CYICON
),
1119 SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_WINE_NOHOSTMOVE
);
1121 else WIN_ReleasePtr( win
);
1125 /***********************************************************************
1126 * X11DRV_handle_desktop_resize
1128 void X11DRV_handle_desktop_resize( unsigned int width
, unsigned int height
)
1131 HWND hwnd
= GetDesktopWindow();
1133 screen_width
= width
;
1134 screen_height
= height
;
1135 TRACE("desktop %p change to (%dx%d)\n", hwnd
, width
, height
);
1136 SetRect( &rect
, 0, 0, width
, height
);
1137 X11DRV_set_window_pos( hwnd
, 0, &rect
, &rect
, SWP_NOZORDER
|SWP_NOMOVE
|SWP_WINE_NOHOSTMOVE
, NULL
);
1138 SendMessageTimeoutW( HWND_BROADCAST
, WM_DISPLAYCHANGE
, screen_depth
,
1139 MAKELPARAM( width
, height
), SMTO_ABORTIFHUNG
, 2000, NULL
);
1143 /***********************************************************************
1144 * X11DRV_ConfigureNotify
1146 void X11DRV_ConfigureNotify( HWND hwnd
, XEvent
*xev
)
1148 XConfigureEvent
*event
= &xev
->xconfigure
;
1149 struct x11drv_win_data
*data
;
1152 int cx
, cy
, x
= event
->x
, y
= event
->y
;
1155 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1159 if (!event
->send_event
) /* normal event, need to map coordinates to the root */
1163 XTranslateCoordinates( event
->display
, data
->whole_window
, root_window
,
1164 0, 0, &x
, &y
, &child
);
1165 wine_tsx11_unlock();
1169 rect
.right
= x
+ event
->width
;
1170 rect
.bottom
= y
+ event
->height
;
1171 TRACE( "win %p new X rect %ld,%ld,%ldx%ld (event %d,%d,%dx%d)\n",
1172 hwnd
, rect
.left
, rect
.top
, rect
.right
-rect
.left
, rect
.bottom
-rect
.top
,
1173 event
->x
, event
->y
, event
->width
, event
->height
);
1174 X11DRV_X_to_window_rect( data
, &rect
);
1178 cx
= rect
.right
- rect
.left
;
1179 cy
= rect
.bottom
- rect
.top
;
1180 flags
= SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_WINE_NOHOSTMOVE
;
1182 /* Compare what has changed */
1184 GetWindowRect( hwnd
, &rect
);
1185 if (rect
.left
== x
&& rect
.top
== y
) flags
|= SWP_NOMOVE
;
1187 TRACE( "%p moving from (%ld,%ld) to (%d,%d)\n",
1188 hwnd
, rect
.left
, rect
.top
, x
, y
);
1190 if ((rect
.right
- rect
.left
== cx
&& rect
.bottom
- rect
.top
== cy
) ||
1192 (IsRectEmpty( &rect
) && cx
== 1 && cy
== 1))
1194 if (flags
& SWP_NOMOVE
) return; /* if nothing changed, don't do anything */
1195 flags
|= SWP_NOSIZE
;
1198 TRACE( "%p resizing from (%ldx%ld) to (%dx%d)\n",
1199 hwnd
, rect
.right
- rect
.left
, rect
.bottom
- rect
.top
, cx
, cy
);
1201 SetWindowPos( hwnd
, 0, x
, y
, cx
, cy
, flags
);
1205 /***********************************************************************
1206 * SetWindowRgn (X11DRV.@)
1208 * Assign specified region to window (for non-rectangular windows)
1210 int X11DRV_SetWindowRgn( HWND hwnd
, HRGN hrgn
, BOOL redraw
)
1212 struct x11drv_win_data
*data
;
1214 if (!(data
= X11DRV_get_win_data( hwnd
)))
1216 if (IsWindow( hwnd
))
1217 FIXME( "not supported on other thread window %p\n", hwnd
);
1218 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1222 #ifdef HAVE_LIBXSHAPE
1223 if (data
->whole_window
)
1225 Display
*display
= thread_display();
1230 XShapeCombineMask( display
, data
->whole_window
,
1231 ShapeBounding
, 0, 0, None
, ShapeSet
);
1232 wine_tsx11_unlock();
1236 RGNDATA
*pRegionData
= X11DRV_GetRegionData( hrgn
, 0 );
1240 XShapeCombineRectangles( display
, data
->whole_window
, ShapeBounding
,
1241 data
->window_rect
.left
- data
->whole_rect
.left
,
1242 data
->window_rect
.top
- data
->whole_rect
.top
,
1243 (XRectangle
*)pRegionData
->Buffer
,
1244 pRegionData
->rdh
.nCount
,
1245 ShapeSet
, YXBanded
);
1246 wine_tsx11_unlock();
1247 HeapFree(GetProcessHeap(), 0, pRegionData
);
1251 #endif /* HAVE_LIBXSHAPE */
1257 /***********************************************************************
1260 * Draw the frame used when moving or resizing window.
1262 * FIXME: This causes problems in Win95 mode. (why?)
1264 static void draw_moving_frame( HDC hdc
, RECT
*rect
, BOOL thickframe
)
1268 const int width
= GetSystemMetrics(SM_CXFRAME
);
1269 const int height
= GetSystemMetrics(SM_CYFRAME
);
1271 HBRUSH hbrush
= SelectObject( hdc
, GetStockObject( GRAY_BRUSH
) );
1272 PatBlt( hdc
, rect
->left
, rect
->top
,
1273 rect
->right
- rect
->left
- width
, height
, PATINVERT
);
1274 PatBlt( hdc
, rect
->left
, rect
->top
+ height
, width
,
1275 rect
->bottom
- rect
->top
- height
, PATINVERT
);
1276 PatBlt( hdc
, rect
->left
+ width
, rect
->bottom
- 1,
1277 rect
->right
- rect
->left
- width
, -height
, PATINVERT
);
1278 PatBlt( hdc
, rect
->right
- 1, rect
->top
, -width
,
1279 rect
->bottom
- rect
->top
- height
, PATINVERT
);
1280 SelectObject( hdc
, hbrush
);
1282 else DrawFocusRect( hdc
, rect
);
1286 /***********************************************************************
1289 * Initialisation of a move or resize, when initiatied from a menu choice.
1290 * Return hit test code for caption or sizing border.
1292 static LONG
start_size_move( HWND hwnd
, WPARAM wParam
, POINT
*capturePoint
, LONG style
)
1299 GetWindowRect( hwnd
, &rectWindow
);
1301 if ((wParam
& 0xfff0) == SC_MOVE
)
1303 /* Move pointer at the center of the caption */
1304 RECT rect
= rectWindow
;
1305 /* Note: to be exactly centered we should take the different types
1306 * of border into account, but it shouldn't make more that a few pixels
1307 * of difference so let's not bother with that */
1308 rect
.top
+= GetSystemMetrics(SM_CYBORDER
);
1309 if (style
& WS_SYSMENU
)
1310 rect
.left
+= GetSystemMetrics(SM_CXSIZE
) + 1;
1311 if (style
& WS_MINIMIZEBOX
)
1312 rect
.right
-= GetSystemMetrics(SM_CXSIZE
) + 1;
1313 if (style
& WS_MAXIMIZEBOX
)
1314 rect
.right
-= GetSystemMetrics(SM_CXSIZE
) + 1;
1315 pt
.x
= (rect
.right
+ rect
.left
) / 2;
1316 pt
.y
= rect
.top
+ GetSystemMetrics(SM_CYSIZE
)/2;
1317 hittest
= HTCAPTION
;
1325 GetMessageW( &msg
, 0, WM_KEYFIRST
, WM_MOUSELAST
);
1326 if (CallMsgFilterW( &msg
, MSGF_SIZE
)) continue;
1332 hittest
= SendMessageW( hwnd
, WM_NCHITTEST
, 0, MAKELONG( pt
.x
, pt
.y
) );
1333 if ((hittest
< HTLEFT
) || (hittest
> HTBOTTOMRIGHT
)) hittest
= 0;
1344 pt
.x
=(rectWindow
.left
+rectWindow
.right
)/2;
1345 pt
.y
= rectWindow
.top
+ GetSystemMetrics(SM_CYFRAME
) / 2;
1349 pt
.x
=(rectWindow
.left
+rectWindow
.right
)/2;
1350 pt
.y
= rectWindow
.bottom
- GetSystemMetrics(SM_CYFRAME
) / 2;
1354 pt
.x
= rectWindow
.left
+ GetSystemMetrics(SM_CXFRAME
) / 2;
1355 pt
.y
=(rectWindow
.top
+rectWindow
.bottom
)/2;
1359 pt
.x
= rectWindow
.right
- GetSystemMetrics(SM_CXFRAME
) / 2;
1360 pt
.y
=(rectWindow
.top
+rectWindow
.bottom
)/2;
1363 case VK_ESCAPE
: return 0;
1369 SetCursorPos( pt
.x
, pt
.y
);
1370 SendMessageW( hwnd
, WM_SETCURSOR
, (WPARAM
)hwnd
, MAKELONG( hittest
, WM_MOUSEMOVE
));
1375 /***********************************************************************
1376 * set_movesize_capture
1378 static void set_movesize_capture( HWND hwnd
)
1382 SERVER_START_REQ( set_capture_window
)
1385 req
->flags
= CAPTURE_MOVESIZE
;
1386 if (!wine_server_call_err( req
))
1388 previous
= reply
->previous
;
1389 hwnd
= reply
->full_handle
;
1393 if (previous
&& previous
!= hwnd
)
1394 SendMessageW( previous
, WM_CAPTURECHANGED
, 0, (LPARAM
)hwnd
);
1397 /***********************************************************************
1398 * X11DRV_WMMoveResizeWindow
1400 * Tells the window manager to initiate a move or resize operation.
1403 * http://freedesktop.org/Standards/wm-spec/1.3/ar01s04.html
1404 * or search for "_NET_WM_MOVERESIZE"
1406 static void X11DRV_WMMoveResizeWindow( HWND hwnd
, int x
, int y
, int dir
)
1409 Display
*display
= thread_display();
1411 xev
.xclient
.type
= ClientMessage
;
1412 xev
.xclient
.window
= X11DRV_get_whole_window(hwnd
);
1413 xev
.xclient
.message_type
= x11drv_atom(_NET_WM_MOVERESIZE
);
1414 xev
.xclient
.serial
= 0;
1415 xev
.xclient
.display
= display
;
1416 xev
.xclient
.send_event
= True
;
1417 xev
.xclient
.format
= 32;
1418 xev
.xclient
.data
.l
[0] = x
; /* x coord */
1419 xev
.xclient
.data
.l
[1] = y
; /* y coord */
1420 xev
.xclient
.data
.l
[2] = dir
; /* direction */
1421 xev
.xclient
.data
.l
[3] = 1; /* button */
1422 xev
.xclient
.data
.l
[4] = 0; /* unused */
1424 /* need to ungrab the pointer that may have been automatically grabbed
1425 * with a ButtonPress event */
1427 XUngrabPointer( display
, CurrentTime
);
1428 XSendEvent(display
, root_window
, False
, SubstructureNotifyMask
, &xev
);
1429 wine_tsx11_unlock();
1432 /***********************************************************************
1433 * SysCommandSizeMove (X11DRV.@)
1435 * Perform SC_MOVE and SC_SIZE commands.
1437 void X11DRV_SysCommandSizeMove( HWND hwnd
, WPARAM wParam
)
1440 RECT sizingRect
, mouseRect
, origRect
;
1443 LONG hittest
= (LONG
)(wParam
& 0x0f);
1444 WPARAM syscommand
= wParam
& 0xfff0;
1445 HCURSOR hDragCursor
= 0, hOldCursor
= 0;
1446 POINT minTrack
, maxTrack
;
1447 POINT capturePoint
, pt
;
1448 LONG style
= GetWindowLongA( hwnd
, GWL_STYLE
);
1449 BOOL thickframe
= HAS_THICKFRAME( style
);
1450 BOOL iconic
= style
& WS_MINIMIZE
;
1452 DWORD dwPoint
= GetMessagePos ();
1453 BOOL DragFullWindows
= FALSE
;
1455 Window parent_win
, whole_win
;
1456 Display
*old_gdi_display
= NULL
;
1457 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
1458 struct x11drv_win_data
*data
;
1460 pt
.x
= (short)LOWORD(dwPoint
);
1461 pt
.y
= (short)HIWORD(dwPoint
);
1464 if (IsZoomed(hwnd
) || !IsWindowVisible(hwnd
)) return;
1466 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1468 /* if we are managed then we let the WM do all the work */
1472 if (syscommand
== SC_MOVE
)
1474 if (!hittest
) dir
= _NET_WM_MOVERESIZE_MOVE_KEYBOARD
;
1475 else dir
= _NET_WM_MOVERESIZE_MOVE
;
1477 else if (!hittest
) dir
= _NET_WM_MOVERESIZE_SIZE_KEYBOARD
;
1481 case WMSZ_LEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_LEFT
; break;
1482 case WMSZ_RIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_RIGHT
; break;
1483 case WMSZ_TOP
: dir
= _NET_WM_MOVERESIZE_SIZE_TOP
; break;
1484 case WMSZ_TOPLEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_TOPLEFT
; break;
1485 case WMSZ_TOPRIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_TOPRIGHT
; break;
1486 case WMSZ_BOTTOM
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOM
; break;
1487 case WMSZ_BOTTOMLEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT
; break;
1488 case WMSZ_BOTTOMRIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT
; break;
1490 ERR("Invalid hittest value: %ld\n", hittest
);
1491 dir
= _NET_WM_MOVERESIZE_SIZE_KEYBOARD
;
1493 X11DRV_WMMoveResizeWindow( hwnd
, pt
.x
, pt
.y
, dir
);
1497 SystemParametersInfoA(SPI_GETDRAGFULLWINDOWS
, 0, &DragFullWindows
, 0);
1499 if (syscommand
== SC_MOVE
)
1501 if (!hittest
) hittest
= start_size_move( hwnd
, wParam
, &capturePoint
, style
);
1502 if (!hittest
) return;
1506 if ( hittest
&& (syscommand
!= SC_MOUSEMENU
) )
1507 hittest
+= (HTLEFT
- WMSZ_LEFT
);
1510 set_movesize_capture( hwnd
);
1511 hittest
= start_size_move( hwnd
, wParam
, &capturePoint
, style
);
1514 set_movesize_capture(0);
1520 /* Get min/max info */
1522 WINPOS_GetMinMaxInfo( hwnd
, NULL
, NULL
, &minTrack
, &maxTrack
);
1523 GetWindowRect( hwnd
, &sizingRect
);
1524 if (style
& WS_CHILD
)
1526 parent
= GetParent(hwnd
);
1527 /* make sizing rect relative to parent */
1528 MapWindowPoints( 0, parent
, (POINT
*)&sizingRect
, 2 );
1529 GetClientRect( parent
, &mouseRect
);
1534 SetRect(&mouseRect
, 0, 0, GetSystemMetrics(SM_CXSCREEN
), GetSystemMetrics(SM_CYSCREEN
));
1536 origRect
= sizingRect
;
1538 if (ON_LEFT_BORDER(hittest
))
1540 mouseRect
.left
= max( mouseRect
.left
, sizingRect
.right
-maxTrack
.x
);
1541 mouseRect
.right
= min( mouseRect
.right
, sizingRect
.right
-minTrack
.x
);
1543 else if (ON_RIGHT_BORDER(hittest
))
1545 mouseRect
.left
= max( mouseRect
.left
, sizingRect
.left
+minTrack
.x
);
1546 mouseRect
.right
= min( mouseRect
.right
, sizingRect
.left
+maxTrack
.x
);
1548 if (ON_TOP_BORDER(hittest
))
1550 mouseRect
.top
= max( mouseRect
.top
, sizingRect
.bottom
-maxTrack
.y
);
1551 mouseRect
.bottom
= min( mouseRect
.bottom
,sizingRect
.bottom
-minTrack
.y
);
1553 else if (ON_BOTTOM_BORDER(hittest
))
1555 mouseRect
.top
= max( mouseRect
.top
, sizingRect
.top
+minTrack
.y
);
1556 mouseRect
.bottom
= min( mouseRect
.bottom
, sizingRect
.top
+maxTrack
.y
);
1558 if (parent
) MapWindowPoints( parent
, 0, (LPPOINT
)&mouseRect
, 2 );
1560 /* Retrieve a default cache DC (without using the window style) */
1561 hdc
= GetDCEx( parent
, 0, DCX_CACHE
);
1563 if( iconic
) /* create a cursor for dragging */
1565 hDragCursor
= (HCURSOR
)GetClassLongPtrW( hwnd
, GCLP_HICON
);
1566 if( !hDragCursor
) hDragCursor
= (HCURSOR
)SendMessageW( hwnd
, WM_QUERYDRAGICON
, 0, 0L);
1567 if( !hDragCursor
) iconic
= FALSE
;
1570 /* repaint the window before moving it around */
1571 RedrawWindow( hwnd
, NULL
, 0, RDW_UPDATENOW
| RDW_ALLCHILDREN
);
1573 SendMessageA( hwnd
, WM_ENTERSIZEMOVE
, 0, 0 );
1574 set_movesize_capture( hwnd
);
1576 /* grab the server only when moving top-level windows without desktop */
1577 grab
= (!DragFullWindows
&& !parent
&& (root_window
== DefaultRootWindow(gdi_display
)));
1582 XSync( gdi_display
, False
);
1583 XGrabServer( thread_data
->display
);
1584 XSync( thread_data
->display
, False
);
1585 /* switch gdi display to the thread display, since the server is grabbed */
1586 old_gdi_display
= gdi_display
;
1587 gdi_display
= thread_data
->display
;
1588 wine_tsx11_unlock();
1590 whole_win
= X11DRV_get_whole_window( GetAncestor(hwnd
,GA_ROOT
) );
1591 parent_win
= parent
? X11DRV_get_whole_window( GetAncestor(parent
,GA_ROOT
) ) : root_window
;
1594 XGrabPointer( thread_data
->display
, whole_win
, False
,
1595 PointerMotionMask
| ButtonPressMask
| ButtonReleaseMask
,
1596 GrabModeAsync
, GrabModeAsync
, parent_win
, None
, CurrentTime
);
1597 wine_tsx11_unlock();
1598 thread_data
->grab_window
= whole_win
;
1604 if (!GetMessageW( &msg
, 0, WM_KEYFIRST
, WM_MOUSELAST
)) break;
1605 if (CallMsgFilterW( &msg
, MSGF_SIZE
)) continue;
1607 /* Exit on button-up, Return, or Esc */
1608 if ((msg
.message
== WM_LBUTTONUP
) ||
1609 ((msg
.message
== WM_KEYDOWN
) &&
1610 ((msg
.wParam
== VK_RETURN
) || (msg
.wParam
== VK_ESCAPE
)))) break;
1612 if ((msg
.message
!= WM_KEYDOWN
) && (msg
.message
!= WM_MOUSEMOVE
))
1613 continue; /* We are not interested in other messages */
1617 if (msg
.message
== WM_KEYDOWN
) switch(msg
.wParam
)
1619 case VK_UP
: pt
.y
-= 8; break;
1620 case VK_DOWN
: pt
.y
+= 8; break;
1621 case VK_LEFT
: pt
.x
-= 8; break;
1622 case VK_RIGHT
: pt
.x
+= 8; break;
1625 pt
.x
= max( pt
.x
, mouseRect
.left
);
1626 pt
.x
= min( pt
.x
, mouseRect
.right
);
1627 pt
.y
= max( pt
.y
, mouseRect
.top
);
1628 pt
.y
= min( pt
.y
, mouseRect
.bottom
);
1630 dx
= pt
.x
- capturePoint
.x
;
1631 dy
= pt
.y
- capturePoint
.y
;
1639 if( iconic
) /* ok, no system popup tracking */
1641 hOldCursor
= SetCursor(hDragCursor
);
1643 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1645 else if(!DragFullWindows
)
1646 draw_moving_frame( hdc
, &sizingRect
, thickframe
);
1649 if (msg
.message
== WM_KEYDOWN
) SetCursorPos( pt
.x
, pt
.y
);
1652 RECT newRect
= sizingRect
;
1653 WPARAM wpSizingHit
= 0;
1655 if (hittest
== HTCAPTION
) OffsetRect( &newRect
, dx
, dy
);
1656 if (ON_LEFT_BORDER(hittest
)) newRect
.left
+= dx
;
1657 else if (ON_RIGHT_BORDER(hittest
)) newRect
.right
+= dx
;
1658 if (ON_TOP_BORDER(hittest
)) newRect
.top
+= dy
;
1659 else if (ON_BOTTOM_BORDER(hittest
)) newRect
.bottom
+= dy
;
1660 if(!iconic
&& !DragFullWindows
) draw_moving_frame( hdc
, &sizingRect
, thickframe
);
1663 /* determine the hit location */
1664 if (hittest
>= HTLEFT
&& hittest
<= HTBOTTOMRIGHT
)
1665 wpSizingHit
= WMSZ_LEFT
+ (hittest
- HTLEFT
);
1666 SendMessageA( hwnd
, WM_SIZING
, wpSizingHit
, (LPARAM
)&newRect
);
1670 if(!DragFullWindows
)
1671 draw_moving_frame( hdc
, &newRect
, thickframe
);
1673 SetWindowPos( hwnd
, 0, newRect
.left
, newRect
.top
,
1674 newRect
.right
- newRect
.left
,
1675 newRect
.bottom
- newRect
.top
,
1676 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
1678 sizingRect
= newRect
;
1683 set_movesize_capture(0);
1686 if( moved
) /* restore cursors, show icon title later on */
1688 ShowCursor( FALSE
);
1689 SetCursor( hOldCursor
);
1692 else if (moved
&& !DragFullWindows
)
1693 draw_moving_frame( hdc
, &sizingRect
, thickframe
);
1695 ReleaseDC( parent
, hdc
);
1698 XUngrabPointer( thread_data
->display
, CurrentTime
);
1701 XSync( thread_data
->display
, False
);
1702 XUngrabServer( thread_data
->display
);
1703 XSync( thread_data
->display
, False
);
1704 gdi_display
= old_gdi_display
;
1706 wine_tsx11_unlock();
1707 thread_data
->grab_window
= None
;
1709 if (HOOK_CallHooks( WH_CBT
, HCBT_MOVESIZE
, (WPARAM
)hwnd
, (LPARAM
)&sizingRect
, TRUE
))
1712 SendMessageA( hwnd
, WM_EXITSIZEMOVE
, 0, 0 );
1713 SendMessageA( hwnd
, WM_SETVISIBLE
, !IsIconic(hwnd
), 0L);
1715 /* window moved or resized */
1718 /* if the moving/resizing isn't canceled call SetWindowPos
1719 * with the new position or the new size of the window
1721 if (!((msg
.message
== WM_KEYDOWN
) && (msg
.wParam
== VK_ESCAPE
)) )
1723 /* NOTE: SWP_NOACTIVATE prevents document window activation in Word 6 */
1724 if(!DragFullWindows
)
1725 SetWindowPos( hwnd
, 0, sizingRect
.left
, sizingRect
.top
,
1726 sizingRect
.right
- sizingRect
.left
,
1727 sizingRect
.bottom
- sizingRect
.top
,
1728 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
1731 { /* restore previous size/position */
1733 SetWindowPos( hwnd
, 0, origRect
.left
, origRect
.top
,
1734 origRect
.right
- origRect
.left
,
1735 origRect
.bottom
- origRect
.top
,
1736 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
1742 /* Single click brings up the system menu when iconized */
1746 if(style
& WS_SYSMENU
)
1747 SendMessageA( hwnd
, WM_SYSCOMMAND
,
1748 SC_MOUSEMENU
+ HTSYSMENU
, MAKELONG(pt
.x
,pt
.y
));
1750 else WINPOS_ShowIconTitle( hwnd
, TRUE
);