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