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)
593 data->whole_rect = data->client_rect = data->window_rect = *rectWindow;
599 Display *display = thread_display();
601 /* invalidate DCEs */
603 if ((((swp_flags & SWP_AGG_NOPOSCHANGE) != SWP_AGG_NOPOSCHANGE) && (new_style & WS_VISIBLE)) ||
604 (swp_flags & (SWP_HIDEWINDOW | SWP_SHOWWINDOW)))
607 UnionRect( &rect, rectWindow, &win->rectWindow );
608 invalidate_dce( hwnd, &rect );
611 win->rectWindow = *rectWindow;
612 win->rectClient = *rectClient;
613 old_style = win->dwStyle;
614 win->dwStyle = new_style;
615 data->window_rect = *rectWindow;
617 TRACE( "win %p window %s client %s style %08lx\n",
618 hwnd, wine_dbgstr_rect(rectWindow), wine_dbgstr_rect(rectClient), new_style );
620 /* FIXME: copy the valid bits */
622 if (data->whole_window && !(swp_flags & SWP_WINE_NOHOSTMOVE))
624 if ((old_style & WS_VISIBLE) && !(new_style & WS_VISIBLE))
626 /* window got hidden, unmap it */
627 TRACE( "unmapping win %p\n", hwnd );
629 XUnmapWindow( display, data->whole_window );
632 else if ((new_style & WS_VISIBLE) && !X11DRV_is_window_rect_mapped( rectWindow ))
634 /* resizing to zero size or off screen -> unmap */
635 TRACE( "unmapping zero size or off-screen win %p\n", hwnd );
637 XUnmapWindow( display, data->whole_window );
642 X11DRV_sync_window_position( display, data, swp_flags, rectClient, &new_whole_rect );
644 if (data->whole_window && !(swp_flags & SWP_WINE_NOHOSTMOVE))
646 if (!(old_style & WS_VISIBLE) && (new_style & WS_VISIBLE))
648 /* window got shown, map it */
649 if (X11DRV_is_window_rect_mapped( rectWindow ))
651 TRACE( "mapping win %p\n", hwnd );
652 X11DRV_sync_window_style( display, data );
653 X11DRV_set_wm_hints( display, data );
655 XMapWindow( display, data->whole_window );
659 else if ((new_style & WS_VISIBLE) && X11DRV_is_window_rect_mapped( rectWindow ))
661 /* resizing from zero size to non-zero -> map */
662 TRACE( "mapping non zero size or off-screen win %p\n", hwnd );
664 XMapWindow( display, data->whole_window );
668 XFlush( display ); /* FIXME: should not be necessary */
672 WIN_ReleasePtr( win );
677 /***********************************************************************
678 * SetWindowPos (X11DRV.@)
680 BOOL X11DRV_SetWindowPos( WINDOWPOS *winpos )
682 RECT newWindowRect, newClientRect, valid_rects[2];
685 TRACE( "hwnd %p, after %p, swp %d,%d %dx%d flags %08x\n",
686 winpos->hwnd, winpos->hwndInsertAfter, winpos->x, winpos->y,
687 winpos->cx, winpos->cy, winpos->flags);
689 orig_flags = winpos->flags;
690 winpos->flags &= ~SWP_WINE_NOHOSTMOVE;
692 /* Check window handle */
693 if (winpos->hwnd == GetDesktopWindow()) return FALSE;
695 /* First make sure that coordinates are valid for WM_WINDOWPOSCHANGING */
696 if (!(winpos->flags & SWP_NOMOVE))
698 if (winpos->x < -32768) winpos->x = -32768;
699 else if (winpos->x > 32767) winpos->x = 32767;
700 if (winpos->y < -32768) winpos->y = -32768;
701 else if (winpos->y > 32767) winpos->y = 32767;
703 if (!(winpos->flags & SWP_NOSIZE))
705 if (winpos->cx < 0) winpos->cx = 0;
706 else if (winpos->cx > 32767) winpos->cx = 32767;
707 if (winpos->cy < 0) winpos->cy = 0;
708 else if (winpos->cy > 32767) winpos->cy = 32767;
711 if (!SWP_DoWinPosChanging( winpos, &newWindowRect, &newClientRect )) return FALSE;
713 /* Fix redundant flags */
714 if (!fixup_flags( winpos )) return FALSE;
716 if((winpos->flags & (SWP_NOZORDER | SWP_HIDEWINDOW | SWP_SHOWWINDOW)) != SWP_NOZORDER)
718 if (GetAncestor( winpos->hwnd, GA_PARENT ) == GetDesktopWindow())
719 winpos->hwndInsertAfter = SWP_DoOwnedPopups( winpos->hwnd, winpos->hwndInsertAfter );
722 /* Common operations */
724 SWP_DoNCCalcSize( winpos, &newWindowRect, &newClientRect, valid_rects );
726 if (!X11DRV_set_window_pos( winpos->hwnd, winpos->hwndInsertAfter,
727 &newWindowRect, &newClientRect, orig_flags, valid_rects ))
730 if( winpos->flags & SWP_HIDEWINDOW )
731 HideCaret(winpos->hwnd);
732 else if (winpos->flags & SWP_SHOWWINDOW)
733 ShowCaret(winpos->hwnd);
735 if (!(winpos->flags & (SWP_NOACTIVATE|SWP_HIDEWINDOW)))
737 /* child windows get WM_CHILDACTIVATE message */
738 if ((GetWindowLongW( winpos->hwnd, GWL_STYLE ) & (WS_CHILD | WS_POPUP)) == WS_CHILD)
739 SendMessageA( winpos->hwnd, WM_CHILDACTIVATE, 0, 0 );
741 SetForegroundWindow( winpos->hwnd );
744 /* And last, send the WM_WINDOWPOSCHANGED message */
746 TRACE("\tstatus flags = %04x\n", winpos->flags & SWP_AGG_STATUSFLAGS);
748 if (((winpos->flags & SWP_AGG_STATUSFLAGS) != SWP_AGG_NOPOSCHANGE))
750 /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
751 and always contains final window position.
753 winpos->x = newWindowRect.left;
754 winpos->y = newWindowRect.top;
755 winpos->cx = newWindowRect.right - newWindowRect.left;
756 winpos->cy = newWindowRect.bottom - newWindowRect.top;
757 SendMessageW( winpos->hwnd, WM_WINDOWPOSCHANGED, 0, (LPARAM)winpos );
764 /***********************************************************************
767 * Find a suitable place for an iconic window.
769 static POINT WINPOS_FindIconPos( HWND hwnd, POINT pt )
771 RECT rect, rectParent;
774 int xspacing, yspacing;
776 parent = GetAncestor( hwnd, GA_PARENT );
777 GetClientRect( parent, &rectParent );
778 if ((pt.x >= rectParent.left) && (pt.x + GetSystemMetrics(SM_CXICON) < rectParent.right) &&
779 (pt.y >= rectParent.top) && (pt.y + GetSystemMetrics(SM_CYICON) < rectParent.bottom))
780 return pt; /* The icon already has a suitable position */
782 xspacing = GetSystemMetrics(SM_CXICONSPACING);
783 yspacing = GetSystemMetrics(SM_CYICONSPACING);
785 /* Check if another icon already occupies this spot */
786 /* FIXME: this is completely inefficient */
788 hrgn = CreateRectRgn( 0, 0, 0, 0 );
789 tmp = CreateRectRgn( 0, 0, 0, 0 );
790 for (child = GetWindow( parent, GW_HWNDFIRST ); child; child = GetWindow( child, GW_HWNDNEXT ))
793 if (child == hwnd) continue;
794 if ((GetWindowLongW( child, GWL_STYLE ) & (WS_VISIBLE|WS_MINIMIZE)) != (WS_VISIBLE|WS_MINIMIZE))
796 if (!(childPtr = WIN_GetPtr( child )) || childPtr == WND_OTHER_PROCESS)
798 SetRectRgn( tmp, childPtr->rectWindow.left, childPtr->rectWindow.top,
799 childPtr->rectWindow.right, childPtr->rectWindow.bottom );
800 CombineRgn( hrgn, hrgn, tmp, RGN_OR );
801 WIN_ReleasePtr( childPtr );
805 for (rect.bottom = rectParent.bottom; rect.bottom >= yspacing; rect.bottom -= yspacing)
807 for (rect.left = rectParent.left; rect.left <= rectParent.right - xspacing; rect.left += xspacing)
809 rect.right = rect.left + xspacing;
810 rect.top = rect.bottom - yspacing;
811 if (!RectInRegion( hrgn, &rect ))
813 /* No window was found, so it's OK for us */
814 pt.x = rect.left + (xspacing - GetSystemMetrics(SM_CXICON)) / 2;
815 pt.y = rect.top + (yspacing - GetSystemMetrics(SM_CYICON)) / 2;
816 DeleteObject( hrgn );
821 DeleteObject( hrgn );
830 UINT WINPOS_MinMaximize( HWND hwnd, UINT cmd, LPRECT rect )
838 TRACE("%p %u\n", hwnd, cmd );
840 wpl.length = sizeof(wpl);
841 GetWindowPlacement( hwnd, &wpl );
843 if (HOOK_CallHooks( WH_CBT, HCBT_MINMAX, (WPARAM)hwnd, cmd, TRUE ))
844 return SWP_NOSIZE | SWP_NOMOVE;
846 if (IsIconic( hwnd ))
848 if (cmd == SW_MINIMIZE) return SWP_NOSIZE | SWP_NOMOVE;
849 if (!SendMessageW( hwnd, WM_QUERYOPEN, 0, 0 )) return SWP_NOSIZE | SWP_NOMOVE;
850 swpFlags |= SWP_NOCOPYBITS;
856 if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return 0;
857 if( wndPtr->dwStyle & WS_MAXIMIZE) wndPtr->flags |= WIN_RESTORE_MAX;
858 else wndPtr->flags &= ~WIN_RESTORE_MAX;
859 WIN_ReleasePtr( wndPtr );
861 WIN_SetStyle( hwnd, WS_MINIMIZE, WS_MAXIMIZE );
863 X11DRV_set_iconic_state( hwnd );
865 wpl.ptMinPosition = WINPOS_FindIconPos( hwnd, wpl.ptMinPosition );
867 SetRect( rect, wpl.ptMinPosition.x, wpl.ptMinPosition.y,
868 GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON) );
869 swpFlags |= SWP_NOCOPYBITS;
873 WINPOS_GetMinMaxInfo( hwnd, &size, &wpl.ptMaxPosition, NULL, NULL );
875 old_style = WIN_SetStyle( hwnd, WS_MAXIMIZE, WS_MINIMIZE );
876 if (old_style & WS_MINIMIZE)
878 WINPOS_ShowIconTitle( hwnd, FALSE );
879 X11DRV_set_iconic_state( hwnd );
881 SetRect( rect, wpl.ptMaxPosition.x, wpl.ptMaxPosition.y, size.x, size.y );
885 old_style = WIN_SetStyle( hwnd, 0, WS_MINIMIZE | WS_MAXIMIZE );
886 if (old_style & WS_MINIMIZE)
890 WINPOS_ShowIconTitle( hwnd, FALSE );
891 X11DRV_set_iconic_state( hwnd );
893 if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return 0;
894 restore_max = (wndPtr->flags & WIN_RESTORE_MAX) != 0;
895 WIN_ReleasePtr( wndPtr );
898 /* Restore to maximized position */
899 WINPOS_GetMinMaxInfo( hwnd, &size, &wpl.ptMaxPosition, NULL, NULL);
900 WIN_SetStyle( hwnd, WS_MAXIMIZE, 0 );
901 SetRect( rect, wpl.ptMaxPosition.x, wpl.ptMaxPosition.y, size.x, size.y );
905 else if (!(old_style & WS_MAXIMIZE)) break;
907 /* Restore to normal position */
909 *rect = wpl.rcNormalPosition;
910 rect->right -= rect->left;
911 rect->bottom -= rect->top;
920 /***********************************************************************
921 * ShowWindow (X11DRV.@)
923 BOOL X11DRV_ShowWindow( HWND hwnd, INT cmd )
926 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
927 BOOL wasVisible = (style & WS_VISIBLE) != 0;
928 BOOL showFlag = TRUE;
929 RECT newPos = {0, 0, 0, 0};
932 if (hwnd == GetDesktopWindow()) return FALSE;
934 TRACE("hwnd=%p, cmd=%d, wasVisible %d\n", hwnd, cmd, wasVisible);
939 if (!wasVisible) return FALSE;
941 swp |= SWP_HIDEWINDOW | SWP_NOSIZE | SWP_NOMOVE;
942 if (hwnd != GetActiveWindow())
943 swp |= SWP_NOACTIVATE | SWP_NOZORDER;
946 case SW_SHOWMINNOACTIVE:
947 swp |= SWP_NOACTIVATE | SWP_NOZORDER;
949 case SW_SHOWMINIMIZED:
950 case SW_FORCEMINIMIZE: /* FIXME: Does not work if thread is hung. */
951 swp |= SWP_SHOWWINDOW;
954 swp |= SWP_FRAMECHANGED;
955 if( !(style & WS_MINIMIZE) )
956 swp |= WINPOS_MinMaximize( hwnd, SW_MINIMIZE, &newPos );
957 else swp |= SWP_NOSIZE | SWP_NOMOVE;
960 case SW_SHOWMAXIMIZED: /* same as SW_MAXIMIZE */
961 swp |= SWP_SHOWWINDOW | SWP_FRAMECHANGED;
962 if( !(style & WS_MAXIMIZE) )
963 swp |= WINPOS_MinMaximize( hwnd, SW_MAXIMIZE, &newPos );
964 else swp |= SWP_NOSIZE | SWP_NOMOVE;
968 swp |= SWP_NOACTIVATE | SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE;
969 if (style & WS_CHILD) swp |= SWP_NOZORDER;
972 if (wasVisible) return TRUE;
973 swp |= SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE;
977 swp |= SWP_FRAMECHANGED;
979 case SW_SHOWNOACTIVATE:
980 swp |= SWP_NOACTIVATE | SWP_NOZORDER;
982 case SW_SHOWNORMAL: /* same as SW_NORMAL: */
983 case SW_SHOWDEFAULT: /* FIXME: should have its own handler */
984 swp |= SWP_SHOWWINDOW;
986 if (style & (WS_MINIMIZE | WS_MAXIMIZE))
987 swp |= WINPOS_MinMaximize( hwnd, SW_RESTORE, &newPos );
988 else swp |= SWP_NOSIZE | SWP_NOMOVE;
992 if (showFlag != wasVisible || cmd == SW_SHOWNA)
994 SendMessageW( hwnd, WM_SHOWWINDOW, showFlag, 0 );
995 if (!IsWindow( hwnd )) return wasVisible;
998 /* ShowWindow won't activate a not being maximized child window */
999 if ((style & WS_CHILD) && cmd != SW_MAXIMIZE)
1000 swp |= SWP_NOACTIVATE | SWP_NOZORDER;
1002 SetWindowPos( hwnd, HWND_TOP, newPos.left, newPos.top,
1003 newPos.right, newPos.bottom, LOWORD(swp) );
1008 /* FIXME: This will cause the window to be activated irrespective
1009 * of whether it is owned by the same thread. Has to be done
1013 if (hwnd == GetActiveWindow())
1014 WINPOS_ActivateOtherWindow(hwnd);
1016 /* Revert focus to parent */
1017 hFocus = GetFocus();
1018 if (hwnd == hFocus || IsChild(hwnd, hFocus))
1020 HWND parent = GetAncestor(hwnd, GA_PARENT);
1021 if (parent == GetDesktopWindow()) parent = 0;
1026 if (IsIconic(hwnd)) WINPOS_ShowIconTitle( hwnd, TRUE );
1028 if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return wasVisible;
1030 if (wndPtr->flags & WIN_NEED_SIZE)
1032 /* should happen only in CreateWindowEx() */
1033 int wParam = SIZE_RESTORED;
1034 RECT client = wndPtr->rectClient;
1036 wndPtr->flags &= ~WIN_NEED_SIZE;
1037 if (wndPtr->dwStyle & WS_MAXIMIZE) wParam = SIZE_MAXIMIZED;
1038 else if (wndPtr->dwStyle & WS_MINIMIZE) wParam = SIZE_MINIMIZED;
1039 WIN_ReleasePtr( wndPtr );
1041 SendMessageW( hwnd, WM_SIZE, wParam,
1042 MAKELONG( client.right - client.left, client.bottom - client.top ));
1043 SendMessageW( hwnd, WM_MOVE, 0, MAKELONG( client.left, client.top ));
1045 else WIN_ReleasePtr( wndPtr );
1051 /**********************************************************************
1054 void X11DRV_MapNotify( HWND hwnd, XEvent *event )
1056 struct x11drv_win_data *data;
1057 HWND hwndFocus = GetFocus();
1060 if (!(data = X11DRV_get_win_data( hwnd ))) return;
1062 if (!(win = WIN_GetPtr( hwnd ))) return;
1064 if (data->managed && (win->dwStyle & WS_VISIBLE) && (win->dwStyle & WS_MINIMIZE))
1067 unsigned int width, height, border, depth;
1070 LONG style = WS_VISIBLE;
1074 XGetGeometry( event->xmap.display, data->whole_window, &root, &x, &y, &width, &height,
1076 XTranslateCoordinates( event->xmap.display, data->whole_window, root, 0, 0, &x, &y, &top );
1077 wine_tsx11_unlock();
1080 rect.right = x + width;
1081 rect.bottom = y + height;
1082 X11DRV_X_to_window_rect( data, &rect );
1084 invalidate_dce( hwnd, &data->window_rect );
1086 if (win->flags & WIN_RESTORE_MAX) style |= WS_MAXIMIZE;
1087 WIN_SetStyle( hwnd, style, WS_MINIMIZE );
1088 WIN_ReleasePtr( win );
1090 SendMessageA( hwnd, WM_SHOWWINDOW, SW_RESTORE, 0 );
1091 SetWindowPos( hwnd, 0, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top,
1092 SWP_NOZORDER | SWP_WINE_NOHOSTMOVE );
1094 else WIN_ReleasePtr( win );
1095 if (hwndFocus && IsChild( hwnd, hwndFocus )) X11DRV_SetFocus(hwndFocus); /* FIXME */
1099 /**********************************************************************
1100 * X11DRV_UnmapNotify
1102 void X11DRV_UnmapNotify( HWND hwnd, XEvent *event )
1104 struct x11drv_win_data *data;
1107 if (!(data = X11DRV_get_win_data( hwnd ))) return;
1109 if (!(win = WIN_GetPtr( hwnd ))) return;
1111 if ((win->dwStyle & WS_VISIBLE) && data->managed &&
1112 X11DRV_is_window_rect_mapped( &win->rectWindow ))
1114 if (win->dwStyle & WS_MAXIMIZE)
1115 win->flags |= WIN_RESTORE_MAX;
1117 win->flags &= ~WIN_RESTORE_MAX;
1119 WIN_SetStyle( hwnd, WS_MINIMIZE, WS_MAXIMIZE );
1120 WIN_ReleasePtr( win );
1123 SendMessageA( hwnd, WM_SHOWWINDOW, SW_MINIMIZE, 0 );
1124 SetWindowPos( hwnd, 0, 0, 0, GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON),
1125 SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER | SWP_WINE_NOHOSTMOVE );
1127 else WIN_ReleasePtr( win );
1131 /***********************************************************************
1132 * X11DRV_handle_desktop_resize
1134 void X11DRV_handle_desktop_resize( unsigned int width, unsigned int height )
1137 HWND hwnd = GetDesktopWindow();
1139 screen_width = width;
1140 screen_height = height;
1141 TRACE("desktop %p change to (%dx%d)\n", hwnd, width, height);
1142 SetRect( &rect, 0, 0, width, height );
1143 X11DRV_set_window_pos( hwnd, 0, &rect, &rect, SWP_NOZORDER|SWP_NOMOVE|SWP_WINE_NOHOSTMOVE, NULL );
1144 SendMessageTimeoutW( HWND_BROADCAST, WM_DISPLAYCHANGE, screen_depth,
1145 MAKELPARAM( width, height ), SMTO_ABORTIFHUNG, 2000, NULL );
1149 /***********************************************************************
1150 * X11DRV_ConfigureNotify
1152 void X11DRV_ConfigureNotify( HWND hwnd, XEvent *xev )
1154 XConfigureEvent *event = &xev->xconfigure;
1155 struct x11drv_win_data *data;
1158 int cx, cy, x = event->x, y = event->y;
1161 if (!(data = X11DRV_get_win_data( hwnd ))) return;
1165 if (!event->send_event) /* normal event, need to map coordinates to the root */
1169 XTranslateCoordinates( event->display, data->whole_window, root_window,
1170 0, 0, &x, &y, &child );
1171 wine_tsx11_unlock();
1175 rect.right = x + event->width;
1176 rect.bottom = y + event->height;
1177 TRACE( "win %p new X rect %ld,%ld,%ldx%ld (event %d,%d,%dx%d)\n",
1178 hwnd, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top,
1179 event->x, event->y, event->width, event->height );
1180 X11DRV_X_to_window_rect( data, &rect );
1184 cx = rect.right - rect.left;
1185 cy = rect.bottom - rect.top;
1186 flags = SWP_NOACTIVATE | SWP_NOZORDER | SWP_WINE_NOHOSTMOVE;
1188 /* Compare what has changed */
1190 GetWindowRect( hwnd, &rect );
1191 if (rect.left == x && rect.top == y) flags |= SWP_NOMOVE;
1193 TRACE( "%p moving from (%ld,%ld) to (%d,%d)\n",
1194 hwnd, rect.left, rect.top, x, y );
1196 if ((rect.right - rect.left == cx && rect.bottom - rect.top == cy) ||
1198 (IsRectEmpty( &rect ) && cx == 1 && cy == 1))
1200 if (flags & SWP_NOMOVE) return; /* if nothing changed, don't do anything */
1201 flags |= SWP_NOSIZE;
1204 TRACE( "%p resizing from (%ldx%ld) to (%dx%d)\n",
1205 hwnd, rect.right - rect.left, rect.bottom - rect.top, cx, cy );
1207 SetWindowPos( hwnd, 0, x, y, cx, cy, flags );
1211 /***********************************************************************
1212 * SetWindowRgn (X11DRV.@)
1214 * Assign specified region to window (for non-rectangular windows)
1216 int X11DRV_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
1218 struct x11drv_win_data *data;
1220 if (!(data = X11DRV_get_win_data( hwnd )))
1222 if (IsWindow( hwnd ))
1223 FIXME( "not supported on other thread window %p\n", hwnd );
1224 SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1228 #ifdef HAVE_LIBXSHAPE
1229 if (data->whole_window)
1231 Display *display = thread_display();
1236 XShapeCombineMask( display, data->whole_window,
1237 ShapeBounding, 0, 0, None, ShapeSet );
1238 wine_tsx11_unlock();
1242 RGNDATA *pRegionData = X11DRV_GetRegionData( hrgn, 0 );
1246 XShapeCombineRectangles( display, data->whole_window, ShapeBounding,
1247 data->window_rect.left - data->whole_rect.left,
1248 data->window_rect.top - data->whole_rect.top,
1249 (XRectangle *)pRegionData->Buffer,
1250 pRegionData->rdh.nCount,
1251 ShapeSet, YXBanded );
1252 wine_tsx11_unlock();
1253 HeapFree(GetProcessHeap(), 0, pRegionData);
1257 #endif /* HAVE_LIBXSHAPE */
1259 invalidate_dce( hwnd, &data->window_rect );
1264 /***********************************************************************
1267 * Draw the frame used when moving or resizing window.
1269 * FIXME: This causes problems in Win95 mode. (why?)
1271 static void draw_moving_frame( HDC hdc, RECT *rect, BOOL thickframe )
1275 const int width = GetSystemMetrics(SM_CXFRAME);
1276 const int height = GetSystemMetrics(SM_CYFRAME);
1278 HBRUSH hbrush = SelectObject( hdc, GetStockObject( GRAY_BRUSH ) );
1279 PatBlt( hdc, rect->left, rect->top,
1280 rect->right - rect->left - width, height, PATINVERT );
1281 PatBlt( hdc, rect->left, rect->top + height, width,
1282 rect->bottom - rect->top - height, PATINVERT );
1283 PatBlt( hdc, rect->left + width, rect->bottom - 1,
1284 rect->right - rect->left - width, -height, PATINVERT );
1285 PatBlt( hdc, rect->right - 1, rect->top, -width,
1286 rect->bottom - rect->top - height, PATINVERT );
1287 SelectObject( hdc, hbrush );
1289 else DrawFocusRect( hdc, rect );
1293 /***********************************************************************
1296 * Initialisation of a move or resize, when initiatied from a menu choice.
1297 * Return hit test code for caption or sizing border.
1299 static LONG start_size_move( HWND hwnd, WPARAM wParam, POINT *capturePoint, LONG style )
1306 GetWindowRect( hwnd, &rectWindow );
1308 if ((wParam & 0xfff0) == SC_MOVE)
1310 /* Move pointer at the center of the caption */
1311 RECT rect = rectWindow;
1312 /* Note: to be exactly centered we should take the different types
1313 * of border into account, but it shouldn't make more that a few pixels
1314 * of difference so let's not bother with that */
1315 rect.top += GetSystemMetrics(SM_CYBORDER);
1316 if (style & WS_SYSMENU)
1317 rect.left += GetSystemMetrics(SM_CXSIZE) + 1;
1318 if (style & WS_MINIMIZEBOX)
1319 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;
1320 if (style & WS_MAXIMIZEBOX)
1321 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;
1322 pt.x = (rect.right + rect.left) / 2;
1323 pt.y = rect.top + GetSystemMetrics(SM_CYSIZE)/2;
1324 hittest = HTCAPTION;
1332 GetMessageW( &msg, 0, WM_KEYFIRST, WM_MOUSELAST );
1333 if (CallMsgFilterW( &msg, MSGF_SIZE )) continue;
1339 hittest = SendMessageW( hwnd, WM_NCHITTEST, 0, MAKELONG( pt.x, pt.y ) );
1340 if ((hittest < HTLEFT) || (hittest > HTBOTTOMRIGHT)) hittest = 0;
1351 pt.x =(rectWindow.left+rectWindow.right)/2;
1352 pt.y = rectWindow.top + GetSystemMetrics(SM_CYFRAME) / 2;
1356 pt.x =(rectWindow.left+rectWindow.right)/2;
1357 pt.y = rectWindow.bottom - GetSystemMetrics(SM_CYFRAME) / 2;
1361 pt.x = rectWindow.left + GetSystemMetrics(SM_CXFRAME) / 2;
1362 pt.y =(rectWindow.top+rectWindow.bottom)/2;
1366 pt.x = rectWindow.right - GetSystemMetrics(SM_CXFRAME) / 2;
1367 pt.y =(rectWindow.top+rectWindow.bottom)/2;
1370 case VK_ESCAPE: return 0;
1376 SetCursorPos( pt.x, pt.y );
1377 SendMessageW( hwnd, WM_SETCURSOR, (WPARAM)hwnd, MAKELONG( hittest, WM_MOUSEMOVE ));
1382 /***********************************************************************
1383 * set_movesize_capture
1385 static void set_movesize_capture( HWND hwnd )
1389 SERVER_START_REQ( set_capture_window )
1392 req->flags = CAPTURE_MOVESIZE;
1393 if (!wine_server_call_err( req ))
1395 previous = reply->previous;
1396 hwnd = reply->full_handle;
1400 if (previous && previous != hwnd)
1401 SendMessageW( previous, WM_CAPTURECHANGED, 0, (LPARAM)hwnd );
1404 /***********************************************************************
1405 * X11DRV_WMMoveResizeWindow
1407 * Tells the window manager to initiate a move or resize operation.
1410 * http://freedesktop.org/Standards/wm-spec/1.3/ar01s04.html
1411 * or search for "_NET_WM_MOVERESIZE"
1413 static void X11DRV_WMMoveResizeWindow( HWND hwnd, int x, int y, int dir )
1416 Display *display = thread_display();
1418 xev.xclient.type = ClientMessage;
1419 xev.xclient.window = X11DRV_get_whole_window(hwnd);
1420 xev.xclient.message_type = x11drv_atom(_NET_WM_MOVERESIZE);
1421 xev.xclient.serial = 0;
1422 xev.xclient.display = display;
1423 xev.xclient.send_event = True;
1424 xev.xclient.format = 32;
1425 xev.xclient.data.l[0] = x; /* x coord */
1426 xev.xclient.data.l[1] = y; /* y coord */
1427 xev.xclient.data.l[2] = dir; /* direction */
1428 xev.xclient.data.l[3] = 1; /* button */
1429 xev.xclient.data.l[4] = 0; /* unused */
1431 /* need to ungrab the pointer that may have been automatically grabbed
1432 * with a ButtonPress event */
1434 XUngrabPointer( display, CurrentTime );
1435 XSendEvent(display, root_window, False, SubstructureNotifyMask, &xev);
1436 wine_tsx11_unlock();
1439 /***********************************************************************
1440 * SysCommandSizeMove (X11DRV.@)
1442 * Perform SC_MOVE and SC_SIZE commands.
1444 void X11DRV_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
1447 RECT sizingRect, mouseRect, origRect;
1450 LONG hittest = (LONG)(wParam & 0x0f);
1451 WPARAM syscommand = wParam & 0xfff0;
1452 HCURSOR hDragCursor = 0, hOldCursor = 0;
1453 POINT minTrack, maxTrack;
1454 POINT capturePoint, pt;
1455 LONG style = GetWindowLongA( hwnd, GWL_STYLE );
1456 BOOL thickframe = HAS_THICKFRAME( style );
1457 BOOL iconic = style & WS_MINIMIZE;
1459 DWORD dwPoint = GetMessagePos ();
1460 BOOL DragFullWindows = FALSE;
1462 Window parent_win, whole_win;
1463 Display *old_gdi_display = NULL;
1464 struct x11drv_thread_data *thread_data = x11drv_thread_data();
1465 struct x11drv_win_data *data;
1467 pt.x = (short)LOWORD(dwPoint);
1468 pt.y = (short)HIWORD(dwPoint);
1471 if (IsZoomed(hwnd) || !IsWindowVisible(hwnd)) return;
1473 if (!(data = X11DRV_get_win_data( hwnd ))) return;
1475 /* if we are managed then we let the WM do all the work */
1479 if (syscommand == SC_MOVE)
1481 if (!hittest) dir = _NET_WM_MOVERESIZE_MOVE_KEYBOARD;
1482 else dir = _NET_WM_MOVERESIZE_MOVE;
1484 else if (!hittest) dir = _NET_WM_MOVERESIZE_SIZE_KEYBOARD;
1488 case WMSZ_LEFT: dir = _NET_WM_MOVERESIZE_SIZE_LEFT; break;
1489 case WMSZ_RIGHT: dir = _NET_WM_MOVERESIZE_SIZE_RIGHT; break;
1490 case WMSZ_TOP: dir = _NET_WM_MOVERESIZE_SIZE_TOP; break;
1491 case WMSZ_TOPLEFT: dir = _NET_WM_MOVERESIZE_SIZE_TOPLEFT; break;
1492 case WMSZ_TOPRIGHT: dir = _NET_WM_MOVERESIZE_SIZE_TOPRIGHT; break;
1493 case WMSZ_BOTTOM: dir = _NET_WM_MOVERESIZE_SIZE_BOTTOM; break;
1494 case WMSZ_BOTTOMLEFT: dir = _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT; break;
1495 case WMSZ_BOTTOMRIGHT: dir = _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT; break;
1497 ERR("Invalid hittest value: %ld\n", hittest);
1498 dir = _NET_WM_MOVERESIZE_SIZE_KEYBOARD;
1500 X11DRV_WMMoveResizeWindow( hwnd, pt.x, pt.y, dir );
1504 SystemParametersInfoA(SPI_GETDRAGFULLWINDOWS, 0, &DragFullWindows, 0);
1506 if (syscommand == SC_MOVE)
1508 if (!hittest) hittest = start_size_move( hwnd, wParam, &capturePoint, style );
1509 if (!hittest) return;
1513 if ( hittest && (syscommand != SC_MOUSEMENU) )
1514 hittest += (HTLEFT - WMSZ_LEFT);
1517 set_movesize_capture( hwnd );
1518 hittest = start_size_move( hwnd, wParam, &capturePoint, style );
1521 set_movesize_capture(0);
1527 /* Get min/max info */
1529 WINPOS_GetMinMaxInfo( hwnd, NULL, NULL, &minTrack, &maxTrack );
1530 GetWindowRect( hwnd, &sizingRect );
1531 if (style & WS_CHILD)
1533 parent = GetParent(hwnd);
1534 /* make sizing rect relative to parent */
1535 MapWindowPoints( 0, parent, (POINT*)&sizingRect, 2 );
1536 GetClientRect( parent, &mouseRect );
1541 SetRect(&mouseRect, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN));
1543 origRect = sizingRect;
1545 if (ON_LEFT_BORDER(hittest))
1547 mouseRect.left = max( mouseRect.left, sizingRect.right-maxTrack.x );
1548 mouseRect.right = min( mouseRect.right, sizingRect.right-minTrack.x );
1550 else if (ON_RIGHT_BORDER(hittest))
1552 mouseRect.left = max( mouseRect.left, sizingRect.left+minTrack.x );
1553 mouseRect.right = min( mouseRect.right, sizingRect.left+maxTrack.x );
1555 if (ON_TOP_BORDER(hittest))
1557 mouseRect.top = max( mouseRect.top, sizingRect.bottom-maxTrack.y );
1558 mouseRect.bottom = min( mouseRect.bottom,sizingRect.bottom-minTrack.y);
1560 else if (ON_BOTTOM_BORDER(hittest))
1562 mouseRect.top = max( mouseRect.top, sizingRect.top+minTrack.y );
1563 mouseRect.bottom = min( mouseRect.bottom, sizingRect.top+maxTrack.y );
1565 if (parent) MapWindowPoints( parent, 0, (LPPOINT)&mouseRect, 2 );
1567 /* Retrieve a default cache DC (without using the window style) */
1568 hdc = GetDCEx( parent, 0, DCX_CACHE );
1570 if( iconic ) /* create a cursor for dragging */
1572 hDragCursor = (HCURSOR)GetClassLongPtrW( hwnd, GCLP_HICON);
1573 if( !hDragCursor ) hDragCursor = (HCURSOR)SendMessageW( hwnd, WM_QUERYDRAGICON, 0, 0L);
1574 if( !hDragCursor ) iconic = FALSE;
1577 /* repaint the window before moving it around */
1578 RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
1580 SendMessageA( hwnd, WM_ENTERSIZEMOVE, 0, 0 );
1581 set_movesize_capture( hwnd );
1583 /* grab the server only when moving top-level windows without desktop */
1584 grab = (!DragFullWindows && !parent && (root_window == DefaultRootWindow(gdi_display)));
1589 XSync( gdi_display, False );
1590 XGrabServer( thread_data->display );
1591 XSync( thread_data->display, False );
1592 /* switch gdi display to the thread display, since the server is grabbed */
1593 old_gdi_display = gdi_display;
1594 gdi_display = thread_data->display;
1595 wine_tsx11_unlock();
1597 whole_win = X11DRV_get_whole_window( GetAncestor(hwnd,GA_ROOT) );
1598 parent_win = parent ? X11DRV_get_whole_window( GetAncestor(parent,GA_ROOT) ) : root_window;
1601 XGrabPointer( thread_data->display, whole_win, False,
1602 PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
1603 GrabModeAsync, GrabModeAsync, parent_win, None, CurrentTime );
1604 wine_tsx11_unlock();
1605 thread_data->grab_window = whole_win;
1611 if (!GetMessageW( &msg, 0, WM_KEYFIRST, WM_MOUSELAST )) break;
1612 if (CallMsgFilterW( &msg, MSGF_SIZE )) continue;
1614 /* Exit on button-up, Return, or Esc */
1615 if ((msg.message == WM_LBUTTONUP) ||
1616 ((msg.message == WM_KEYDOWN) &&
1617 ((msg.wParam == VK_RETURN) || (msg.wParam == VK_ESCAPE)))) break;
1619 if ((msg.message != WM_KEYDOWN) && (msg.message != WM_MOUSEMOVE))
1620 continue; /* We are not interested in other messages */
1624 if (msg.message == WM_KEYDOWN) switch(msg.wParam)
1626 case VK_UP: pt.y -= 8; break;
1627 case VK_DOWN: pt.y += 8; break;
1628 case VK_LEFT: pt.x -= 8; break;
1629 case VK_RIGHT: pt.x += 8; break;
1632 pt.x = max( pt.x, mouseRect.left );
1633 pt.x = min( pt.x, mouseRect.right );
1634 pt.y = max( pt.y, mouseRect.top );
1635 pt.y = min( pt.y, mouseRect.bottom );
1637 dx = pt.x - capturePoint.x;
1638 dy = pt.y - capturePoint.y;
1646 if( iconic ) /* ok, no system popup tracking */
1648 hOldCursor = SetCursor(hDragCursor);
1650 WINPOS_ShowIconTitle( hwnd, FALSE );
1652 else if(!DragFullWindows)
1653 draw_moving_frame( hdc, &sizingRect, thickframe );
1656 if (msg.message == WM_KEYDOWN) SetCursorPos( pt.x, pt.y );
1659 RECT newRect = sizingRect;
1660 WPARAM wpSizingHit = 0;
1662 if (hittest == HTCAPTION) OffsetRect( &newRect, dx, dy );
1663 if (ON_LEFT_BORDER(hittest)) newRect.left += dx;
1664 else if (ON_RIGHT_BORDER(hittest)) newRect.right += dx;
1665 if (ON_TOP_BORDER(hittest)) newRect.top += dy;
1666 else if (ON_BOTTOM_BORDER(hittest)) newRect.bottom += dy;
1667 if(!iconic && !DragFullWindows) draw_moving_frame( hdc, &sizingRect, thickframe );
1670 /* determine the hit location */
1671 if (hittest >= HTLEFT && hittest <= HTBOTTOMRIGHT)
1672 wpSizingHit = WMSZ_LEFT + (hittest - HTLEFT);
1673 SendMessageA( hwnd, WM_SIZING, wpSizingHit, (LPARAM)&newRect );
1677 if(!DragFullWindows)
1678 draw_moving_frame( hdc, &newRect, thickframe );
1680 SetWindowPos( hwnd, 0, newRect.left, newRect.top,
1681 newRect.right - newRect.left,
1682 newRect.bottom - newRect.top,
1683 ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1685 sizingRect = newRect;
1690 set_movesize_capture(0);
1693 if( moved ) /* restore cursors, show icon title later on */
1695 ShowCursor( FALSE );
1696 SetCursor( hOldCursor );
1699 else if (moved && !DragFullWindows)
1700 draw_moving_frame( hdc, &sizingRect, thickframe );
1702 ReleaseDC( parent, hdc );
1705 XUngrabPointer( thread_data->display, CurrentTime );
1708 XSync( thread_data->display, False );
1709 XUngrabServer( thread_data->display );
1710 XSync( thread_data->display, False );
1711 gdi_display = old_gdi_display;
1713 wine_tsx11_unlock();
1714 thread_data->grab_window = None;
1716 if (HOOK_CallHooks( WH_CBT, HCBT_MOVESIZE, (WPARAM)hwnd, (LPARAM)&sizingRect, TRUE ))
1719 SendMessageA( hwnd, WM_EXITSIZEMOVE, 0, 0 );
1720 SendMessageA( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L);
1722 /* window moved or resized */
1725 /* if the moving/resizing isn't canceled call SetWindowPos
1726 * with the new position or the new size of the window
1728 if (!((msg.message == WM_KEYDOWN) && (msg.wParam == VK_ESCAPE)) )
1730 /* NOTE: SWP_NOACTIVATE prevents document window activation in Word 6 */
1731 if(!DragFullWindows)
1732 SetWindowPos( hwnd, 0, sizingRect.left, sizingRect.top,
1733 sizingRect.right - sizingRect.left,
1734 sizingRect.bottom - sizingRect.top,
1735 ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1738 { /* restore previous size/position */
1740 SetWindowPos( hwnd, 0, origRect.left, origRect.top,
1741 origRect.right - origRect.left,
1742 origRect.bottom - origRect.top,
1743 ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1749 /* Single click brings up the system menu when iconized */
1753 if(style & WS_SYSMENU )
1754 SendMessageA( hwnd, WM_SYSCOMMAND,
1755 SC_MOUSEMENU + HTSYSMENU, MAKELONG(pt.x,pt.y));
1757 else WINPOS_ShowIconTitle( hwnd, TRUE );