winex11: Get the icon from the window in case it was changed before the whole window...
[wine] / dlls / winex11.drv / 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23
24 #include <X11/Xlib.h>
25 #include <X11/Xutil.h>
26 #include <stdarg.h>
27
28 #include "windef.h"
29 #include "winbase.h"
30 #include "wingdi.h"
31 #include "winuser.h"
32 #include "winerror.h"
33 #include "wine/wingdi16.h"
34
35 #include "x11drv.h"
36 #include "win.h"
37
38 #include "wine/server.h"
39 #include "wine/debug.h"
40
41 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
42
43 #define SWP_AGG_NOPOSCHANGE \
44     (SWP_NOSIZE | SWP_NOMOVE | SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE | SWP_NOZORDER)
45
46 #define SWP_EX_NOCOPY       0x0001
47 #define SWP_EX_PAINTSELF    0x0002
48 #define SWP_EX_NONCLIENT    0x0004
49
50 #define HAS_THICKFRAME(style) \
51     (((style) & WS_THICKFRAME) && \
52      !(((style) & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME))
53
54 #define ON_LEFT_BORDER(hit) \
55  (((hit) == HTLEFT) || ((hit) == HTTOPLEFT) || ((hit) == HTBOTTOMLEFT))
56 #define ON_RIGHT_BORDER(hit) \
57  (((hit) == HTRIGHT) || ((hit) == HTTOPRIGHT) || ((hit) == HTBOTTOMRIGHT))
58 #define ON_TOP_BORDER(hit) \
59  (((hit) == HTTOP) || ((hit) == HTTOPLEFT) || ((hit) == HTTOPRIGHT))
60 #define ON_BOTTOM_BORDER(hit) \
61  (((hit) == HTBOTTOM) || ((hit) == HTBOTTOMLEFT) || ((hit) == HTBOTTOMRIGHT))
62
63 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT      0
64 #define _NET_WM_MOVERESIZE_SIZE_TOP          1
65 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT     2
66 #define _NET_WM_MOVERESIZE_SIZE_RIGHT        3
67 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT  4
68 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM       5
69 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT   6
70 #define _NET_WM_MOVERESIZE_SIZE_LEFT         7
71 #define _NET_WM_MOVERESIZE_MOVE              8   /* movement only */
72 #define _NET_WM_MOVERESIZE_SIZE_KEYBOARD     9   /* size via keyboard */
73 #define _NET_WM_MOVERESIZE_MOVE_KEYBOARD    10   /* move via keyboard */
74
75 #define _NET_WM_STATE_REMOVE  0
76 #define _NET_WM_STATE_ADD     1
77 #define _NET_WM_STATE_TOGGLE  2
78
79 static const char managed_prop[] = "__wine_x11_managed";
80
81 /***********************************************************************
82  *           X11DRV_Expose
83  */
84 void X11DRV_Expose( HWND hwnd, XEvent *xev )
85 {
86     XExposeEvent *event = &xev->xexpose;
87     RECT rect;
88     struct x11drv_win_data *data;
89     int flags = RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN;
90
91     TRACE( "win %p (%lx) %d,%d %dx%d\n",
92            hwnd, event->window, event->x, event->y, event->width, event->height );
93
94     if (!(data = X11DRV_get_win_data( hwnd ))) return;
95
96     rect.left   = data->whole_rect.left + event->x;
97     rect.top    = data->whole_rect.top + event->y;
98     rect.right  = rect.left + event->width;
99     rect.bottom = rect.top + event->height;
100
101     if (event->window == root_window)
102         OffsetRect( &rect, virtual_screen_rect.left, virtual_screen_rect.top );
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;
113         req->rect.top    = rect.top;
114         req->rect.right  = rect.right;
115         req->rect.bottom = rect.bottom;
116         wine_server_call( req );
117     }
118     SERVER_END_REQ;
119
120     /* make position relative to client area instead of parent */
121     OffsetRect( &rect, -data->client_rect.left, -data->client_rect.top );
122     RedrawWindow( hwnd, &rect, 0, flags );
123 }
124
125 /***********************************************************************
126  *              SetWindowStyle   (X11DRV.@)
127  *
128  * Update the X state of a window to reflect a style change
129  */
130 void X11DRV_SetWindowStyle( HWND hwnd, DWORD old_style )
131 {
132     Display *display = thread_display();
133     struct x11drv_win_data *data;
134     DWORD new_style, changed;
135
136     if (hwnd == GetDesktopWindow()) return;
137     if (!(data = X11DRV_get_win_data( hwnd ))) return;
138
139     new_style = GetWindowLongW( hwnd, GWL_STYLE );
140     changed = new_style ^ old_style;
141
142     if (changed & WS_VISIBLE)
143     {
144         if (data->whole_window && (new_style & WS_VISIBLE) &&
145             X11DRV_is_window_rect_mapped( &data->window_rect ))
146         {
147             X11DRV_set_wm_hints( display, data );
148             if (!data->mapped)
149             {
150                 TRACE( "mapping win %p\n", hwnd );
151                 X11DRV_sync_window_style( display, data );
152                 wine_tsx11_lock();
153                 XMapWindow( display, data->whole_window );
154                 wine_tsx11_unlock();
155                 data->mapped = TRUE;
156             }
157         }
158         /* we don't unmap windows, that causes trouble with the window manager */
159         invalidate_dce( hwnd, &data->window_rect );
160     }
161
162     if (changed & WS_DISABLED)
163     {
164         if (data->whole_window && data->wm_hints)
165         {
166             wine_tsx11_lock();
167             data->wm_hints->input = !(new_style & WS_DISABLED);
168             XSetWMHints( display, data->whole_window, data->wm_hints );
169             wine_tsx11_unlock();
170         }
171     }
172 }
173
174
175 /***********************************************************************
176  *     update_wm_states
177  */
178 static void update_wm_states( Display *display, struct x11drv_win_data *data, BOOL force )
179 {
180     static const unsigned int state_atoms[NB_WM_STATES] =
181     {
182         XATOM__NET_WM_STATE_FULLSCREEN,
183         XATOM__NET_WM_STATE_ABOVE,
184         XATOM__NET_WM_STATE_SKIP_PAGER,
185         XATOM__NET_WM_STATE_SKIP_TASKBAR
186     };
187
188     DWORD i, ex_style, new_state = 0;
189     XEvent xev;
190
191     if (!data->managed) return;
192     if (!data->mapped) return;
193
194     if (data->whole_rect.left <= 0 && data->whole_rect.right >= screen_width &&
195         data->whole_rect.top <= 0 && data->whole_rect.bottom >= screen_height)
196         new_state |= (1 << WM_STATE_FULLSCREEN);
197
198     ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE );
199     if (ex_style & WS_EX_TOPMOST)
200         new_state |= (1 << WM_STATE_ABOVE);
201     if (ex_style & WS_EX_TOOLWINDOW)
202         new_state |= (1 << WM_STATE_SKIP_TASKBAR) | (1 << WM_STATE_SKIP_PAGER);
203
204     xev.xclient.type = ClientMessage;
205     xev.xclient.window = data->whole_window;
206     xev.xclient.message_type = x11drv_atom(_NET_WM_STATE);
207     xev.xclient.serial = 0;
208     xev.xclient.display = display;
209     xev.xclient.send_event = True;
210     xev.xclient.format = 32;
211     xev.xclient.data.l[2] = 0;
212     xev.xclient.data.l[3] = 1;
213
214     for (i = 0; i < NB_WM_STATES; i++)
215     {
216         if (!((data->wm_state ^ new_state) & (1 << i)))  /* unchanged */
217         {
218             /* if forced, we only add states, we don't remove them */
219             if (!force || !(new_state & (1 << i))) continue;
220         }
221
222         TRACE( "setting wm state %u for window %p/%lx to %u prev %u\n",
223                i, data->hwnd, data->whole_window,
224                (new_state & (1 << i)) != 0, (data->wm_state & (1 << i)) != 0 );
225
226         xev.xclient.data.l[0] = (new_state & (1 << i)) ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
227         xev.xclient.data.l[1] = X11DRV_Atoms[state_atoms[i] - FIRST_XATOM];
228         wine_tsx11_lock();
229         XSendEvent( display, root_window, False, SubstructureRedirectMask | SubstructureNotifyMask, &xev );
230         wine_tsx11_unlock();
231     }
232     data->wm_state = new_state;
233 }
234
235
236 /***********************************************************************
237  *              move_window_bits
238  *
239  * Move the window bits when a window is moved.
240  */
241 static void move_window_bits( struct x11drv_win_data *data, const RECT *old_rect, const RECT *new_rect,
242                               const RECT *old_whole_rect )
243 {
244     RECT src_rect = *old_rect;
245     RECT dst_rect = *new_rect;
246     HDC hdc_src, hdc_dst;
247     INT code;
248     HRGN rgn = 0;
249     HWND parent = 0;
250
251     if (!data->whole_window)
252     {
253         OffsetRect( &dst_rect, -data->window_rect.left, -data->window_rect.top );
254         parent = GetAncestor( data->hwnd, GA_PARENT );
255         hdc_src = GetDCEx( parent, 0, DCX_CACHE );
256         hdc_dst = GetDCEx( data->hwnd, 0, DCX_CACHE | DCX_WINDOW );
257     }
258     else
259     {
260         OffsetRect( &dst_rect, -data->whole_rect.left, -data->whole_rect.top );
261         /* make src rect relative to the old position of the window */
262         OffsetRect( &src_rect, -old_whole_rect->left, -old_whole_rect->top );
263         if (dst_rect.left == src_rect.left && dst_rect.top == src_rect.top) return;
264         /* now make them relative to window rect for DCX_WINDOW */
265         OffsetRect( &dst_rect, data->whole_rect.left - data->window_rect.left,
266                     data->whole_rect.top - data->window_rect.top );
267         OffsetRect( &src_rect, data->whole_rect.left - data->window_rect.left,
268                     data->whole_rect.top - data->window_rect.top );
269         hdc_src = hdc_dst = GetDCEx( data->hwnd, 0, DCX_CACHE | DCX_WINDOW );
270     }
271
272     code = X11DRV_START_EXPOSURES;
273     ExtEscape( hdc_dst, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, 0, NULL );
274
275     TRACE( "copying bits for win %p/%lx %s -> %s\n",
276          data->hwnd, data->whole_window, wine_dbgstr_rect(&src_rect), wine_dbgstr_rect(&dst_rect) );
277     BitBlt( hdc_dst, dst_rect.left, dst_rect.top,
278             dst_rect.right - dst_rect.left, dst_rect.bottom - dst_rect.top,
279             hdc_src, src_rect.left, src_rect.top, SRCCOPY );
280
281     code = X11DRV_END_EXPOSURES;
282     ExtEscape( hdc_dst, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, sizeof(rgn), (LPSTR)&rgn );
283
284     ReleaseDC( data->hwnd, hdc_dst );
285     if (hdc_src != hdc_dst) ReleaseDC( parent, hdc_src );
286
287     if (rgn)
288     {
289         OffsetRgn( rgn, data->window_rect.left - data->client_rect.left,
290                    data->window_rect.top - data->client_rect.top );
291         RedrawWindow( data->hwnd, NULL, rgn, RDW_INVALIDATE | RDW_FRAME | RDW_ERASE | RDW_ALLCHILDREN );
292         DeleteObject( rgn );
293     }
294 }
295
296 /***********************************************************************
297  *              set_server_window_pos
298  *
299  * Set the window pos on the server side only. Helper for SetWindowPos.
300  */
301 static BOOL set_server_window_pos( HWND hwnd, HWND insert_after, const RECT *rectWindow,
302                                    const RECT *rectClient, UINT swp_flags, const RECT *valid_rects,
303                                    RECT *visible_rect )
304 {
305     WND *win;
306     BOOL ret;
307
308     if (!(win = WIN_GetPtr( hwnd ))) return FALSE;
309     if (win == WND_DESKTOP || win == WND_OTHER_PROCESS) return FALSE;
310
311     SERVER_START_REQ( set_window_pos )
312     {
313         req->handle        = hwnd;
314         req->previous      = insert_after;
315         req->flags         = swp_flags;
316         req->window.left   = rectWindow->left;
317         req->window.top    = rectWindow->top;
318         req->window.right  = rectWindow->right;
319         req->window.bottom = rectWindow->bottom;
320         req->client.left   = rectClient->left;
321         req->client.top    = rectClient->top;
322         req->client.right  = rectClient->right;
323         req->client.bottom = rectClient->bottom;
324         if (!IsRectEmpty( &valid_rects[0] ))
325             wine_server_add_data( req, valid_rects, 2 * sizeof(*valid_rects) );
326         if ((ret = !wine_server_call( req )))
327         {
328             win->dwStyle    = reply->new_style;
329             win->dwExStyle  = reply->new_ex_style;
330             win->rectWindow = *rectWindow;
331             win->rectClient = *rectClient;
332             visible_rect->left   = reply->visible.left;
333             visible_rect->top    = reply->visible.top;
334             visible_rect->right  = reply->visible.right;
335             visible_rect->bottom = reply->visible.bottom;
336         }
337     }
338     SERVER_END_REQ;
339
340     WIN_ReleasePtr( win );
341     return ret;
342 }
343
344
345 /***********************************************************************
346  *              SetWindowPos   (X11DRV.@)
347  */
348 BOOL X11DRV_SetWindowPos( HWND hwnd, HWND insert_after, const RECT *rectWindow,
349                                    const RECT *rectClient, UINT swp_flags, const RECT *valid_rects )
350 {
351     Display *display = thread_display();
352     struct x11drv_win_data *data;
353     RECT old_window_rect, old_whole_rect, old_client_rect, visible_rect;
354     DWORD new_style;
355
356     if (!(data = X11DRV_get_win_data( hwnd ))) return FALSE;
357
358     if (!set_server_window_pos( hwnd, insert_after, rectWindow, rectClient, swp_flags,
359                                 valid_rects, &visible_rect ))
360         return FALSE;
361
362     if (data->whole_window == DefaultRootWindow(gdi_display))
363     {
364         data->whole_rect = data->client_rect = data->window_rect = *rectWindow;
365         return TRUE;
366     }
367
368     /* check if we need to switch the window to managed */
369     if (!data->managed && data->whole_window && managed_mode &&
370         root_window == DefaultRootWindow( display ) &&
371         is_window_managed( hwnd, swp_flags, rectWindow ))
372     {
373         TRACE( "making win %p/%lx managed\n", hwnd, data->whole_window );
374         data->managed = TRUE;
375         SetPropA( hwnd, managed_prop, (HANDLE)1 );
376         if (data->mapped)
377         {
378             wine_tsx11_lock();
379             XUnmapWindow( display, data->whole_window );
380             wine_tsx11_unlock();
381             data->mapped = FALSE;
382         }
383     }
384
385     new_style = GetWindowLongW( hwnd, GWL_STYLE );
386     old_window_rect = data->window_rect;
387     old_whole_rect  = data->whole_rect;
388     old_client_rect = data->client_rect;
389     data->window_rect = *rectWindow;
390     data->whole_rect  = *rectWindow;
391     data->client_rect = *rectClient;
392     X11DRV_window_to_X_rect( data, &data->whole_rect );
393     if (memcmp( &visible_rect, &data->whole_rect, sizeof(RECT) ))
394     {
395         TRACE( "%p: need to update visible rect %s -> %s\n", hwnd,
396                wine_dbgstr_rect(&visible_rect), wine_dbgstr_rect(&data->whole_rect) );
397         SERVER_START_REQ( set_window_visible_rect )
398         {
399             req->handle         = hwnd;
400             req->flags          = swp_flags;
401             req->visible.left   = data->whole_rect.left;
402             req->visible.top    = data->whole_rect.top;
403             req->visible.right  = data->whole_rect.right;
404             req->visible.bottom = data->whole_rect.bottom;
405             wine_server_call( req );
406         }
407         SERVER_END_REQ;
408     }
409
410     /* invalidate DCEs */
411     if ((((swp_flags & SWP_AGG_NOPOSCHANGE) != SWP_AGG_NOPOSCHANGE) && (new_style & WS_VISIBLE)) ||
412         (swp_flags & (SWP_HIDEWINDOW | SWP_SHOWWINDOW)))
413     {
414         RECT rect;
415         UnionRect( &rect, rectWindow, &old_window_rect );
416         invalidate_dce( hwnd, &rect );
417     }
418
419     TRACE( "win %p window %s client %s style %08x\n",
420            hwnd, wine_dbgstr_rect(rectWindow), wine_dbgstr_rect(rectClient), new_style );
421
422     if (!IsRectEmpty( &valid_rects[0] ))
423     {
424         int x_offset = old_whole_rect.left - data->whole_rect.left;
425         int y_offset = old_whole_rect.top - data->whole_rect.top;
426
427         /* if all that happened is that the whole window moved, copy everything */
428         if (!(swp_flags & SWP_FRAMECHANGED) &&
429             old_whole_rect.right   - data->whole_rect.right   == x_offset &&
430             old_whole_rect.bottom  - data->whole_rect.bottom  == y_offset &&
431             old_client_rect.left   - data->client_rect.left   == x_offset &&
432             old_client_rect.right  - data->client_rect.right  == x_offset &&
433             old_client_rect.top    - data->client_rect.top    == y_offset &&
434             old_client_rect.bottom - data->client_rect.bottom == y_offset &&
435             !memcmp( &valid_rects[0], &data->client_rect, sizeof(RECT) ))
436         {
437             /* if we have an X window the bits will be moved by the X server */
438             if (!data->whole_window)
439                 move_window_bits( data, &old_whole_rect, &data->whole_rect, &old_whole_rect );
440         }
441         else
442             move_window_bits( data, &valid_rects[1], &valid_rects[0], &old_whole_rect );
443     }
444
445     if (data->gl_drawable &&
446         data->client_rect.right-data->client_rect.left == old_client_rect.right-old_client_rect.left &&
447         data->client_rect.bottom-data->client_rect.top == old_client_rect.bottom-old_client_rect.top)
448         X11DRV_sync_gl_drawable( display, data );
449
450     if (!data->whole_window || data->lock_changes) return TRUE;  /* nothing more to do */
451
452     if (data->mapped && (!(new_style & WS_VISIBLE) || !X11DRV_is_window_rect_mapped( rectWindow )))
453     {
454         TRACE( "unmapping win %p\n", hwnd );
455         wine_tsx11_lock();
456         XUnmapWindow( display, data->whole_window );
457         wine_tsx11_unlock();
458         data->mapped = FALSE;
459     }
460
461     X11DRV_sync_window_position( display, data, swp_flags, &old_client_rect, &old_whole_rect );
462
463     if ((new_style & WS_VISIBLE) && !(new_style & WS_MINIMIZE) &&
464         X11DRV_is_window_rect_mapped( rectWindow ))
465     {
466         BOOL was_mapped = data->mapped;
467
468         if (!data->mapped || (swp_flags & SWP_FRAMECHANGED))
469             X11DRV_set_wm_hints( display, data );
470
471         if (!data->mapped)
472         {
473             TRACE( "mapping win %p\n", hwnd );
474             X11DRV_sync_window_style( display, data );
475             wine_tsx11_lock();
476             XMapWindow( display, data->whole_window );
477             XFlush( display );
478             wine_tsx11_unlock();
479             data->mapped = TRUE;
480         }
481         update_wm_states( display, data, !was_mapped );
482     }
483
484     return TRUE;
485 }
486
487
488 /***********************************************************************
489  *           WINPOS_FindIconPos
490  *
491  * Find a suitable place for an iconic window.
492  */
493 static POINT WINPOS_FindIconPos( HWND hwnd, POINT pt )
494 {
495     RECT rect, rectParent;
496     HWND parent, child;
497     HRGN hrgn, tmp;
498     int xspacing, yspacing;
499
500     parent = GetAncestor( hwnd, GA_PARENT );
501     GetClientRect( parent, &rectParent );
502     if ((pt.x >= rectParent.left) && (pt.x + GetSystemMetrics(SM_CXICON) < rectParent.right) &&
503         (pt.y >= rectParent.top) && (pt.y + GetSystemMetrics(SM_CYICON) < rectParent.bottom))
504         return pt;  /* The icon already has a suitable position */
505
506     xspacing = GetSystemMetrics(SM_CXICONSPACING);
507     yspacing = GetSystemMetrics(SM_CYICONSPACING);
508
509     /* Check if another icon already occupies this spot */
510     /* FIXME: this is completely inefficient */
511
512     hrgn = CreateRectRgn( 0, 0, 0, 0 );
513     tmp = CreateRectRgn( 0, 0, 0, 0 );
514     for (child = GetWindow( parent, GW_HWNDFIRST ); child; child = GetWindow( child, GW_HWNDNEXT ))
515     {
516         WND *childPtr;
517         if (child == hwnd) continue;
518         if ((GetWindowLongW( child, GWL_STYLE ) & (WS_VISIBLE|WS_MINIMIZE)) != (WS_VISIBLE|WS_MINIMIZE))
519             continue;
520         if (!(childPtr = WIN_GetPtr( child )) || childPtr == WND_OTHER_PROCESS)
521             continue;
522         SetRectRgn( tmp, childPtr->rectWindow.left, childPtr->rectWindow.top,
523                     childPtr->rectWindow.right, childPtr->rectWindow.bottom );
524         CombineRgn( hrgn, hrgn, tmp, RGN_OR );
525         WIN_ReleasePtr( childPtr );
526     }
527     DeleteObject( tmp );
528
529     for (rect.bottom = rectParent.bottom; rect.bottom >= yspacing; rect.bottom -= yspacing)
530     {
531         for (rect.left = rectParent.left; rect.left <= rectParent.right - xspacing; rect.left += xspacing)
532         {
533             rect.right = rect.left + xspacing;
534             rect.top = rect.bottom - yspacing;
535             if (!RectInRegion( hrgn, &rect ))
536             {
537                 /* No window was found, so it's OK for us */
538                 pt.x = rect.left + (xspacing - GetSystemMetrics(SM_CXICON)) / 2;
539                 pt.y = rect.top + (yspacing - GetSystemMetrics(SM_CYICON)) / 2;
540                 DeleteObject( hrgn );
541                 return pt;
542             }
543         }
544     }
545     DeleteObject( hrgn );
546     pt.x = pt.y = 0;
547     return pt;
548 }
549
550
551 /***********************************************************************
552  *           WINPOS_MinMaximize
553  */
554 UINT WINPOS_MinMaximize( HWND hwnd, UINT cmd, LPRECT rect )
555 {
556     WND *wndPtr;
557     UINT swpFlags = 0;
558     POINT size;
559     LONG old_style;
560     WINDOWPLACEMENT wpl;
561
562     TRACE("%p %u\n", hwnd, cmd );
563
564     wpl.length = sizeof(wpl);
565     GetWindowPlacement( hwnd, &wpl );
566
567     if (HOOK_CallHooks( WH_CBT, HCBT_MINMAX, (WPARAM)hwnd, cmd, TRUE ))
568         return SWP_NOSIZE | SWP_NOMOVE;
569
570     if (IsIconic( hwnd ))
571     {
572         switch (cmd)
573         {
574         case SW_SHOWMINNOACTIVE:
575         case SW_SHOWMINIMIZED:
576         case SW_FORCEMINIMIZE:
577         case SW_MINIMIZE:
578             return SWP_NOSIZE | SWP_NOMOVE;
579         }
580         if (!SendMessageW( hwnd, WM_QUERYOPEN, 0, 0 )) return SWP_NOSIZE | SWP_NOMOVE;
581         swpFlags |= SWP_NOCOPYBITS;
582     }
583
584     switch( cmd )
585     {
586     case SW_SHOWMINNOACTIVE:
587     case SW_SHOWMINIMIZED:
588     case SW_FORCEMINIMIZE:
589     case SW_MINIMIZE:
590         if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return 0;
591         if( wndPtr->dwStyle & WS_MAXIMIZE) wndPtr->flags |= WIN_RESTORE_MAX;
592         else wndPtr->flags &= ~WIN_RESTORE_MAX;
593         WIN_ReleasePtr( wndPtr );
594
595         old_style = WIN_SetStyle( hwnd, WS_MINIMIZE, WS_MAXIMIZE );
596
597         X11DRV_set_iconic_state( hwnd );
598
599         wpl.ptMinPosition = WINPOS_FindIconPos( hwnd, wpl.ptMinPosition );
600
601         if (!(old_style & WS_MINIMIZE)) swpFlags |= SWP_STATECHANGED;
602         SetRect( rect, wpl.ptMinPosition.x, wpl.ptMinPosition.y,
603                  GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON) );
604         swpFlags |= SWP_NOCOPYBITS;
605         break;
606
607     case SW_MAXIMIZE:
608         old_style = GetWindowLongW( hwnd, GWL_STYLE );
609         if ((old_style & WS_MAXIMIZE) && (old_style & WS_VISIBLE)) return SWP_NOSIZE | SWP_NOMOVE;
610
611         WINPOS_GetMinMaxInfo( hwnd, &size, &wpl.ptMaxPosition, NULL, NULL );
612
613         old_style = WIN_SetStyle( hwnd, WS_MAXIMIZE, WS_MINIMIZE );
614         if (old_style & WS_MINIMIZE)
615         {
616             WINPOS_ShowIconTitle( hwnd, FALSE );
617             X11DRV_set_iconic_state( hwnd );
618         }
619         if (!(old_style & WS_MAXIMIZE)) swpFlags |= SWP_STATECHANGED;
620         SetRect( rect, wpl.ptMaxPosition.x, wpl.ptMaxPosition.y, size.x, size.y );
621         break;
622
623     case SW_SHOWNOACTIVATE:
624     case SW_SHOWNORMAL:
625     case SW_RESTORE:
626         old_style = WIN_SetStyle( hwnd, 0, WS_MINIMIZE | WS_MAXIMIZE );
627         if (old_style & WS_MINIMIZE)
628         {
629             BOOL restore_max;
630
631             WINPOS_ShowIconTitle( hwnd, FALSE );
632             X11DRV_set_iconic_state( hwnd );
633
634             if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return 0;
635             restore_max = (wndPtr->flags & WIN_RESTORE_MAX) != 0;
636             WIN_ReleasePtr( wndPtr );
637             if (restore_max)
638             {
639                 /* Restore to maximized position */
640                 WINPOS_GetMinMaxInfo( hwnd, &size, &wpl.ptMaxPosition, NULL, NULL);
641                 WIN_SetStyle( hwnd, WS_MAXIMIZE, 0 );
642                 swpFlags |= SWP_STATECHANGED;
643                 SetRect( rect, wpl.ptMaxPosition.x, wpl.ptMaxPosition.y, size.x, size.y );
644                 break;
645             }
646         }
647         else if (!(old_style & WS_MAXIMIZE)) break;
648
649         swpFlags |= SWP_STATECHANGED;
650
651         /* Restore to normal position */
652
653         *rect = wpl.rcNormalPosition;
654         rect->right -= rect->left;
655         rect->bottom -= rect->top;
656
657         break;
658     }
659
660     return swpFlags;
661 }
662
663
664 /***********************************************************************
665  *              ShowWindow   (X11DRV.@)
666  */
667 BOOL X11DRV_ShowWindow( HWND hwnd, INT cmd )
668 {
669     WND *wndPtr;
670     HWND parent;
671     LONG style = GetWindowLongW( hwnd, GWL_STYLE );
672     BOOL wasVisible = (style & WS_VISIBLE) != 0;
673     BOOL showFlag = TRUE;
674     RECT newPos = {0, 0, 0, 0};
675     UINT swp = 0;
676
677     TRACE("hwnd=%p, cmd=%d, wasVisible %d\n", hwnd, cmd, wasVisible);
678
679     switch(cmd)
680     {
681         case SW_HIDE:
682             if (!wasVisible) return FALSE;
683             showFlag = FALSE;
684             swp |= SWP_HIDEWINDOW | SWP_NOSIZE | SWP_NOMOVE;
685             if (hwnd != GetActiveWindow())
686                 swp |= SWP_NOACTIVATE | SWP_NOZORDER;
687             break;
688
689         case SW_SHOWMINNOACTIVE:
690             swp |= SWP_NOACTIVATE | SWP_NOZORDER;
691             /* fall through */
692         case SW_MINIMIZE:
693         case SW_FORCEMINIMIZE: /* FIXME: Does not work if thread is hung. */
694             if (style & WS_CHILD) swp |= SWP_NOACTIVATE | SWP_NOZORDER;
695             /* fall through */
696         case SW_SHOWMINIMIZED:
697             swp |= SWP_SHOWWINDOW | SWP_FRAMECHANGED;
698             swp |= WINPOS_MinMaximize( hwnd, cmd, &newPos );
699             if ((style & WS_MINIMIZE) && wasVisible) return TRUE;
700             break;
701
702         case SW_SHOWMAXIMIZED: /* same as SW_MAXIMIZE */
703             if (!wasVisible) swp |= SWP_SHOWWINDOW;
704             swp |= SWP_FRAMECHANGED;
705             swp |= WINPOS_MinMaximize( hwnd, SW_MAXIMIZE, &newPos );
706             if ((style & WS_MAXIMIZE) && wasVisible) return TRUE;
707             break;
708
709         case SW_SHOWNA:
710             swp |= SWP_NOACTIVATE | SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE;
711             if (style & WS_CHILD) swp |= SWP_NOZORDER;
712             break;
713         case SW_SHOW:
714             if (wasVisible) return TRUE;
715             swp |= SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE;
716             if (style & WS_CHILD) swp |= SWP_NOACTIVATE | SWP_NOZORDER;
717             break;
718
719         case SW_SHOWNOACTIVATE:
720             swp |= SWP_NOACTIVATE | SWP_NOZORDER;
721             /* fall through */
722         case SW_RESTORE:
723             /* fall through */
724         case SW_SHOWNORMAL:  /* same as SW_NORMAL: */
725         case SW_SHOWDEFAULT: /* FIXME: should have its own handler */
726             if (!wasVisible) swp |= SWP_SHOWWINDOW;
727             if (style & (WS_MINIMIZE | WS_MAXIMIZE))
728             {
729                 swp |= SWP_FRAMECHANGED;
730                 swp |= WINPOS_MinMaximize( hwnd, cmd, &newPos );
731             }
732             else
733             {
734                 if (wasVisible) return TRUE;
735                 swp |= SWP_NOSIZE | SWP_NOMOVE;
736             }
737             if (style & WS_CHILD && !(swp & SWP_STATECHANGED)) swp |= SWP_NOACTIVATE | SWP_NOZORDER;
738             break;
739     }
740
741     if ((showFlag != wasVisible || cmd == SW_SHOWNA) && cmd != SW_SHOWMAXIMIZED && !(swp & SWP_STATECHANGED))
742     {
743         SendMessageW( hwnd, WM_SHOWWINDOW, showFlag, 0 );
744         if (!IsWindow( hwnd )) return wasVisible;
745     }
746
747     parent = GetAncestor( hwnd, GA_PARENT );
748     if (parent && !IsWindowVisible( parent ) && !(swp & SWP_STATECHANGED))
749     {
750         /* if parent is not visible simply toggle WS_VISIBLE and return */
751         if (showFlag) WIN_SetStyle( hwnd, WS_VISIBLE, 0 );
752         else WIN_SetStyle( hwnd, 0, WS_VISIBLE );
753     }
754     else
755         SetWindowPos( hwnd, HWND_TOP, newPos.left, newPos.top,
756                       newPos.right, newPos.bottom, LOWORD(swp) );
757
758     if (cmd == SW_HIDE)
759     {
760         HWND hFocus;
761
762         /* FIXME: This will cause the window to be activated irrespective
763          * of whether it is owned by the same thread. Has to be done
764          * asynchronously.
765          */
766
767         if (hwnd == GetActiveWindow())
768             WINPOS_ActivateOtherWindow(hwnd);
769
770         /* Revert focus to parent */
771         hFocus = GetFocus();
772         if (hwnd == hFocus || IsChild(hwnd, hFocus))
773         {
774             HWND parent = GetAncestor(hwnd, GA_PARENT);
775             if (parent == GetDesktopWindow()) parent = 0;
776             SetFocus(parent);
777         }
778     }
779
780     if (IsIconic(hwnd)) WINPOS_ShowIconTitle( hwnd, TRUE );
781
782     if (!(wndPtr = WIN_GetPtr( hwnd )) || wndPtr == WND_OTHER_PROCESS) return wasVisible;
783
784     if (wndPtr->flags & WIN_NEED_SIZE)
785     {
786         /* should happen only in CreateWindowEx() */
787         int wParam = SIZE_RESTORED;
788         RECT client = wndPtr->rectClient;
789
790         wndPtr->flags &= ~WIN_NEED_SIZE;
791         if (wndPtr->dwStyle & WS_MAXIMIZE) wParam = SIZE_MAXIMIZED;
792         else if (wndPtr->dwStyle & WS_MINIMIZE) wParam = SIZE_MINIMIZED;
793         WIN_ReleasePtr( wndPtr );
794
795         SendMessageW( hwnd, WM_SIZE, wParam,
796                       MAKELONG( client.right - client.left, client.bottom - client.top ));
797         SendMessageW( hwnd, WM_MOVE, 0, MAKELONG( client.left, client.top ));
798     }
799     else WIN_ReleasePtr( wndPtr );
800
801     /* if previous state was minimized Windows sets focus to the window */
802     if (style & WS_MINIMIZE) SetFocus( hwnd );
803
804     return wasVisible;
805 }
806
807
808 /**********************************************************************
809  *              X11DRV_MapNotify
810  */
811 void X11DRV_MapNotify( HWND hwnd, XEvent *event )
812 {
813     struct x11drv_win_data *data;
814     HWND hwndFocus = GetFocus();
815     WND *win;
816
817     if (!(data = X11DRV_get_win_data( hwnd ))) return;
818
819     if (!(win = WIN_GetPtr( hwnd ))) return;
820
821     if (data->managed && (win->dwStyle & WS_VISIBLE) && (win->dwStyle & WS_MINIMIZE))
822     {
823         int x, y;
824         unsigned int width, height, border, depth;
825         Window root, top;
826         RECT rect;
827         LONG style = WS_VISIBLE;
828
829         /* FIXME: hack */
830         wine_tsx11_lock();
831         XGetGeometry( event->xmap.display, data->whole_window, &root, &x, &y, &width, &height,
832                         &border, &depth );
833         XTranslateCoordinates( event->xmap.display, data->whole_window, root, 0, 0, &x, &y, &top );
834         wine_tsx11_unlock();
835         rect.left   = x;
836         rect.top    = y;
837         rect.right  = x + width;
838         rect.bottom = y + height;
839         OffsetRect( &rect, virtual_screen_rect.left, virtual_screen_rect.top );
840         X11DRV_X_to_window_rect( data, &rect );
841
842         invalidate_dce( hwnd, &data->window_rect );
843
844         if (win->flags & WIN_RESTORE_MAX) style |= WS_MAXIMIZE;
845         WIN_SetStyle( hwnd, style, WS_MINIMIZE );
846         WIN_ReleasePtr( win );
847
848         SendMessageW( hwnd, WM_SHOWWINDOW, SW_RESTORE, 0 );
849         data->lock_changes++;
850         SetWindowPos( hwnd, 0, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top,
851                       SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED | SWP_STATECHANGED );
852         data->lock_changes--;
853     }
854     else WIN_ReleasePtr( win );
855     if (hwndFocus && IsChild( hwnd, hwndFocus )) X11DRV_SetFocus(hwndFocus);  /* FIXME */
856 }
857
858
859 /**********************************************************************
860  *              X11DRV_UnmapNotify
861  */
862 void X11DRV_UnmapNotify( HWND hwnd, XEvent *event )
863 {
864     struct x11drv_win_data *data;
865     WND *win;
866
867     if (!(data = X11DRV_get_win_data( hwnd ))) return;
868
869     if (!(win = WIN_GetPtr( hwnd ))) return;
870
871     if ((win->dwStyle & WS_VISIBLE) && data->managed &&
872         X11DRV_is_window_rect_mapped( &win->rectWindow ))
873     {
874         if (win->dwStyle & WS_MAXIMIZE)
875             win->flags |= WIN_RESTORE_MAX;
876         else if (!(win->dwStyle & WS_MINIMIZE))
877             win->flags &= ~WIN_RESTORE_MAX;
878
879         WIN_SetStyle( hwnd, WS_MINIMIZE, WS_MAXIMIZE );
880         WIN_ReleasePtr( win );
881
882         EndMenu();
883         SendMessageW( hwnd, WM_SHOWWINDOW, SW_MINIMIZE, 0 );
884         data->lock_changes++;
885         SetWindowPos( hwnd, 0, 0, 0, GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON),
886                       SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER | SWP_STATECHANGED );
887         data->lock_changes--;
888     }
889     else WIN_ReleasePtr( win );
890 }
891
892 struct desktop_resize_data
893 {
894     RECT  old_screen_rect;
895     RECT  old_virtual_rect;
896 };
897
898 static BOOL CALLBACK update_windows_on_desktop_resize( HWND hwnd, LPARAM lparam )
899 {
900     struct x11drv_win_data *data;
901     Display *display = thread_display();
902     struct desktop_resize_data *resize_data = (struct desktop_resize_data *)lparam;
903     int mask = 0;
904
905     if (!(data = X11DRV_get_win_data( hwnd ))) return TRUE;
906
907     if (GetWindowLongW( hwnd, GWL_STYLE ) & WS_VISIBLE)
908     {
909         /* update the full screen state */
910         update_wm_states( display, data, FALSE );
911     }
912
913     if (resize_data->old_virtual_rect.left != virtual_screen_rect.left) mask |= CWX;
914     if (resize_data->old_virtual_rect.top != virtual_screen_rect.top) mask |= CWY;
915     if (mask && data->whole_window)
916     {
917         XWindowChanges changes;
918
919         wine_tsx11_lock();
920         changes.x = data->whole_rect.left - virtual_screen_rect.left;
921         changes.y = data->whole_rect.top - virtual_screen_rect.top;
922         XReconfigureWMWindow( display, data->whole_window,
923                               DefaultScreen(display), mask, &changes );
924         wine_tsx11_unlock();
925     }
926     return TRUE;
927 }
928
929
930 /***********************************************************************
931  *              X11DRV_resize_desktop
932  */
933 void X11DRV_resize_desktop( unsigned int width, unsigned int height )
934 {
935     HWND hwnd = GetDesktopWindow();
936     struct x11drv_win_data *data;
937     struct desktop_resize_data resize_data;
938
939     SetRect( &resize_data.old_screen_rect, 0, 0, screen_width, screen_height );
940     resize_data.old_virtual_rect = virtual_screen_rect;
941
942     xinerama_init( width, height );
943
944     if (!(data = X11DRV_get_win_data( hwnd )))
945     {
946         SendMessageW( hwnd, WM_X11DRV_RESIZE_DESKTOP, 0, MAKELPARAM( width, height ) );
947     }
948     else
949     {
950         TRACE( "desktop %p change to (%dx%d)\n", hwnd, width, height );
951         SetWindowPos( hwnd, 0, virtual_screen_rect.left, virtual_screen_rect.top,
952                       virtual_screen_rect.right - virtual_screen_rect.left,
953                       virtual_screen_rect.bottom - virtual_screen_rect.top,
954                       SWP_NOZORDER | SWP_NOACTIVATE );
955         SendMessageTimeoutW( HWND_BROADCAST, WM_DISPLAYCHANGE, screen_bpp,
956                              MAKELPARAM( width, height ), SMTO_ABORTIFHUNG, 2000, NULL );
957     }
958
959     EnumWindows( update_windows_on_desktop_resize, (LPARAM)&resize_data );
960 }
961
962
963 /***********************************************************************
964  *              X11DRV_ConfigureNotify
965  */
966 void X11DRV_ConfigureNotify( HWND hwnd, XEvent *xev )
967 {
968     XConfigureEvent *event = &xev->xconfigure;
969     struct x11drv_win_data *data;
970     RECT rect;
971     UINT flags;
972     int cx, cy, x = event->x, y = event->y;
973
974     if (!hwnd) return;
975     if (!(data = X11DRV_get_win_data( hwnd ))) return;
976
977     /* Get geometry */
978
979     if (!event->send_event)  /* normal event, need to map coordinates to the root */
980     {
981         Window child;
982         wine_tsx11_lock();
983         XTranslateCoordinates( event->display, data->whole_window, root_window,
984                                0, 0, &x, &y, &child );
985         wine_tsx11_unlock();
986     }
987     rect.left   = x;
988     rect.top    = y;
989     rect.right  = x + event->width;
990     rect.bottom = y + event->height;
991     OffsetRect( &rect, virtual_screen_rect.left, virtual_screen_rect.top );
992     TRACE( "win %p new X rect %d,%d,%dx%d (event %d,%d,%dx%d)\n",
993            hwnd, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top,
994            event->x, event->y, event->width, event->height );
995     X11DRV_X_to_window_rect( data, &rect );
996
997     x     = rect.left;
998     y     = rect.top;
999     cx    = rect.right - rect.left;
1000     cy    = rect.bottom - rect.top;
1001     flags = SWP_NOACTIVATE | SWP_NOZORDER;
1002
1003     /* Compare what has changed */
1004
1005     GetWindowRect( hwnd, &rect );
1006     if (rect.left == x && rect.top == y) flags |= SWP_NOMOVE;
1007     else
1008         TRACE( "%p moving from (%d,%d) to (%d,%d)\n",
1009                hwnd, rect.left, rect.top, x, y );
1010
1011     if ((rect.right - rect.left == cx && rect.bottom - rect.top == cy) ||
1012         IsIconic(hwnd) ||
1013         (IsRectEmpty( &rect ) && event->width == 1 && event->height == 1))
1014     {
1015         if (flags & SWP_NOMOVE) return;  /* if nothing changed, don't do anything */
1016         flags |= SWP_NOSIZE;
1017     }
1018     else
1019         TRACE( "%p resizing from (%dx%d) to (%dx%d)\n",
1020                hwnd, rect.right - rect.left, rect.bottom - rect.top, cx, cy );
1021
1022     data->lock_changes++;
1023     SetWindowPos( hwnd, 0, x, y, cx, cy, flags );
1024     data->lock_changes--;
1025 }
1026
1027
1028 /***********************************************************************
1029  *           draw_moving_frame
1030  *
1031  * Draw the frame used when moving or resizing window.
1032  *
1033  * FIXME:  This causes problems in Win95 mode.  (why?)
1034  */
1035 static void draw_moving_frame( HDC hdc, RECT *rect, BOOL thickframe )
1036 {
1037     if (thickframe)
1038     {
1039         const int width = GetSystemMetrics(SM_CXFRAME);
1040         const int height = GetSystemMetrics(SM_CYFRAME);
1041
1042         HBRUSH hbrush = SelectObject( hdc, GetStockObject( GRAY_BRUSH ) );
1043         PatBlt( hdc, rect->left, rect->top,
1044                 rect->right - rect->left - width, height, PATINVERT );
1045         PatBlt( hdc, rect->left, rect->top + height, width,
1046                 rect->bottom - rect->top - height, PATINVERT );
1047         PatBlt( hdc, rect->left + width, rect->bottom - 1,
1048                 rect->right - rect->left - width, -height, PATINVERT );
1049         PatBlt( hdc, rect->right - 1, rect->top, -width,
1050                 rect->bottom - rect->top - height, PATINVERT );
1051         SelectObject( hdc, hbrush );
1052     }
1053     else DrawFocusRect( hdc, rect );
1054 }
1055
1056
1057 /***********************************************************************
1058  *           start_size_move
1059  *
1060  * Initialization of a move or resize, when initiated from a menu choice.
1061  * Return hit test code for caption or sizing border.
1062  */
1063 static LONG start_size_move( HWND hwnd, WPARAM wParam, POINT *capturePoint, LONG style )
1064 {
1065     LONG hittest = 0;
1066     POINT pt;
1067     MSG msg;
1068     RECT rectWindow;
1069
1070     GetWindowRect( hwnd, &rectWindow );
1071
1072     if ((wParam & 0xfff0) == SC_MOVE)
1073     {
1074         /* Move pointer at the center of the caption */
1075         RECT rect = rectWindow;
1076         /* Note: to be exactly centered we should take the different types
1077          * of border into account, but it shouldn't make more than a few pixels
1078          * of difference so let's not bother with that */
1079         rect.top += GetSystemMetrics(SM_CYBORDER);
1080         if (style & WS_SYSMENU)
1081             rect.left += GetSystemMetrics(SM_CXSIZE) + 1;
1082         if (style & WS_MINIMIZEBOX)
1083             rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;
1084         if (style & WS_MAXIMIZEBOX)
1085             rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;
1086         pt.x = (rect.right + rect.left) / 2;
1087         pt.y = rect.top + GetSystemMetrics(SM_CYSIZE)/2;
1088         hittest = HTCAPTION;
1089         *capturePoint = pt;
1090     }
1091     else  /* SC_SIZE */
1092     {
1093         pt.x = pt.y = 0;
1094         while(!hittest)
1095         {
1096             GetMessageW( &msg, 0, WM_KEYFIRST, WM_MOUSELAST );
1097             if (CallMsgFilterW( &msg, MSGF_SIZE )) continue;
1098
1099             switch(msg.message)
1100             {
1101             case WM_MOUSEMOVE:
1102                 pt = msg.pt;
1103                 hittest = SendMessageW( hwnd, WM_NCHITTEST, 0, MAKELONG( pt.x, pt.y ) );
1104                 if ((hittest < HTLEFT) || (hittest > HTBOTTOMRIGHT)) hittest = 0;
1105                 break;
1106
1107             case WM_LBUTTONUP:
1108                 return 0;
1109
1110             case WM_KEYDOWN:
1111                 switch(msg.wParam)
1112                 {
1113                 case VK_UP:
1114                     hittest = HTTOP;
1115                     pt.x =(rectWindow.left+rectWindow.right)/2;
1116                     pt.y = rectWindow.top + GetSystemMetrics(SM_CYFRAME) / 2;
1117                     break;
1118                 case VK_DOWN:
1119                     hittest = HTBOTTOM;
1120                     pt.x =(rectWindow.left+rectWindow.right)/2;
1121                     pt.y = rectWindow.bottom - GetSystemMetrics(SM_CYFRAME) / 2;
1122                     break;
1123                 case VK_LEFT:
1124                     hittest = HTLEFT;
1125                     pt.x = rectWindow.left + GetSystemMetrics(SM_CXFRAME) / 2;
1126                     pt.y =(rectWindow.top+rectWindow.bottom)/2;
1127                     break;
1128                 case VK_RIGHT:
1129                     hittest = HTRIGHT;
1130                     pt.x = rectWindow.right - GetSystemMetrics(SM_CXFRAME) / 2;
1131                     pt.y =(rectWindow.top+rectWindow.bottom)/2;
1132                     break;
1133                 case VK_RETURN:
1134                 case VK_ESCAPE: return 0;
1135                 }
1136             }
1137         }
1138         *capturePoint = pt;
1139     }
1140     SetCursorPos( pt.x, pt.y );
1141     SendMessageW( hwnd, WM_SETCURSOR, (WPARAM)hwnd, MAKELONG( hittest, WM_MOUSEMOVE ));
1142     return hittest;
1143 }
1144
1145
1146 /***********************************************************************
1147  *           set_movesize_capture
1148  */
1149 static void set_movesize_capture( HWND hwnd )
1150 {
1151     HWND previous = 0;
1152
1153     SERVER_START_REQ( set_capture_window )
1154     {
1155         req->handle = hwnd;
1156         req->flags  = CAPTURE_MOVESIZE;
1157         if (!wine_server_call_err( req ))
1158         {
1159             previous = reply->previous;
1160             hwnd = reply->full_handle;
1161         }
1162     }
1163     SERVER_END_REQ;
1164     if (previous && previous != hwnd)
1165         SendMessageW( previous, WM_CAPTURECHANGED, 0, (LPARAM)hwnd );
1166 }
1167
1168 /***********************************************************************
1169  *           X11DRV_WMMoveResizeWindow
1170  *
1171  * Tells the window manager to initiate a move or resize operation.
1172  *
1173  * SEE
1174  *  http://freedesktop.org/Standards/wm-spec/1.3/ar01s04.html
1175  *  or search for "_NET_WM_MOVERESIZE"
1176  */
1177 static BOOL X11DRV_WMMoveResizeWindow( HWND hwnd, int x, int y, WPARAM wparam )
1178 {
1179     WPARAM syscommand = wparam & 0xfff0;
1180     WPARAM hittest = wparam & 0x0f;
1181     int dir;
1182     XEvent xev;
1183     Display *display = thread_display();
1184
1185     if (syscommand == SC_MOVE)
1186     {
1187         if (!hittest) dir = _NET_WM_MOVERESIZE_MOVE_KEYBOARD;
1188         else dir = _NET_WM_MOVERESIZE_MOVE;
1189     }
1190     else
1191     {
1192         /* windows without WS_THICKFRAME are not resizable through the window manager */
1193         if (!(GetWindowLongW( hwnd, GWL_STYLE ) & WS_THICKFRAME)) return FALSE;
1194
1195         switch (hittest)
1196         {
1197         case WMSZ_LEFT:        dir = _NET_WM_MOVERESIZE_SIZE_LEFT; break;
1198         case WMSZ_RIGHT:       dir = _NET_WM_MOVERESIZE_SIZE_RIGHT; break;
1199         case WMSZ_TOP:         dir = _NET_WM_MOVERESIZE_SIZE_TOP; break;
1200         case WMSZ_TOPLEFT:     dir = _NET_WM_MOVERESIZE_SIZE_TOPLEFT; break;
1201         case WMSZ_TOPRIGHT:    dir = _NET_WM_MOVERESIZE_SIZE_TOPRIGHT; break;
1202         case WMSZ_BOTTOM:      dir = _NET_WM_MOVERESIZE_SIZE_BOTTOM; break;
1203         case WMSZ_BOTTOMLEFT:  dir = _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT; break;
1204         case WMSZ_BOTTOMRIGHT: dir = _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT; break;
1205         default:               dir = _NET_WM_MOVERESIZE_SIZE_KEYBOARD; break;
1206         }
1207     }
1208
1209     TRACE("hwnd %p, x %d, y %d, dir %d\n", hwnd, x, y, dir);
1210
1211     xev.xclient.type = ClientMessage;
1212     xev.xclient.window = X11DRV_get_whole_window(hwnd);
1213     xev.xclient.message_type = x11drv_atom(_NET_WM_MOVERESIZE);
1214     xev.xclient.serial = 0;
1215     xev.xclient.display = display;
1216     xev.xclient.send_event = True;
1217     xev.xclient.format = 32;
1218     xev.xclient.data.l[0] = x; /* x coord */
1219     xev.xclient.data.l[1] = y; /* y coord */
1220     xev.xclient.data.l[2] = dir; /* direction */
1221     xev.xclient.data.l[3] = 1; /* button */
1222     xev.xclient.data.l[4] = 0; /* unused */
1223
1224     /* need to ungrab the pointer that may have been automatically grabbed
1225      * with a ButtonPress event */
1226     wine_tsx11_lock();
1227     XUngrabPointer( display, CurrentTime );
1228     XSendEvent(display, root_window, False, SubstructureNotifyMask, &xev);
1229     wine_tsx11_unlock();
1230     return TRUE;
1231 }
1232
1233 /***********************************************************************
1234  *           SysCommandSizeMove   (X11DRV.@)
1235  *
1236  * Perform SC_MOVE and SC_SIZE commands.
1237  */
1238 void X11DRV_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
1239 {
1240     MSG msg;
1241     RECT sizingRect, mouseRect, origRect;
1242     HDC hdc;
1243     HWND parent;
1244     LONG hittest = (LONG)(wParam & 0x0f);
1245     WPARAM syscommand = wParam & 0xfff0;
1246     HCURSOR hDragCursor = 0, hOldCursor = 0;
1247     POINT minTrack, maxTrack;
1248     POINT capturePoint, pt;
1249     LONG style = GetWindowLongA( hwnd, GWL_STYLE );
1250     BOOL    thickframe = HAS_THICKFRAME( style );
1251     BOOL    iconic = style & WS_MINIMIZE;
1252     BOOL    moved = FALSE;
1253     DWORD     dwPoint = GetMessagePos ();
1254     BOOL DragFullWindows = TRUE;
1255     Window parent_win, whole_win;
1256     struct x11drv_thread_data *thread_data = x11drv_thread_data();
1257     struct x11drv_win_data *data;
1258
1259     pt.x = (short)LOWORD(dwPoint);
1260     pt.y = (short)HIWORD(dwPoint);
1261     capturePoint = pt;
1262
1263     if (IsZoomed(hwnd) || !IsWindowVisible(hwnd)) return;
1264
1265     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1266
1267     TRACE("hwnd %p (%smanaged), command %04lx, hittest %d, pos %d,%d\n",
1268           hwnd, data->managed ? "" : "NOT ", syscommand, hittest, pt.x, pt.y);
1269
1270     /* if we are managed then we let the WM do all the work */
1271     if (data->managed && X11DRV_WMMoveResizeWindow( hwnd, pt.x, pt.y, wParam )) return;
1272
1273     if (syscommand == SC_MOVE)
1274     {
1275         if (!hittest) hittest = start_size_move( hwnd, wParam, &capturePoint, style );
1276         if (!hittest) return;
1277     }
1278     else  /* SC_SIZE */
1279     {
1280         if ( hittest && (syscommand != SC_MOUSEMENU) )
1281             hittest += (HTLEFT - WMSZ_LEFT);
1282         else
1283         {
1284             set_movesize_capture( hwnd );
1285             hittest = start_size_move( hwnd, wParam, &capturePoint, style );
1286             if (!hittest)
1287             {
1288                 set_movesize_capture(0);
1289                 return;
1290             }
1291         }
1292     }
1293
1294       /* Get min/max info */
1295
1296     WINPOS_GetMinMaxInfo( hwnd, NULL, NULL, &minTrack, &maxTrack );
1297     GetWindowRect( hwnd, &sizingRect );
1298     if (style & WS_CHILD)
1299     {
1300         parent = GetParent(hwnd);
1301         /* make sizing rect relative to parent */
1302         MapWindowPoints( 0, parent, (POINT*)&sizingRect, 2 );
1303         GetClientRect( parent, &mouseRect );
1304     }
1305     else
1306     {
1307         parent = 0;
1308         mouseRect = virtual_screen_rect;
1309     }
1310     origRect = sizingRect;
1311
1312     if (ON_LEFT_BORDER(hittest))
1313     {
1314         mouseRect.left  = max( mouseRect.left, sizingRect.right-maxTrack.x );
1315         mouseRect.right = min( mouseRect.right, sizingRect.right-minTrack.x );
1316     }
1317     else if (ON_RIGHT_BORDER(hittest))
1318     {
1319         mouseRect.left  = max( mouseRect.left, sizingRect.left+minTrack.x );
1320         mouseRect.right = min( mouseRect.right, sizingRect.left+maxTrack.x );
1321     }
1322     if (ON_TOP_BORDER(hittest))
1323     {
1324         mouseRect.top    = max( mouseRect.top, sizingRect.bottom-maxTrack.y );
1325         mouseRect.bottom = min( mouseRect.bottom,sizingRect.bottom-minTrack.y);
1326     }
1327     else if (ON_BOTTOM_BORDER(hittest))
1328     {
1329         mouseRect.top    = max( mouseRect.top, sizingRect.top+minTrack.y );
1330         mouseRect.bottom = min( mouseRect.bottom, sizingRect.top+maxTrack.y );
1331     }
1332     if (parent) MapWindowPoints( parent, 0, (LPPOINT)&mouseRect, 2 );
1333
1334     /* Retrieve a default cache DC (without using the window style) */
1335     hdc = GetDCEx( parent, 0, DCX_CACHE );
1336
1337     if( iconic ) /* create a cursor for dragging */
1338     {
1339         hDragCursor = (HCURSOR)GetClassLongPtrW( hwnd, GCLP_HICON);
1340         if( !hDragCursor ) hDragCursor = (HCURSOR)SendMessageW( hwnd, WM_QUERYDRAGICON, 0, 0L);
1341         if( !hDragCursor ) iconic = FALSE;
1342     }
1343
1344     /* repaint the window before moving it around */
1345     RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
1346
1347     SendMessageW( hwnd, WM_ENTERSIZEMOVE, 0, 0 );
1348     set_movesize_capture( hwnd );
1349
1350     /* we only allow disabling the full window drag for child windows, or in desktop mode */
1351     /* otherwise we'd need to grab the server and we want to avoid that */
1352     if (parent || (root_window != DefaultRootWindow(gdi_display)))
1353         SystemParametersInfoA(SPI_GETDRAGFULLWINDOWS, 0, &DragFullWindows, 0);
1354
1355     whole_win = X11DRV_get_whole_window( GetAncestor(hwnd,GA_ROOT) );
1356     parent_win = parent ? X11DRV_get_whole_window( GetAncestor(parent,GA_ROOT) ) : root_window;
1357
1358     wine_tsx11_lock();
1359     XGrabPointer( thread_data->display, whole_win, False,
1360                   PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
1361                   GrabModeAsync, GrabModeAsync, parent_win, None, CurrentTime );
1362     wine_tsx11_unlock();
1363     thread_data->grab_window = whole_win;
1364
1365     while(1)
1366     {
1367         int dx = 0, dy = 0;
1368
1369         if (!GetMessageW( &msg, 0, 0, 0 )) break;
1370         if (CallMsgFilterW( &msg, MSGF_SIZE )) continue;
1371
1372         /* Exit on button-up, Return, or Esc */
1373         if ((msg.message == WM_LBUTTONUP) ||
1374             ((msg.message == WM_KEYDOWN) &&
1375              ((msg.wParam == VK_RETURN) || (msg.wParam == VK_ESCAPE)))) break;
1376
1377         if ((msg.message != WM_KEYDOWN) && (msg.message != WM_MOUSEMOVE))
1378         {
1379             TranslateMessage( &msg );
1380             DispatchMessageW( &msg );
1381             continue;  /* We are not interested in other messages */
1382         }
1383
1384         pt = msg.pt;
1385
1386         if (msg.message == WM_KEYDOWN) switch(msg.wParam)
1387         {
1388         case VK_UP:    pt.y -= 8; break;
1389         case VK_DOWN:  pt.y += 8; break;
1390         case VK_LEFT:  pt.x -= 8; break;
1391         case VK_RIGHT: pt.x += 8; break;
1392         }
1393
1394         pt.x = max( pt.x, mouseRect.left );
1395         pt.x = min( pt.x, mouseRect.right );
1396         pt.y = max( pt.y, mouseRect.top );
1397         pt.y = min( pt.y, mouseRect.bottom );
1398
1399         dx = pt.x - capturePoint.x;
1400         dy = pt.y - capturePoint.y;
1401
1402         if (dx || dy)
1403         {
1404             if( !moved )
1405             {
1406                 moved = TRUE;
1407
1408                 if( iconic ) /* ok, no system popup tracking */
1409                 {
1410                     hOldCursor = SetCursor(hDragCursor);
1411                     ShowCursor( TRUE );
1412                     WINPOS_ShowIconTitle( hwnd, FALSE );
1413                 }
1414                 else if(!DragFullWindows)
1415                     draw_moving_frame( hdc, &sizingRect, thickframe );
1416             }
1417
1418             if (msg.message == WM_KEYDOWN) SetCursorPos( pt.x, pt.y );
1419             else
1420             {
1421                 RECT newRect = sizingRect;
1422                 WPARAM wpSizingHit = 0;
1423
1424                 if (hittest == HTCAPTION) OffsetRect( &newRect, dx, dy );
1425                 if (ON_LEFT_BORDER(hittest)) newRect.left += dx;
1426                 else if (ON_RIGHT_BORDER(hittest)) newRect.right += dx;
1427                 if (ON_TOP_BORDER(hittest)) newRect.top += dy;
1428                 else if (ON_BOTTOM_BORDER(hittest)) newRect.bottom += dy;
1429                 if(!iconic && !DragFullWindows) draw_moving_frame( hdc, &sizingRect, thickframe );
1430                 capturePoint = pt;
1431
1432                 /* determine the hit location */
1433                 if (hittest >= HTLEFT && hittest <= HTBOTTOMRIGHT)
1434                     wpSizingHit = WMSZ_LEFT + (hittest - HTLEFT);
1435                 SendMessageW( hwnd, WM_SIZING, wpSizingHit, (LPARAM)&newRect );
1436
1437                 if (!iconic)
1438                 {
1439                     if(!DragFullWindows)
1440                         draw_moving_frame( hdc, &newRect, thickframe );
1441                     else
1442                         SetWindowPos( hwnd, 0, newRect.left, newRect.top,
1443                                       newRect.right - newRect.left,
1444                                       newRect.bottom - newRect.top,
1445                                       ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1446                 }
1447                 sizingRect = newRect;
1448             }
1449         }
1450     }
1451
1452     set_movesize_capture(0);
1453     if( iconic )
1454     {
1455         if( moved ) /* restore cursors, show icon title later on */
1456         {
1457             ShowCursor( FALSE );
1458             SetCursor( hOldCursor );
1459         }
1460     }
1461     else if (moved && !DragFullWindows)
1462     {
1463         draw_moving_frame( hdc, &sizingRect, thickframe );
1464         /* make sure the moving frame is erased before we move the window */
1465         wine_tsx11_lock();
1466         XFlush( gdi_display );
1467         wine_tsx11_unlock();
1468     }
1469
1470     ReleaseDC( parent, hdc );
1471
1472     wine_tsx11_lock();
1473     XUngrabPointer( thread_data->display, CurrentTime );
1474     wine_tsx11_unlock();
1475     thread_data->grab_window = None;
1476
1477     if (HOOK_CallHooks( WH_CBT, HCBT_MOVESIZE, (WPARAM)hwnd, (LPARAM)&sizingRect, TRUE ))
1478         moved = FALSE;
1479
1480     SendMessageW( hwnd, WM_EXITSIZEMOVE, 0, 0 );
1481     SendMessageW( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L);
1482
1483     /* window moved or resized */
1484     if (moved)
1485     {
1486         /* if the moving/resizing isn't canceled call SetWindowPos
1487          * with the new position or the new size of the window
1488          */
1489         if (!((msg.message == WM_KEYDOWN) && (msg.wParam == VK_ESCAPE)) )
1490         {
1491             /* NOTE: SWP_NOACTIVATE prevents document window activation in Word 6 */
1492             if(!DragFullWindows)
1493                 SetWindowPos( hwnd, 0, sizingRect.left, sizingRect.top,
1494                               sizingRect.right - sizingRect.left,
1495                               sizingRect.bottom - sizingRect.top,
1496                               ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1497         }
1498         else
1499         { /* restore previous size/position */
1500             if(DragFullWindows)
1501                 SetWindowPos( hwnd, 0, origRect.left, origRect.top,
1502                               origRect.right - origRect.left,
1503                               origRect.bottom - origRect.top,
1504                               ( hittest == HTCAPTION ) ? SWP_NOSIZE : 0 );
1505         }
1506     }
1507
1508     if (IsIconic(hwnd))
1509     {
1510         /* Single click brings up the system menu when iconized */
1511
1512         if( !moved )
1513         {
1514             if(style & WS_SYSMENU )
1515                 SendMessageW( hwnd, WM_SYSCOMMAND,
1516                               SC_MOUSEMENU + HTSYSMENU, MAKELONG(pt.x,pt.y));
1517         }
1518         else WINPOS_ShowIconTitle( hwnd, TRUE );
1519     }
1520 }