The last argument to MultiByteToWideChar is wide character count and
[wine] / dlls / x11drv / winpos.c
1 /*
2  * Window position related functions.
3  *
4  * Copyright 1993, 1994, 1995, 2001 Alexandre Julliard
5  * Copyright 1995, 1996, 1999 Alex Korobka
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23
24 #include <X11/Xlib.h>
25 #ifdef HAVE_LIBXSHAPE
26 #include <X11/IntrinsicP.h>
27 #include <X11/extensions/shape.h>
28 #endif /* HAVE_LIBXSHAPE */
29 #include <stdarg.h>
30
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "winerror.h"
36 #include "ntstatus.h"
37 #include "wownt32.h"
38 #include "wine/wingdi16.h"
39
40 #include "x11drv.h"
41 #include "win.h"
42 #include "winpos.h"
43
44 #include "wine/server.h"
45 #include "wine/debug.h"
46
47 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
48
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)
53
54 #define SWP_EX_NOCOPY       0x0001
55 #define SWP_EX_PAINTSELF    0x0002
56 #define SWP_EX_NONCLIENT    0x0004
57
58 #define HAS_THICKFRAME(style) \
59     (((style) & WS_THICKFRAME) && \
60      !(((style) & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME))
61
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))
70
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 */
82
83
84 /***********************************************************************
85  *           X11DRV_Expose
86  */
87 void X11DRV_Expose( HWND hwnd, XEvent *xev )
88 {
89     XExposeEvent *event = &xev->xexpose;
90     RECT rect;
91     struct x11drv_win_data *data;
92     int flags = RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN;
93
94     TRACE( "win %p (%lx) %d,%d %dx%d\n",
95            hwnd, event->window, event->x, event->y, event->width, event->height );
96
97     if (!(data = X11DRV_get_win_data( hwnd ))) return;
98
99     rect.left   = event->x;
100     rect.top    = event->y;
101     rect.right  = rect.left + event->width;
102     rect.bottom = rect.top + event->height;
103
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;
108
109     SERVER_START_REQ( update_window_zorder )
110     {
111         req->window      = hwnd;
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 );
117     }
118     SERVER_END_REQ;
119
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 );
123 }
124
125
126 /***********************************************************************
127  *           SWP_DoWinPosChanging
128  */
129 static BOOL SWP_DoWinPosChanging( WINDOWPOS* pWinpos, RECT* pNewWindowRect, RECT* pNewClientRect )
130 {
131     WND *wndPtr;
132
133     /* Send WM_WINDOWPOSCHANGING message */
134
135     if (!(pWinpos->flags & SWP_NOSENDCHANGING))
136         SendMessageW( pWinpos->hwnd, WM_WINDOWPOSCHANGING, 0, (LPARAM)pWinpos );
137
138     if (!(wndPtr = WIN_GetPtr( pWinpos->hwnd )) || wndPtr == WND_OTHER_PROCESS) return FALSE;
139
140     /* Calculate new position and size */
141
142     *pNewWindowRect = wndPtr->rectWindow;
143     *pNewClientRect = (wndPtr->dwStyle & WS_MINIMIZE) ? wndPtr->rectWindow
144                                                     : wndPtr->rectClient;
145
146     if (!(pWinpos->flags & SWP_NOSIZE))
147     {
148         pNewWindowRect->right  = pNewWindowRect->left + pWinpos->cx;
149         pNewWindowRect->bottom = pNewWindowRect->top + pWinpos->cy;
150     }
151     if (!(pWinpos->flags & SWP_NOMOVE))
152     {
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;
157
158         OffsetRect( pNewClientRect, pWinpos->x - wndPtr->rectWindow.left,
159                                     pWinpos->y - wndPtr->rectWindow.top );
160     }
161     pWinpos->flags |= SWP_NOCLIENTMOVE | SWP_NOCLIENTSIZE;
162
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 ));
169
170     WIN_ReleasePtr( wndPtr );
171     return TRUE;
172 }
173
174
175 /***********************************************************************
176  *           get_valid_rects
177  *
178  * Compute the valid rects from the old and new client rect and WVR_* flags.
179  * Helper for WM_NCCALCSIZE handling.
180  */
181 static inline void get_valid_rects( const RECT *old_client, const RECT *new_client, UINT flags,
182                                     RECT *valid )
183 {
184     int cx, cy;
185
186     if (flags & WVR_REDRAW)
187     {
188         SetRectEmpty( &valid[0] );
189         SetRectEmpty( &valid[1] );
190         return;
191     }
192
193     if (flags & WVR_VALIDRECTS)
194     {
195         if (!IntersectRect( &valid[0], &valid[0], new_client ) ||
196             !IntersectRect( &valid[1], &valid[1], old_client ))
197         {
198             SetRectEmpty( &valid[0] );
199             SetRectEmpty( &valid[1] );
200             return;
201         }
202         flags = WVR_ALIGNLEFT | WVR_ALIGNTOP;
203     }
204     else
205     {
206         valid[0] = *new_client;
207         valid[1] = *old_client;
208     }
209
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 );
213
214     if (flags & WVR_ALIGNBOTTOM)
215     {
216         valid[0].top = valid[0].bottom - cy;
217         valid[1].top = valid[1].bottom - cy;
218     }
219     else
220     {
221         valid[0].bottom = valid[0].top + cy;
222         valid[1].bottom = valid[1].top + cy;
223     }
224     if (flags & WVR_ALIGNRIGHT)
225     {
226         valid[0].left = valid[0].right - cx;
227         valid[1].left = valid[1].right - cx;
228     }
229     else
230     {
231         valid[0].right = valid[0].left + cx;
232         valid[1].right = valid[1].left + cx;
233     }
234 }
235
236
237 /***********************************************************************
238  *           SWP_DoNCCalcSize
239  */
240 static UINT SWP_DoNCCalcSize( WINDOWPOS* pWinpos, const RECT* pNewWindowRect, RECT* pNewClientRect,
241                               RECT *validRects )
242 {
243     UINT wvrFlags = 0;
244     WND *wndPtr;
245
246     if (!(wndPtr = WIN_GetPtr( pWinpos->hwnd )) || wndPtr == WND_OTHER_PROCESS) return 0;
247
248       /* Send WM_NCCALCSIZE message to get new client area */
249     if( (pWinpos->flags & (SWP_FRAMECHANGED | SWP_NOSIZE)) != SWP_NOSIZE )
250     {
251         NCCALCSIZE_PARAMS params;
252         WINDOWPOS winposCopy;
253
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 );
260
261         wvrFlags = SendMessageW( pWinpos->hwnd, WM_NCCALCSIZE, TRUE, (LPARAM)&params );
262
263         *pNewClientRect = params.rgrc[0];
264
265         if (!(wndPtr = WIN_GetPtr( pWinpos->hwnd )) || wndPtr == WND_OTHER_PROCESS) return 0;
266
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) );
270
271         if( pNewClientRect->left != wndPtr->rectClient.left ||
272             pNewClientRect->top != wndPtr->rectClient.top )
273             pWinpos->flags &= ~SWP_NOCLIENTMOVE;
274
275         if( (pNewClientRect->right - pNewClientRect->left !=
276              wndPtr->rectClient.right - wndPtr->rectClient.left))
277             pWinpos->flags &= ~SWP_NOCLIENTSIZE;
278         else
279             wvrFlags &= ~WVR_HREDRAW;
280
281         if (pNewClientRect->bottom - pNewClientRect->top !=
282              wndPtr->rectClient.bottom - wndPtr->rectClient.top)
283             pWinpos->flags &= ~SWP_NOCLIENTSIZE;
284         else
285             wvrFlags &= ~WVR_VREDRAW;
286
287         validRects[0] = params.rgrc[1];
288         validRects[1] = params.rgrc[2];
289     }
290     else
291     {
292         if (!(pWinpos->flags & SWP_NOMOVE) &&
293             (pNewClientRect->left != wndPtr->rectClient.left ||
294              pNewClientRect->top != wndPtr->rectClient.top))
295             pWinpos->flags &= ~SWP_NOCLIENTMOVE;
296     }
297
298     if (pWinpos->flags & (SWP_NOCOPYBITS | SWP_NOREDRAW | SWP_SHOWWINDOW | SWP_HIDEWINDOW))
299     {
300         SetRectEmpty( &validRects[0] );
301         SetRectEmpty( &validRects[1] );
302     }
303     else get_valid_rects( &wndPtr->rectClient, pNewClientRect, wvrFlags, validRects );
304
305     WIN_ReleasePtr( wndPtr );
306     return wvrFlags;
307 }
308
309
310 struct move_owned_info
311 {
312     HWND owner;
313     HWND insert_after;
314 };
315
316 static BOOL CALLBACK move_owned_popups( HWND hwnd, LPARAM lparam )
317 {
318     struct move_owned_info *info = (struct move_owned_info *)lparam;
319
320     if (hwnd == info->owner) return FALSE;
321     if ((GetWindowLongW( hwnd, GWL_STYLE ) & WS_POPUP) &&
322         GetWindow( hwnd, GW_OWNER ) == info->owner)
323     {
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;
328     }
329     return TRUE;
330 }
331
332 /***********************************************************************
333  *           SWP_DoOwnedPopups
334  *
335  * fix Z order taking into account owned popups -
336  * basically we need to maintain them above the window that owns them
337  *
338  * FIXME: hide/show owned popups when owner visibility changes.
339  */
340 static HWND SWP_DoOwnedPopups(HWND hwnd, HWND hwndInsertAfter)
341 {
342     HWND owner = GetWindow( hwnd, GW_OWNER );
343     LONG style = GetWindowLongW( hwnd, GWL_STYLE );
344     struct move_owned_info info;
345
346     TRACE("(%p) hInsertAfter = %p\n", hwnd, hwndInsertAfter );
347
348     if ((style & WS_POPUP) && owner)
349     {
350         /* make sure this popup stays above the owner */
351
352         if( hwndInsertAfter != HWND_TOP )
353         {
354             HWND hwndLocalPrev = HWND_TOP;
355             HWND prev = GetWindow( owner, GW_HWNDPREV );
356
357             while (prev && prev != hwndInsertAfter)
358             {
359                 if (hwndLocalPrev == HWND_TOP && GetWindowLongW( prev, GWL_STYLE ) & WS_VISIBLE)
360                     hwndLocalPrev = prev;
361                 prev = GetWindow( prev, GW_HWNDPREV );
362             }
363             if (!prev) hwndInsertAfter = hwndLocalPrev;
364         }
365     }
366     else if (style & WS_CHILD) return hwndInsertAfter;
367
368     info.owner = hwnd;
369     info.insert_after = hwndInsertAfter;
370     EnumWindows( move_owned_popups, (LPARAM)&info );
371     return info.insert_after;
372 }
373
374
375 /* fix redundant flags and values in the WINDOWPOS structure */
376 static BOOL fixup_flags( WINDOWPOS *winpos )
377 {
378     HWND parent;
379     WND *wndPtr = WIN_GetPtr( winpos->hwnd );
380     BOOL ret = TRUE;
381
382     if (!wndPtr || wndPtr == WND_OTHER_PROCESS)
383     {
384         SetLastError( ERROR_INVALID_WINDOW_HANDLE );
385         return FALSE;
386     }
387     winpos->hwnd = wndPtr->hwndSelf;  /* make it a full handle */
388
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;
394
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;
399
400     parent = GetAncestor( winpos->hwnd, GA_PARENT );
401     if (!IsWindowVisible( parent )) winpos->flags |= SWP_NOREDRAW;
402
403     if (wndPtr->dwStyle & WS_VISIBLE) winpos->flags &= ~SWP_SHOWWINDOW;
404     else
405     {
406         winpos->flags &= ~SWP_HIDEWINDOW;
407         if (!(winpos->flags & SWP_SHOWWINDOW)) winpos->flags |= SWP_NOREDRAW;
408     }
409
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 */
413
414     if ((wndPtr->rectWindow.left == winpos->x) && (wndPtr->rectWindow.top == winpos->y))
415         winpos->flags |= SWP_NOMOVE;    /* Already the right position */
416
417     if ((wndPtr->dwStyle & (WS_POPUP | WS_CHILD)) != WS_CHILD)
418     {
419         if (!(winpos->flags & (SWP_NOACTIVATE|SWP_HIDEWINDOW))) /* Bring to the top when activating */
420         {
421             winpos->flags &= ~SWP_NOZORDER;
422             winpos->hwndInsertAfter = HWND_TOP;
423         }
424     }
425
426     /* Check hwndInsertAfter */
427     if (winpos->flags & SWP_NOZORDER) goto done;
428
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;
432
433       /* FIXME: TOPMOST not supported yet */
434     if ((winpos->hwndInsertAfter == HWND_TOPMOST) ||
435         (winpos->hwndInsertAfter == HWND_NOTOPMOST)) winpos->hwndInsertAfter = HWND_TOP;
436
437     /* hwndInsertAfter must be a sibling of the window */
438     if (winpos->hwndInsertAfter == HWND_TOP)
439     {
440         if (GetWindow(winpos->hwnd, GW_HWNDFIRST) == winpos->hwnd)
441             winpos->flags |= SWP_NOZORDER;
442     }
443     else if (winpos->hwndInsertAfter == HWND_BOTTOM)
444     {
445         if (GetWindow(winpos->hwnd, GW_HWNDLAST) == winpos->hwnd)
446             winpos->flags |= SWP_NOZORDER;
447     }
448     else
449     {
450         if (GetAncestor( winpos->hwndInsertAfter, GA_PARENT ) != parent) ret = FALSE;
451         else
452         {
453             /* don't need to change the Zorder of hwnd if it's already inserted
454              * after hwndInsertAfter or when inserting hwnd after itself.
455              */
456             if ((winpos->hwnd == winpos->hwndInsertAfter) ||
457                 (winpos->hwnd == GetWindow( winpos->hwndInsertAfter, GW_HWNDNEXT )))
458                 winpos->flags |= SWP_NOZORDER;
459         }
460     }
461  done:
462     WIN_ReleasePtr( wndPtr );
463     return ret;
464 }
465
466
467 /***********************************************************************
468  *              SetWindowStyle   (X11DRV.@)
469  *
470  * Update the X state of a window to reflect a style change
471  */
472 void X11DRV_SetWindowStyle( HWND hwnd, DWORD old_style )
473 {
474     Display *display = thread_display();
475     struct x11drv_win_data *data;
476     DWORD new_style, changed;
477
478     if (hwnd == GetDesktopWindow()) return;
479     if (!(data = X11DRV_get_win_data( hwnd ))) return;
480
481     new_style = GetWindowLongW( hwnd, GWL_STYLE );
482     changed = new_style ^ old_style;
483
484     if (changed & WS_VISIBLE)
485     {
486         if (data->whole_window && X11DRV_is_window_rect_mapped( &data->window_rect ))
487         {
488             if (new_style & WS_VISIBLE)
489             {
490                 TRACE( "mapping win %p\n", hwnd );
491                 X11DRV_sync_window_style( display, data );
492                 X11DRV_set_wm_hints( display, data );
493                 wine_tsx11_lock();
494                 XMapWindow( display, data->whole_window );
495                 wine_tsx11_unlock();
496             }
497             /* we don't unmap windows, that causes trouble with the window manager */
498         }
499         invalidate_dce( hwnd, &data->window_rect );
500     }
501
502     if (changed & WS_DISABLED)
503     {
504         if (data->whole_window && data->managed)
505         {
506             XWMHints *wm_hints;
507             wine_tsx11_lock();
508             if (!(wm_hints = XGetWMHints( display, data->whole_window )))
509                 wm_hints = XAllocWMHints();
510             if (wm_hints)
511             {
512                 wm_hints->flags |= InputHint;
513                 wm_hints->input = !(new_style & WS_DISABLED);
514                 XSetWMHints( display, data->whole_window, wm_hints );
515                 XFree(wm_hints);
516             }
517             wine_tsx11_unlock();
518         }
519     }
520 }
521
522
523 /***********************************************************************
524  *           X11DRV_set_window_pos
525  *
526  * Set a window position and Z order.
527  */
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 )
530 {
531     struct x11drv_win_data *data;
532     RECT new_whole_rect;
533     WND *win;
534     DWORD old_style, new_style;
535     BOOL ret;
536
537     if (!(data = X11DRV_get_win_data( hwnd ))) return FALSE;
538
539     new_whole_rect = *rectWindow;
540     X11DRV_window_to_X_rect( data, &new_whole_rect );
541
542     if (!IsRectEmpty( &valid_rects[0] ))
543     {
544         int x_offset = 0, y_offset = 0;
545
546         if (data->whole_window)
547         {
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;
551         }
552
553         if (x_offset != valid_rects[1].left - valid_rects[0].left ||
554             y_offset != valid_rects[1].top - valid_rects[0].top)
555         {
556             /* FIXME: should copy the window bits here */
557             valid_rects = NULL;
558         }
559     }
560
561     if (!(win = WIN_GetPtr( hwnd ))) return FALSE;
562     if (win == WND_OTHER_PROCESS)
563     {
564         if (IsWindow( hwnd )) ERR( "cannot set rectangles of other process window %p\n", hwnd );
565         return FALSE;
566     }
567     SERVER_START_REQ( set_window_pos )
568     {
569         req->handle        = hwnd;
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] ))
581         {
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) );
585         }
586         ret = !wine_server_call( req );
587         new_style = reply->new_style;
588     }
589     SERVER_END_REQ;
590
591     if (win == WND_DESKTOP)
592     {
593         data->whole_rect = data->client_rect = data->window_rect = *rectWindow;
594         return ret;
595     }
596
597     if (ret)
598     {
599         Display *display = thread_display();
600
601         /* invalidate DCEs */
602
603         if ((((swp_flags & SWP_AGG_NOPOSCHANGE) != SWP_AGG_NOPOSCHANGE) && (new_style & WS_VISIBLE)) ||
604              (swp_flags & (SWP_HIDEWINDOW | SWP_SHOWWINDOW)))
605         {
606             RECT rect;
607             UnionRect( &rect, rectWindow, &win->rectWindow );
608             invalidate_dce( hwnd, &rect );
609         }
610
611         win->rectWindow   = *rectWindow;
612         win->rectClient   = *rectClient;
613         old_style         = win->dwStyle;
614         win->dwStyle      = new_style;
615         data->window_rect = *rectWindow;
616
617         TRACE( "win %p window %s client %s style %08lx\n",
618                hwnd, wine_dbgstr_rect(rectWindow), wine_dbgstr_rect(rectClient), new_style );
619
620         /* FIXME: copy the valid bits */
621
622         if (data->whole_window && !(swp_flags & SWP_WINE_NOHOSTMOVE))
623         {
624             if ((old_style & WS_VISIBLE) && !(new_style & WS_VISIBLE))
625             {
626                 /* window got hidden, unmap it */
627                 TRACE( "unmapping win %p\n", hwnd );
628                 wine_tsx11_lock();
629                 XUnmapWindow( display, data->whole_window );
630                 wine_tsx11_unlock();
631             }
632             else if ((new_style & WS_VISIBLE) && !X11DRV_is_window_rect_mapped( rectWindow ))
633             {
634                 /* resizing to zero size or off screen -> unmap */
635                 TRACE( "unmapping zero size or off-screen win %p\n", hwnd );
636                 wine_tsx11_lock();
637                 XUnmapWindow( display, data->whole_window );
638                 wine_tsx11_unlock();
639             }
640         }
641
642         X11DRV_sync_window_position( display, data, swp_flags, rectClient, &new_whole_rect );
643
644         if (data->whole_window && !(swp_flags & SWP_WINE_NOHOSTMOVE))
645         {
646             if (!(old_style & WS_VISIBLE) && (new_style & WS_VISIBLE))
647             {
648                 /* window got shown, map it */
649                 if (X11DRV_is_window_rect_mapped( rectWindow ))
650                 {
651                     TRACE( "mapping win %p\n", hwnd );
652                     X11DRV_sync_window_style( display, data );
653                     X11DRV_set_wm_hints( display, data );
654                     wine_tsx11_lock();
655                     XMapWindow( display, data->whole_window );
656                     wine_tsx11_unlock();
657                 }
658             }
659             else if ((new_style & WS_VISIBLE) && X11DRV_is_window_rect_mapped( rectWindow ))
660             {
661                 /* resizing from zero size to non-zero -> map */
662                 TRACE( "mapping non zero size or off-screen win %p\n", hwnd );
663                 wine_tsx11_lock();
664                 XMapWindow( display, data->whole_window );
665                 wine_tsx11_unlock();
666             }
667             wine_tsx11_lock();
668             XFlush( display );  /* FIXME: should not be necessary */
669             wine_tsx11_unlock();
670         }
671     }
672     WIN_ReleasePtr( win );
673     return ret;
674 }
675
676
677 /***********************************************************************
678  *              SetWindowPos   (X11DRV.@)
679  */
680 BOOL X11DRV_SetWindowPos( WINDOWPOS *winpos )
681 {
682     RECT newWindowRect, newClientRect, valid_rects[2];
683     UINT orig_flags;
684
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);
688
689     orig_flags = winpos->flags;
690     winpos->flags &= ~SWP_WINE_NOHOSTMOVE;
691
692     /* Check window handle */
693     if (winpos->hwnd == GetDesktopWindow()) return FALSE;
694
695     /* First make sure that coordinates are valid for WM_WINDOWPOSCHANGING */
696     if (!(winpos->flags & SWP_NOMOVE))
697     {
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;
702     }
703     if (!(winpos->flags & SWP_NOSIZE))
704     {
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;
709     }
710
711     if (!SWP_DoWinPosChanging( winpos, &newWindowRect, &newClientRect )) return FALSE;
712
713     /* Fix redundant flags */
714     if (!fixup_flags( winpos )) return FALSE;
715
716     if((winpos->flags & (SWP_NOZORDER | SWP_HIDEWINDOW | SWP_SHOWWINDOW)) != SWP_NOZORDER)
717     {
718         if (GetAncestor( winpos->hwnd, GA_PARENT ) == GetDesktopWindow())
719             winpos->hwndInsertAfter = SWP_DoOwnedPopups( winpos->hwnd, winpos->hwndInsertAfter );
720     }
721
722     /* Common operations */
723
724     SWP_DoNCCalcSize( winpos, &newWindowRect, &newClientRect, valid_rects );
725
726     if (!X11DRV_set_window_pos( winpos->hwnd, winpos->hwndInsertAfter,
727                                 &newWindowRect, &newClientRect, orig_flags, valid_rects ))
728         return FALSE;
729
730     if( winpos->flags & SWP_HIDEWINDOW )
731         HideCaret(winpos->hwnd);
732     else if (winpos->flags & SWP_SHOWWINDOW)
733         ShowCaret(winpos->hwnd);
734
735     if (!(winpos->flags & (SWP_NOACTIVATE|SWP_HIDEWINDOW)))
736     {
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 );
740         else
741             SetForegroundWindow( winpos->hwnd );
742     }
743
744       /* And last, send the WM_WINDOWPOSCHANGED message */
745
746     TRACE("\tstatus flags = %04x\n", winpos->flags & SWP_AGG_STATUSFLAGS);
747
748     if (((winpos->flags & SWP_AGG_STATUSFLAGS) != SWP_AGG_NOPOSCHANGE))
749     {
750         /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
751            and always contains final window position.
752          */
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 );
758     }
759
760     return TRUE;
761 }
762
763
764 /***********************************************************************
765  *           WINPOS_FindIconPos
766  *
767  * Find a suitable place for an iconic window.
768  */
769 static POINT WINPOS_FindIconPos( HWND hwnd, POINT pt )
770 {
771     RECT rect, rectParent;
772     HWND parent, child;
773     HRGN hrgn, tmp;
774     int xspacing, yspacing;
775
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 */
781
782     xspacing = GetSystemMetrics(SM_CXICONSPACING);
783     yspacing = GetSystemMetrics(SM_CYICONSPACING);
784
785     /* Check if another icon already occupies this spot */
786     /* FIXME: this is completely inefficient */
787
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 ))
791     {
792         WND *childPtr;
793         if (child == hwnd) continue;
794         if ((GetWindowLongW( child, GWL_STYLE ) & (WS_VISIBLE|WS_MINIMIZE)) != (WS_VISIBLE|WS_MINIMIZE))
795             continue;
796         if (!(childPtr = WIN_GetPtr( child )) || childPtr == WND_OTHER_PROCESS)
797             continue;
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 );
802     }
803     DeleteObject( tmp );
804
805     for (rect.bottom = rectParent.bottom; rect.bottom >= yspacing; rect.bottom -= yspacing)
806     {
807         for (rect.left = rectParent.left; rect.left <= rectParent.right - xspacing; rect.left += xspacing)
808         {
809             rect.right = rect.left + xspacing;
810             rect.top = rect.bottom - yspacing;
811             if (!RectInRegion( hrgn, &rect ))
812             {
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 );
817                 return pt;
818             }
819         }
820     }
821     DeleteObject( hrgn );
822     pt.x = pt.y = 0;
823     return pt;
824 }
825
826
827
828
829
830 UINT WINPOS_MinMaximize( HWND hwnd, UINT cmd, LPRECT rect )
831 {
832     WND *wndPtr;
833     UINT swpFlags = 0;
834     POINT size;
835     LONG old_style;
836     WINDOWPLACEMENT wpl;
837
838     TRACE("%p %u\n", hwnd, cmd );
839
840     wpl.length = sizeof(wpl);
841     GetWindowPlacement( hwnd, &wpl );
842
843     if (HOOK_CallHooks( WH_CBT, HCBT_MINMAX, (WPARAM)hwnd, cmd, TRUE ))
844         return SWP_NOSIZE | SWP_NOMOVE;
845
846     if (IsIconic( hwnd ))
847     {
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;
851     }
852
853     switch( cmd )
854     {
855     case SW_MINIMIZE:
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 );
860
861         WIN_SetStyle( hwnd, WS_MINIMIZE, WS_MAXIMIZE );
862
863         X11DRV_set_iconic_state( hwnd );
864
865         wpl.ptMinPosition = WINPOS_FindIconPos( hwnd, wpl.ptMinPosition );
866
867         SetRect( rect, wpl.ptMinPosition.x, wpl.ptMinPosition.y,
868                  GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON) );
869         swpFlags |= SWP_NOCOPYBITS;
870         break;
871
872     case SW_MAXIMIZE:
873         WINPOS_GetMinMaxInfo( hwnd, &size, &wpl.ptMaxPosition, NULL, NULL );
874
875         old_style = WIN_SetStyle( hwnd, WS_MAXIMIZE, WS_MINIMIZE );
876         if (old_style & WS_MINIMIZE)
877         {
878             WINPOS_ShowIconTitle( hwnd, FALSE );
879             X11DRV_set_iconic_state( hwnd );
880         }
881         SetRect( rect, wpl.ptMaxPosition.x, wpl.ptMaxPosition.y, size.x, size.y );
882         break;
883
884     case SW_RESTORE:
885         old_style = WIN_SetStyle( hwnd, 0, WS_MINIMIZE | WS_MAXIMIZE );
886         if (old_style & WS_MINIMIZE)
887         {
888             BOOL restore_max;
889
890             WINPOS_ShowIconTitle( hwnd, FALSE );
891             X11DRV_set_iconic_state( hwnd );
892
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 );
896             if (restore_max)
897             {
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 );
902                 break;
903             }
904         }
905         else if (!(old_style & WS_MAXIMIZE)) break;
906
907         /* Restore to normal position */
908
909         *rect = wpl.rcNormalPosition;
910         rect->right -= rect->left;
911         rect->bottom -= rect->top;
912
913         break;
914     }
915
916     return swpFlags;
917 }
918
919
920 /***********************************************************************
921  *              ShowWindow   (X11DRV.@)
922  */
923 BOOL X11DRV_ShowWindow( HWND hwnd, INT cmd )
924 {
925     WND *wndPtr;
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};
930     UINT swp = 0;
931
932     if (hwnd == GetDesktopWindow()) return FALSE;
933
934     TRACE("hwnd=%p, cmd=%d, wasVisible %d\n", hwnd, cmd, wasVisible);
935
936     switch(cmd)
937     {
938         case SW_HIDE:
939             if (!wasVisible) return FALSE;
940             showFlag = FALSE;
941             swp |= SWP_HIDEWINDOW | SWP_NOSIZE | SWP_NOMOVE;
942             if (hwnd != GetActiveWindow())
943                 swp |= SWP_NOACTIVATE | SWP_NOZORDER;
944             break;
945
946         case SW_SHOWMINNOACTIVE:
947             swp |= SWP_NOACTIVATE | SWP_NOZORDER;
948             /* fall through */
949         case SW_SHOWMINIMIZED:
950         case SW_FORCEMINIMIZE: /* FIXME: Does not work if thread is hung. */
951             swp |= SWP_SHOWWINDOW;
952             /* fall through */
953         case SW_MINIMIZE:
954             swp |= SWP_FRAMECHANGED;
955             if( !(style & WS_MINIMIZE) )
956                  swp |= WINPOS_MinMaximize( hwnd, SW_MINIMIZE, &newPos );
957             else swp |= SWP_NOSIZE | SWP_NOMOVE;
958             break;
959
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;
965             break;
966
967         case SW_SHOWNA:
968             swp |= SWP_NOACTIVATE | SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE;
969             if (style & WS_CHILD) swp |= SWP_NOZORDER;
970             break;
971         case SW_SHOW:
972             if (wasVisible) return TRUE;
973             swp |= SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE;
974             break;
975
976         case SW_RESTORE:
977             swp |= SWP_FRAMECHANGED;
978             /* fall through */
979         case SW_SHOWNOACTIVATE:
980             swp |= SWP_NOACTIVATE | SWP_NOZORDER;
981             /* fall through */
982         case SW_SHOWNORMAL:  /* same as SW_NORMAL: */
983         case SW_SHOWDEFAULT: /* FIXME: should have its own handler */
984             swp |= SWP_SHOWWINDOW;
985
986             if (style & (WS_MINIMIZE | WS_MAXIMIZE))
987                  swp |= WINPOS_MinMaximize( hwnd, SW_RESTORE, &newPos );
988             else swp |= SWP_NOSIZE | SWP_NOMOVE;
989             break;
990     }
991
992     if ((showFlag != wasVisible || cmd == SW_SHOWNA) && cmd != SW_SHOWMAXIMIZED)
993     {
994         SendMessageW( hwnd, WM_SHOWWINDOW, showFlag, 0 );
995         if (!IsWindow( hwnd )) return wasVisible;
996     }
997
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;
1001
1002     SetWindowPos( hwnd, HWND_TOP, newPos.left, newPos.top,
1003                   newPos.right, newPos.bottom, LOWORD(swp) );
1004     if (cmd == SW_HIDE)
1005     {
1006         HWND hFocus;
1007
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
1010          * asynchronously.
1011          */
1012
1013         if (hwnd == GetActiveWindow())
1014             WINPOS_ActivateOtherWindow(hwnd);
1015
1016         /* Revert focus to parent */
1017         hFocus = GetFocus();
1018         if (hwnd == hFocus || IsChild(hwnd, hFocus))
1019         {
1020             HWND parent = GetAncestor(hwnd, GA_PARENT);
1021             if (parent == GetDesktopWindow()) parent = 0;
1022             SetFocus(parent);
1023         }
1024     }
1025
1026     if (IsIconic(hwnd)) WINPOS_ShowIconTitle( hwnd, TRUE );
1027
1028     if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return wasVisible;
1029
1030     if (wndPtr->flags & WIN_NEED_SIZE)
1031     {
1032         /* should happen only in CreateWindowEx() */
1033         int wParam = SIZE_RESTORED;
1034         RECT client = wndPtr->rectClient;
1035
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 );
1040
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 ));
1044     }
1045     else WIN_ReleasePtr( wndPtr );
1046
1047     return wasVisible;
1048 }
1049
1050
1051 /**********************************************************************
1052  *              X11DRV_MapNotify
1053  */
1054 void X11DRV_MapNotify( HWND hwnd, XEvent *event )
1055 {
1056     struct x11drv_win_data *data;
1057     HWND hwndFocus = GetFocus();
1058     WND *win;
1059
1060     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1061
1062     if (!(win = WIN_GetPtr( hwnd ))) return;
1063
1064     if (data->managed && (win->dwStyle & WS_VISIBLE) && (win->dwStyle & WS_MINIMIZE))
1065     {
1066         int x, y;
1067         unsigned int width, height, border, depth;
1068         Window root, top;
1069         RECT rect;
1070         LONG style = WS_VISIBLE;
1071
1072         /* FIXME: hack */
1073         wine_tsx11_lock();
1074         XGetGeometry( event->xmap.display, data->whole_window, &root, &x, &y, &width, &height,
1075                         &border, &depth );
1076         XTranslateCoordinates( event->xmap.display, data->whole_window, root, 0, 0, &x, &y, &top );
1077         wine_tsx11_unlock();
1078         rect.left   = x;
1079         rect.top    = y;
1080         rect.right  = x + width;
1081         rect.bottom = y + height;
1082         X11DRV_X_to_window_rect( data, &rect );
1083
1084         invalidate_dce( hwnd, &data->window_rect );
1085
1086         if (win->flags & WIN_RESTORE_MAX) style |= WS_MAXIMIZE;
1087         WIN_SetStyle( hwnd, style, WS_MINIMIZE );
1088         WIN_ReleasePtr( win );
1089
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 );
1093     }
1094     else WIN_ReleasePtr( win );
1095     if (hwndFocus && IsChild( hwnd, hwndFocus )) X11DRV_SetFocus(hwndFocus);  /* FIXME */
1096 }
1097
1098
1099 /**********************************************************************
1100  *              X11DRV_UnmapNotify
1101  */
1102 void X11DRV_UnmapNotify( HWND hwnd, XEvent *event )
1103 {
1104     struct x11drv_win_data *data;
1105     WND *win;
1106
1107     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1108
1109     if (!(win = WIN_GetPtr( hwnd ))) return;
1110
1111     if ((win->dwStyle & WS_VISIBLE) && data->managed &&
1112         X11DRV_is_window_rect_mapped( &win->rectWindow ))
1113     {
1114         if (win->dwStyle & WS_MAXIMIZE)
1115             win->flags |= WIN_RESTORE_MAX;
1116         else
1117             win->flags &= ~WIN_RESTORE_MAX;
1118
1119         WIN_SetStyle( hwnd, WS_MINIMIZE, WS_MAXIMIZE );
1120         WIN_ReleasePtr( win );
1121
1122         EndMenu();
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 );
1126     }
1127     else WIN_ReleasePtr( win );
1128 }
1129
1130
1131 /***********************************************************************
1132  *              X11DRV_handle_desktop_resize
1133  */
1134 void X11DRV_handle_desktop_resize( unsigned int width, unsigned int height )
1135 {
1136     RECT rect;
1137     HWND hwnd = GetDesktopWindow();
1138
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 );
1146 }
1147
1148
1149 /***********************************************************************
1150  *              X11DRV_ConfigureNotify
1151  */
1152 void X11DRV_ConfigureNotify( HWND hwnd, XEvent *xev )
1153 {
1154     XConfigureEvent *event = &xev->xconfigure;
1155     struct x11drv_win_data *data;
1156     RECT rect;
1157     UINT flags;
1158     int cx, cy, x = event->x, y = event->y;
1159
1160     if (!hwnd) return;
1161     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1162
1163     /* Get geometry */
1164
1165     if (!event->send_event)  /* normal event, need to map coordinates to the root */
1166     {
1167         Window child;
1168         wine_tsx11_lock();
1169         XTranslateCoordinates( event->display, data->whole_window, root_window,
1170                                0, 0, &x, &y, &child );
1171         wine_tsx11_unlock();
1172     }
1173     rect.left   = x;
1174     rect.top    = y;
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 );
1181
1182     x     = rect.left;
1183     y     = rect.top;
1184     cx    = rect.right - rect.left;
1185     cy    = rect.bottom - rect.top;
1186     flags = SWP_NOACTIVATE | SWP_NOZORDER | SWP_WINE_NOHOSTMOVE;
1187
1188     /* Compare what has changed */
1189
1190     GetWindowRect( hwnd, &rect );
1191     if (rect.left == x && rect.top == y) flags |= SWP_NOMOVE;
1192     else
1193         TRACE( "%p moving from (%ld,%ld) to (%d,%d)\n",
1194                hwnd, rect.left, rect.top, x, y );
1195
1196     if ((rect.right - rect.left == cx && rect.bottom - rect.top == cy) ||
1197         IsIconic(hwnd) ||
1198         (IsRectEmpty( &rect ) && cx == 1 && cy == 1))
1199     {
1200         if (flags & SWP_NOMOVE) return;  /* if nothing changed, don't do anything */
1201         flags |= SWP_NOSIZE;
1202     }
1203     else
1204         TRACE( "%p resizing from (%ldx%ld) to (%dx%d)\n",
1205                hwnd, rect.right - rect.left, rect.bottom - rect.top, cx, cy );
1206
1207     SetWindowPos( hwnd, 0, x, y, cx, cy, flags );
1208 }
1209
1210
1211 /***********************************************************************
1212  *              SetWindowRgn  (X11DRV.@)
1213  *
1214  * Assign specified region to window (for non-rectangular windows)
1215  */
1216 int X11DRV_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
1217 {
1218     struct x11drv_win_data *data;
1219
1220     if (!(data = X11DRV_get_win_data( hwnd )))
1221     {
1222         if (IsWindow( hwnd ))
1223             FIXME( "not supported on other thread window %p\n", hwnd );
1224         SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1225         return FALSE;
1226     }
1227
1228 #ifdef HAVE_LIBXSHAPE
1229     if (data->whole_window)
1230     {
1231         Display *display = thread_display();
1232
1233         if (!hrgn)
1234         {
1235             wine_tsx11_lock();
1236             XShapeCombineMask( display, data->whole_window,
1237                                ShapeBounding, 0, 0, None, ShapeSet );
1238             wine_tsx11_unlock();
1239         }
1240         else
1241         {
1242             RGNDATA *pRegionData = X11DRV_GetRegionData( hrgn, 0 );
1243             if (pRegionData)
1244             {
1245                 wine_tsx11_lock();
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);
1254             }
1255         }
1256     }
1257 #endif  /* HAVE_LIBXSHAPE */
1258
1259     invalidate_dce( hwnd, &data->window_rect );
1260     return TRUE;
1261 }
1262
1263
1264 /***********************************************************************
1265  *           draw_moving_frame
1266  *
1267  * Draw the frame used when moving or resizing window.
1268  *
1269  * FIXME:  This causes problems in Win95 mode.  (why?)
1270  */
1271 static void draw_moving_frame( HDC hdc, RECT *rect, BOOL thickframe )
1272 {
1273     if (thickframe)
1274     {
1275         const int width = GetSystemMetrics(SM_CXFRAME);
1276         const int height = GetSystemMetrics(SM_CYFRAME);
1277
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 );
1288     }
1289     else DrawFocusRect( hdc, rect );
1290 }
1291
1292
1293 /***********************************************************************
1294  *           start_size_move
1295  *
1296  * Initialisation of a move or resize, when initiatied from a menu choice.
1297  * Return hit test code for caption or sizing border.
1298  */
1299 static LONG start_size_move( HWND hwnd, WPARAM wParam, POINT *capturePoint, LONG style )
1300 {
1301     LONG hittest = 0;
1302     POINT pt;
1303     MSG msg;
1304     RECT rectWindow;
1305
1306     GetWindowRect( hwnd, &rectWindow );
1307
1308     if ((wParam & 0xfff0) == SC_MOVE)
1309     {
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;
1325         *capturePoint = pt;
1326     }
1327     else  /* SC_SIZE */
1328     {
1329         pt.x = pt.y = 0;
1330         while(!hittest)
1331         {
1332             GetMessageW( &msg, 0, WM_KEYFIRST, WM_MOUSELAST );
1333             if (CallMsgFilterW( &msg, MSGF_SIZE )) continue;
1334
1335             switch(msg.message)
1336             {
1337             case WM_MOUSEMOVE:
1338                 pt = msg.pt;
1339                 hittest = SendMessageW( hwnd, WM_NCHITTEST, 0, MAKELONG( pt.x, pt.y ) );
1340                 if ((hittest < HTLEFT) || (hittest > HTBOTTOMRIGHT)) hittest = 0;
1341                 break;
1342
1343             case WM_LBUTTONUP:
1344                 return 0;
1345
1346             case WM_KEYDOWN:
1347                 switch(msg.wParam)
1348                 {
1349                 case VK_UP:
1350                     hittest = HTTOP;
1351                     pt.x =(rectWindow.left+rectWindow.right)/2;
1352                     pt.y = rectWindow.top + GetSystemMetrics(SM_CYFRAME) / 2;
1353                     break;
1354                 case VK_DOWN:
1355                     hittest = HTBOTTOM;
1356                     pt.x =(rectWindow.left+rectWindow.right)/2;
1357                     pt.y = rectWindow.bottom - GetSystemMetrics(SM_CYFRAME) / 2;
1358                     break;
1359                 case VK_LEFT:
1360                     hittest = HTLEFT;
1361                     pt.x = rectWindow.left + GetSystemMetrics(SM_CXFRAME) / 2;
1362                     pt.y =(rectWindow.top+rectWindow.bottom)/2;
1363                     break;
1364                 case VK_RIGHT:
1365                     hittest = HTRIGHT;
1366                     pt.x = rectWindow.right - GetSystemMetrics(SM_CXFRAME) / 2;
1367                     pt.y =(rectWindow.top+rectWindow.bottom)/2;
1368                     break;
1369                 case VK_RETURN:
1370                 case VK_ESCAPE: return 0;
1371                 }
1372             }
1373         }
1374         *capturePoint = pt;
1375     }
1376     SetCursorPos( pt.x, pt.y );
1377     SendMessageW( hwnd, WM_SETCURSOR, (WPARAM)hwnd, MAKELONG( hittest, WM_MOUSEMOVE ));
1378     return hittest;
1379 }
1380
1381
1382 /***********************************************************************
1383  *           set_movesize_capture
1384  */
1385 static void set_movesize_capture( HWND hwnd )
1386 {
1387     HWND previous = 0;
1388
1389     SERVER_START_REQ( set_capture_window )
1390     {
1391         req->handle = hwnd;
1392         req->flags  = CAPTURE_MOVESIZE;
1393         if (!wine_server_call_err( req ))
1394         {
1395             previous = reply->previous;
1396             hwnd = reply->full_handle;
1397         }
1398     }
1399     SERVER_END_REQ;
1400     if (previous && previous != hwnd)
1401         SendMessageW( previous, WM_CAPTURECHANGED, 0, (LPARAM)hwnd );
1402 }
1403
1404 /***********************************************************************
1405  *           X11DRV_WMMoveResizeWindow
1406  *
1407  * Tells the window manager to initiate a move or resize operation.
1408  *
1409  * SEE
1410  *  http://freedesktop.org/Standards/wm-spec/1.3/ar01s04.html
1411  *  or search for "_NET_WM_MOVERESIZE"
1412  */
1413 static void X11DRV_WMMoveResizeWindow( HWND hwnd, int x, int y, int dir )
1414 {
1415     XEvent xev;
1416     Display *display = thread_display();
1417
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 */
1430
1431     /* need to ungrab the pointer that may have been automatically grabbed
1432      * with a ButtonPress event */
1433     wine_tsx11_lock();
1434     XUngrabPointer( display, CurrentTime );
1435     XSendEvent(display, root_window, False, SubstructureNotifyMask, &xev);
1436     wine_tsx11_unlock();
1437 }
1438
1439 /***********************************************************************
1440  *           SysCommandSizeMove   (X11DRV.@)
1441  *
1442  * Perform SC_MOVE and SC_SIZE commands.
1443  */
1444 void X11DRV_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
1445 {
1446     MSG msg;
1447     RECT sizingRect, mouseRect, origRect;
1448     HDC hdc;
1449     HWND parent;
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;
1458     BOOL    moved = FALSE;
1459     DWORD     dwPoint = GetMessagePos ();
1460     BOOL DragFullWindows = FALSE;
1461     BOOL grab;
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;
1466
1467     pt.x = (short)LOWORD(dwPoint);
1468     pt.y = (short)HIWORD(dwPoint);
1469     capturePoint = pt;
1470
1471     if (IsZoomed(hwnd) || !IsWindowVisible(hwnd)) return;
1472
1473     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1474
1475     /* if we are managed then we let the WM do all the work */
1476     if (data->managed)
1477     {
1478         int dir;
1479         if (syscommand == SC_MOVE)
1480         {
1481             if (!hittest) dir = _NET_WM_MOVERESIZE_MOVE_KEYBOARD;
1482             else dir = _NET_WM_MOVERESIZE_MOVE;
1483         }
1484         else if (!hittest) dir = _NET_WM_MOVERESIZE_SIZE_KEYBOARD;
1485         else
1486             switch (hittest)
1487             {
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;
1496             default:
1497                 ERR("Invalid hittest value: %ld\n", hittest);
1498                 dir = _NET_WM_MOVERESIZE_SIZE_KEYBOARD;
1499             }
1500         X11DRV_WMMoveResizeWindow( hwnd, pt.x, pt.y, dir );
1501         return;
1502     }
1503
1504     SystemParametersInfoA(SPI_GETDRAGFULLWINDOWS, 0, &DragFullWindows, 0);
1505
1506     if (syscommand == SC_MOVE)
1507     {
1508         if (!hittest) hittest = start_size_move( hwnd, wParam, &capturePoint, style );
1509         if (!hittest) return;
1510     }
1511     else  /* SC_SIZE */
1512     {
1513         if ( hittest && (syscommand != SC_MOUSEMENU) )
1514             hittest += (HTLEFT - WMSZ_LEFT);
1515         else
1516         {
1517             set_movesize_capture( hwnd );
1518             hittest = start_size_move( hwnd, wParam, &capturePoint, style );
1519             if (!hittest)
1520             {
1521                 set_movesize_capture(0);
1522                 return;
1523             }
1524         }
1525     }
1526
1527       /* Get min/max info */
1528
1529     WINPOS_GetMinMaxInfo( hwnd, NULL, NULL, &minTrack, &maxTrack );
1530     GetWindowRect( hwnd, &sizingRect );
1531     if (style & WS_CHILD)
1532     {
1533         parent = GetParent(hwnd);
1534         /* make sizing rect relative to parent */
1535         MapWindowPoints( 0, parent, (POINT*)&sizingRect, 2 );
1536         GetClientRect( parent, &mouseRect );
1537     }
1538     else
1539     {
1540         parent = 0;
1541         SetRect(&mouseRect, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN));
1542     }
1543     origRect = sizingRect;
1544
1545     if (ON_LEFT_BORDER(hittest))
1546     {
1547         mouseRect.left  = max( mouseRect.left, sizingRect.right-maxTrack.x );
1548         mouseRect.right = min( mouseRect.right, sizingRect.right-minTrack.x );
1549     }
1550     else if (ON_RIGHT_BORDER(hittest))
1551     {
1552         mouseRect.left  = max( mouseRect.left, sizingRect.left+minTrack.x );
1553         mouseRect.right = min( mouseRect.right, sizingRect.left+maxTrack.x );
1554     }
1555     if (ON_TOP_BORDER(hittest))
1556     {
1557         mouseRect.top    = max( mouseRect.top, sizingRect.bottom-maxTrack.y );
1558         mouseRect.bottom = min( mouseRect.bottom,sizingRect.bottom-minTrack.y);
1559     }
1560     else if (ON_BOTTOM_BORDER(hittest))
1561     {
1562         mouseRect.top    = max( mouseRect.top, sizingRect.top+minTrack.y );
1563         mouseRect.bottom = min( mouseRect.bottom, sizingRect.top+maxTrack.y );
1564     }
1565     if (parent) MapWindowPoints( parent, 0, (LPPOINT)&mouseRect, 2 );
1566
1567     /* Retrieve a default cache DC (without using the window style) */
1568     hdc = GetDCEx( parent, 0, DCX_CACHE );
1569
1570     if( iconic ) /* create a cursor for dragging */
1571     {
1572         hDragCursor = (HCURSOR)GetClassLongPtrW( hwnd, GCLP_HICON);
1573         if( !hDragCursor ) hDragCursor = (HCURSOR)SendMessageW( hwnd, WM_QUERYDRAGICON, 0, 0L);
1574         if( !hDragCursor ) iconic = FALSE;
1575     }
1576
1577     /* repaint the window before moving it around */
1578     RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
1579
1580     SendMessageA( hwnd, WM_ENTERSIZEMOVE, 0, 0 );
1581     set_movesize_capture( hwnd );
1582
1583     /* grab the server only when moving top-level windows without desktop */
1584     grab = (!DragFullWindows && !parent && (root_window == DefaultRootWindow(gdi_display)));
1585
1586     if (grab)
1587     {
1588         wine_tsx11_lock();
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();
1596     }
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;
1599
1600     wine_tsx11_lock();
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;
1606
1607     while(1)
1608     {
1609         int dx = 0, dy = 0;
1610
1611         if (!GetMessageW( &msg, 0, WM_KEYFIRST, WM_MOUSELAST )) break;
1612         if (CallMsgFilterW( &msg, MSGF_SIZE )) continue;
1613
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;
1618
1619         if ((msg.message != WM_KEYDOWN) && (msg.message != WM_MOUSEMOVE))
1620             continue;  /* We are not interested in other messages */
1621
1622         pt = msg.pt;
1623
1624         if (msg.message == WM_KEYDOWN) switch(msg.wParam)
1625         {
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;
1630         }
1631
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 );
1636
1637         dx = pt.x - capturePoint.x;
1638         dy = pt.y - capturePoint.y;
1639
1640         if (dx || dy)
1641         {
1642             if( !moved )
1643             {
1644                 moved = TRUE;
1645
1646                 if( iconic ) /* ok, no system popup tracking */
1647                 {
1648                     hOldCursor = SetCursor(hDragCursor);
1649                     ShowCursor( TRUE );
1650                     WINPOS_ShowIconTitle( hwnd, FALSE );
1651                 }
1652                 else if(!DragFullWindows)
1653                     draw_moving_frame( hdc, &sizingRect, thickframe );
1654             }
1655
1656             if (msg.message == WM_KEYDOWN) SetCursorPos( pt.x, pt.y );
1657             else
1658             {
1659                 RECT newRect = sizingRect;
1660                 WPARAM wpSizingHit = 0;
1661
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 );
1668                 capturePoint = pt;
1669
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 );
1674
1675                 if (!iconic)
1676                 {
1677                     if(!DragFullWindows)
1678                         draw_moving_frame( hdc, &newRect, thickframe );
1679                     else
1680                         SetWindowPos( hwnd, 0, newRect.left, newRect.top,
1681                                       newRect.right - newRect.left,
1682                                       newRect.bottom - newRect.top,
1683                                       ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1684                 }
1685                 sizingRect = newRect;
1686             }
1687         }
1688     }
1689
1690     set_movesize_capture(0);
1691     if( iconic )
1692     {
1693         if( moved ) /* restore cursors, show icon title later on */
1694         {
1695             ShowCursor( FALSE );
1696             SetCursor( hOldCursor );
1697         }
1698     }
1699     else if (moved && !DragFullWindows)
1700         draw_moving_frame( hdc, &sizingRect, thickframe );
1701
1702     ReleaseDC( parent, hdc );
1703
1704     wine_tsx11_lock();
1705     XUngrabPointer( thread_data->display, CurrentTime );
1706     if (grab)
1707     {
1708         XSync( thread_data->display, False );
1709         XUngrabServer( thread_data->display );
1710         XSync( thread_data->display, False );
1711         gdi_display = old_gdi_display;
1712     }
1713     wine_tsx11_unlock();
1714     thread_data->grab_window = None;
1715
1716     if (HOOK_CallHooks( WH_CBT, HCBT_MOVESIZE, (WPARAM)hwnd, (LPARAM)&sizingRect, TRUE ))
1717         moved = FALSE;
1718
1719     SendMessageA( hwnd, WM_EXITSIZEMOVE, 0, 0 );
1720     SendMessageA( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L);
1721
1722     /* window moved or resized */
1723     if (moved)
1724     {
1725         /* if the moving/resizing isn't canceled call SetWindowPos
1726          * with the new position or the new size of the window
1727          */
1728         if (!((msg.message == WM_KEYDOWN) && (msg.wParam == VK_ESCAPE)) )
1729         {
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 );
1736         }
1737         else
1738         { /* restore previous size/position */
1739             if(DragFullWindows)
1740                 SetWindowPos( hwnd, 0, origRect.left, origRect.top,
1741                               origRect.right - origRect.left,
1742                               origRect.bottom - origRect.top,
1743                               ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1744         }
1745     }
1746
1747     if (IsIconic(hwnd))
1748     {
1749         /* Single click brings up the system menu when iconized */
1750
1751         if( !moved )
1752         {
1753             if(style & WS_SYSMENU )
1754                 SendMessageA( hwnd, WM_SYSCOMMAND,
1755                               SC_MOUSEMENU + HTSYSMENU, MAKELONG(pt.x,pt.y));
1756         }
1757         else WINPOS_ShowIconTitle( hwnd, TRUE );
1758     }
1759 }