2 * Window position related functions.
4 * Copyright 1993, 1994, 1995 Alexandre Julliard
5 * 1995, 1996, 1999 Alex Korobka
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
28 #define WIN32_NO_STATUS
33 #include "wine/server.h"
35 #include "user_private.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(win
);
41 #define SWP_AGG_NOGEOMETRYCHANGE \
42 (SWP_NOSIZE | SWP_NOCLIENTSIZE | SWP_NOZORDER)
43 #define SWP_AGG_NOPOSCHANGE \
44 (SWP_NOSIZE | SWP_NOMOVE | SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE | SWP_NOZORDER)
45 #define SWP_AGG_STATUSFLAGS \
46 (SWP_AGG_NOPOSCHANGE | SWP_FRAMECHANGED | SWP_HIDEWINDOW | SWP_SHOWWINDOW)
48 #define HAS_DLGFRAME(style,exStyle) \
49 (((exStyle) & WS_EX_DLGMODALFRAME) || \
50 (((style) & WS_DLGFRAME) && !((style) & WS_BORDER)))
52 #define HAS_THICKFRAME(style) \
53 (((style) & WS_THICKFRAME) && \
54 !(((style) & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME))
56 #define EMPTYPOINT(pt) ((pt).x == -1 && (pt).y == -1)
58 #define ON_LEFT_BORDER(hit) \
59 (((hit) == HTLEFT) || ((hit) == HTTOPLEFT) || ((hit) == HTBOTTOMLEFT))
60 #define ON_RIGHT_BORDER(hit) \
61 (((hit) == HTRIGHT) || ((hit) == HTTOPRIGHT) || ((hit) == HTBOTTOMRIGHT))
62 #define ON_TOP_BORDER(hit) \
63 (((hit) == HTTOP) || ((hit) == HTTOPLEFT) || ((hit) == HTTOPRIGHT))
64 #define ON_BOTTOM_BORDER(hit) \
65 (((hit) == HTBOTTOM) || ((hit) == HTBOTTOMLEFT) || ((hit) == HTBOTTOMRIGHT))
67 #define PLACE_MIN 0x0001
68 #define PLACE_MAX 0x0002
69 #define PLACE_RECT 0x0004
72 #define DWP_MAGIC ((INT)('W' | ('P' << 8) | ('O' << 16) | ('S' << 24)))
85 /***********************************************************************
86 * SwitchToThisWindow (USER32.@)
88 void WINAPI
SwitchToThisWindow( HWND hwnd
, BOOL restore
)
90 ShowWindow( hwnd
, restore
? SW_RESTORE
: SW_SHOWMINIMIZED
);
94 /***********************************************************************
95 * GetWindowRect (USER32.@)
97 BOOL WINAPI
GetWindowRect( HWND hwnd
, LPRECT rect
)
99 BOOL ret
= WIN_GetRectangles( hwnd
, rect
, NULL
);
102 MapWindowPoints( GetAncestor( hwnd
, GA_PARENT
), 0, (POINT
*)rect
, 2 );
103 TRACE( "hwnd %p (%s)\n", hwnd
, wine_dbgstr_rect(rect
) );
109 /***********************************************************************
110 * GetWindowRgn (USER32.@)
112 int WINAPI
GetWindowRgn ( HWND hwnd
, HRGN hrgn
)
122 if (!(data
= HeapAlloc( GetProcessHeap(), 0, sizeof(*data
) + size
- 1 )))
124 SetLastError( ERROR_OUTOFMEMORY
);
127 SERVER_START_REQ( get_window_region
)
129 req
->window
= wine_server_user_handle( hwnd
);
130 wine_server_set_reply( req
, data
->Buffer
, size
);
131 if (!(status
= wine_server_call( req
)))
133 size_t reply_size
= wine_server_reply_size( reply
);
136 data
->rdh
.dwSize
= sizeof(data
->rdh
);
137 data
->rdh
.iType
= RDH_RECTANGLES
;
138 data
->rdh
.nCount
= reply_size
/ sizeof(RECT
);
139 data
->rdh
.nRgnSize
= reply_size
;
140 win_rgn
= ExtCreateRegion( NULL
, size
, data
);
143 else size
= reply
->total_size
;
146 HeapFree( GetProcessHeap(), 0, data
);
147 } while (status
== STATUS_BUFFER_OVERFLOW
);
149 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
152 nRet
= CombineRgn( hrgn
, win_rgn
, 0, RGN_COPY
);
153 DeleteObject( win_rgn
);
159 /***********************************************************************
160 * SetWindowRgn (USER32.@)
162 int WINAPI
SetWindowRgn( HWND hwnd
, HRGN hrgn
, BOOL bRedraw
)
164 static const RECT empty_rect
;
172 if (!(size
= GetRegionData( hrgn
, 0, NULL
))) return FALSE
;
173 if (!(data
= HeapAlloc( GetProcessHeap(), 0, size
))) return FALSE
;
174 if (!GetRegionData( hrgn
, size
, data
))
176 HeapFree( GetProcessHeap(), 0, data
);
179 SERVER_START_REQ( set_window_region
)
181 req
->window
= wine_server_user_handle( hwnd
);
182 req
->redraw
= (bRedraw
!= 0);
183 if (data
->rdh
.nCount
)
184 wine_server_add_data( req
, data
->Buffer
, data
->rdh
.nCount
* sizeof(RECT
) );
186 wine_server_add_data( req
, &empty_rect
, sizeof(empty_rect
) );
187 ret
= !wine_server_call_err( req
);
191 else /* clear existing region */
193 SERVER_START_REQ( set_window_region
)
195 req
->window
= wine_server_user_handle( hwnd
);
196 req
->redraw
= (bRedraw
!= 0);
197 ret
= !wine_server_call_err( req
);
202 if (ret
) ret
= USER_Driver
->pSetWindowRgn( hwnd
, hrgn
, bRedraw
);
206 UINT swp_flags
= SWP_NOSIZE
|SWP_NOMOVE
|SWP_NOZORDER
|SWP_NOACTIVATE
|SWP_FRAMECHANGED
|SWP_NOCLIENTSIZE
|SWP_NOCLIENTMOVE
;
207 if (!bRedraw
) swp_flags
|= SWP_NOREDRAW
;
208 SetWindowPos( hwnd
, 0, 0, 0, 0, 0, swp_flags
);
209 invalidate_dce( hwnd
, NULL
);
215 /***********************************************************************
216 * GetClientRect (USER32.@)
218 BOOL WINAPI
GetClientRect( HWND hwnd
, LPRECT rect
)
222 if ((ret
= WIN_GetRectangles( hwnd
, NULL
, rect
)))
224 rect
->right
-= rect
->left
;
225 rect
->bottom
-= rect
->top
;
226 rect
->left
= rect
->top
= 0;
232 /*******************************************************************
233 * ClientToScreen (USER32.@)
235 BOOL WINAPI
ClientToScreen( HWND hwnd
, LPPOINT lppnt
)
237 MapWindowPoints( hwnd
, 0, lppnt
, 1 );
242 /*******************************************************************
243 * ScreenToClient (USER32.@)
245 BOOL WINAPI
ScreenToClient( HWND hwnd
, LPPOINT lppnt
)
247 MapWindowPoints( 0, hwnd
, lppnt
, 1 );
252 /***********************************************************************
253 * list_children_from_point
255 * Get the list of children that can contain point from the server.
256 * Point is in screen coordinates.
257 * Returned list must be freed by caller.
259 static HWND
*list_children_from_point( HWND hwnd
, POINT pt
)
268 if (!(list
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(HWND
) ))) break;
270 SERVER_START_REQ( get_window_children_from_point
)
272 req
->parent
= wine_server_user_handle( hwnd
);
275 wine_server_set_reply( req
, list
, (size
-1) * sizeof(user_handle_t
) );
276 if (!wine_server_call( req
)) count
= reply
->count
;
279 if (count
&& count
< size
)
281 /* start from the end since HWND is potentially larger than user_handle_t */
282 for (i
= count
- 1; i
>= 0; i
--)
283 list
[i
] = wine_server_ptr_handle( ((user_handle_t
*)list
)[i
] );
287 HeapFree( GetProcessHeap(), 0, list
);
289 size
= count
+ 1; /* restart with a large enough buffer */
295 /***********************************************************************
296 * WINPOS_WindowFromPoint
298 * Find the window and hittest for a given point.
300 HWND
WINPOS_WindowFromPoint( HWND hwndScope
, POINT pt
, INT
*hittest
)
305 if (!hwndScope
) hwndScope
= GetDesktopWindow();
307 *hittest
= HTNOWHERE
;
309 if (!(list
= list_children_from_point( hwndScope
, pt
))) return 0;
311 /* now determine the hittest */
313 for (i
= 0; list
[i
]; i
++)
315 LONG style
= GetWindowLongW( list
[i
], GWL_STYLE
);
317 /* If window is minimized or disabled, return at once */
318 if (style
& WS_MINIMIZE
)
320 *hittest
= HTCAPTION
;
323 if (style
& WS_DISABLED
)
328 /* Send WM_NCCHITTEST (if same thread) */
329 if (!WIN_IsCurrentThread( list
[i
] ))
334 res
= SendMessageW( list
[i
], WM_NCHITTEST
, 0, MAKELONG(pt
.x
,pt
.y
) );
335 if (res
!= HTTRANSPARENT
)
337 *hittest
= res
; /* Found the window */
340 /* continue search with next window in z-order */
343 HeapFree( GetProcessHeap(), 0, list
);
344 TRACE( "scope %p (%d,%d) returning %p\n", hwndScope
, pt
.x
, pt
.y
, ret
);
349 /*******************************************************************
350 * WindowFromPoint (USER32.@)
352 HWND WINAPI
WindowFromPoint( POINT pt
)
355 return WINPOS_WindowFromPoint( 0, pt
, &hittest
);
359 /*******************************************************************
360 * ChildWindowFromPoint (USER32.@)
362 HWND WINAPI
ChildWindowFromPoint( HWND hwndParent
, POINT pt
)
364 return ChildWindowFromPointEx( hwndParent
, pt
, CWP_ALL
);
367 /*******************************************************************
368 * RealChildWindowFromPoint (USER32.@)
370 HWND WINAPI
RealChildWindowFromPoint( HWND hwndParent
, POINT pt
)
372 return ChildWindowFromPointEx( hwndParent
, pt
, CWP_SKIPTRANSPARENT
);
375 /*******************************************************************
376 * ChildWindowFromPointEx (USER32.@)
378 HWND WINAPI
ChildWindowFromPointEx( HWND hwndParent
, POINT pt
, UINT uFlags
)
380 /* pt is in the client coordinates */
386 GetClientRect( hwndParent
, &rect
);
387 if (!PtInRect( &rect
, pt
)) return 0;
388 if (!(list
= WIN_ListChildren( hwndParent
))) return hwndParent
;
390 for (i
= 0; list
[i
]; i
++)
392 if (!WIN_GetRectangles( list
[i
], &rect
, NULL
)) continue;
393 if (!PtInRect( &rect
, pt
)) continue;
394 if (uFlags
& (CWP_SKIPINVISIBLE
|CWP_SKIPDISABLED
))
396 LONG style
= GetWindowLongW( list
[i
], GWL_STYLE
);
397 if ((uFlags
& CWP_SKIPINVISIBLE
) && !(style
& WS_VISIBLE
)) continue;
398 if ((uFlags
& CWP_SKIPDISABLED
) && (style
& WS_DISABLED
)) continue;
400 if (uFlags
& CWP_SKIPTRANSPARENT
)
402 if (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TRANSPARENT
) continue;
407 HeapFree( GetProcessHeap(), 0, list
);
408 if (!retvalue
) retvalue
= hwndParent
;
413 /*******************************************************************
414 * WINPOS_GetWinOffset
416 * Calculate the offset between the origin of the two windows. Used
417 * to implement MapWindowPoints.
419 static void WINPOS_GetWinOffset( HWND hwndFrom
, HWND hwndTo
, POINT
*offset
)
423 offset
->x
= offset
->y
= 0;
425 /* Translate source window origin to screen coords */
428 HWND hwnd
= hwndFrom
;
432 if (hwnd
== hwndTo
) return;
433 if (!(wndPtr
= WIN_GetPtr( hwnd
)))
435 ERR( "bad hwndFrom = %p\n", hwnd
);
438 if (wndPtr
== WND_DESKTOP
) break;
439 if (wndPtr
== WND_OTHER_PROCESS
) goto other_process
;
442 offset
->x
+= wndPtr
->rectClient
.left
;
443 offset
->y
+= wndPtr
->rectClient
.top
;
445 hwnd
= wndPtr
->parent
;
446 WIN_ReleasePtr( wndPtr
);
450 /* Translate origin to destination window coords */
457 if (!(wndPtr
= WIN_GetPtr( hwnd
)))
459 ERR( "bad hwndTo = %p\n", hwnd
);
462 if (wndPtr
== WND_DESKTOP
) break;
463 if (wndPtr
== WND_OTHER_PROCESS
) goto other_process
;
466 offset
->x
-= wndPtr
->rectClient
.left
;
467 offset
->y
-= wndPtr
->rectClient
.top
;
469 hwnd
= wndPtr
->parent
;
470 WIN_ReleasePtr( wndPtr
);
475 other_process
: /* one of the parents may belong to another process, do it the hard way */
476 offset
->x
= offset
->y
= 0;
477 SERVER_START_REQ( get_windows_offset
)
479 req
->from
= wine_server_user_handle( hwndFrom
);
480 req
->to
= wine_server_user_handle( hwndTo
);
481 if (!wine_server_call( req
))
483 offset
->x
= reply
->x
;
484 offset
->y
= reply
->y
;
491 /*******************************************************************
492 * MapWindowPoints (USER.258)
494 void WINAPI
MapWindowPoints16( HWND16 hwndFrom
, HWND16 hwndTo
,
495 LPPOINT16 lppt
, UINT16 count
)
499 WINPOS_GetWinOffset( WIN_Handle32(hwndFrom
), WIN_Handle32(hwndTo
), &offset
);
509 /*******************************************************************
510 * MapWindowPoints (USER32.@)
512 INT WINAPI
MapWindowPoints( HWND hwndFrom
, HWND hwndTo
, LPPOINT lppt
, UINT count
)
516 WINPOS_GetWinOffset( hwndFrom
, hwndTo
, &offset
);
523 return MAKELONG( LOWORD(offset
.x
), LOWORD(offset
.y
) );
527 /***********************************************************************
528 * IsIconic (USER32.@)
530 BOOL WINAPI
IsIconic(HWND hWnd
)
532 return (GetWindowLongW( hWnd
, GWL_STYLE
) & WS_MINIMIZE
) != 0;
536 /***********************************************************************
537 * IsZoomed (USER32.@)
539 BOOL WINAPI
IsZoomed(HWND hWnd
)
541 return (GetWindowLongW( hWnd
, GWL_STYLE
) & WS_MAXIMIZE
) != 0;
545 /*******************************************************************
546 * AllowSetForegroundWindow (USER32.@)
548 BOOL WINAPI
AllowSetForegroundWindow( DWORD procid
)
550 /* FIXME: If Win98/2000 style SetForegroundWindow behavior is
551 * implemented, then fix this function. */
556 /*******************************************************************
557 * LockSetForegroundWindow (USER32.@)
559 BOOL WINAPI
LockSetForegroundWindow( UINT lockcode
)
561 /* FIXME: If Win98/2000 style SetForegroundWindow behavior is
562 * implemented, then fix this function. */
567 /***********************************************************************
568 * BringWindowToTop (USER32.@)
570 BOOL WINAPI
BringWindowToTop( HWND hwnd
)
572 return SetWindowPos( hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
576 /***********************************************************************
577 * MoveWindow (USER32.@)
579 BOOL WINAPI
MoveWindow( HWND hwnd
, INT x
, INT y
, INT cx
, INT cy
,
582 int flags
= SWP_NOZORDER
| SWP_NOACTIVATE
;
583 if (!repaint
) flags
|= SWP_NOREDRAW
;
584 TRACE("%p %d,%d %dx%d %d\n", hwnd
, x
, y
, cx
, cy
, repaint
);
585 return SetWindowPos( hwnd
, 0, x
, y
, cx
, cy
, flags
);
589 /***********************************************************************
590 * WINPOS_RedrawIconTitle
592 BOOL
WINPOS_RedrawIconTitle( HWND hWnd
)
595 WND
*win
= WIN_GetPtr( hWnd
);
597 if (win
&& win
!= WND_OTHER_PROCESS
&& win
!= WND_DESKTOP
)
599 icon_title
= win
->icon_title
;
600 WIN_ReleasePtr( win
);
602 if (!icon_title
) return FALSE
;
603 SendMessageW( icon_title
, WM_SHOWWINDOW
, TRUE
, 0 );
604 InvalidateRect( icon_title
, NULL
, TRUE
);
608 /***********************************************************************
609 * WINPOS_ShowIconTitle
611 static BOOL
WINPOS_ShowIconTitle( HWND hwnd
, BOOL bShow
)
613 if (!GetPropA( hwnd
, "__wine_x11_managed" ))
615 WND
*win
= WIN_GetPtr( hwnd
);
618 TRACE("%p %i\n", hwnd
, (bShow
!= 0) );
620 if (!win
|| win
== WND_OTHER_PROCESS
|| win
== WND_DESKTOP
) return FALSE
;
621 title
= win
->icon_title
;
622 WIN_ReleasePtr( win
);
628 title
= ICONTITLE_Create( hwnd
);
629 if (!(win
= WIN_GetPtr( hwnd
)) || win
== WND_OTHER_PROCESS
)
631 DestroyWindow( title
);
634 win
->icon_title
= title
;
635 WIN_ReleasePtr( win
);
637 if (!IsWindowVisible(title
))
639 SendMessageW( title
, WM_SHOWWINDOW
, TRUE
, 0 );
640 SetWindowPos( title
, 0, 0, 0, 0, 0, SWP_NOSIZE
| SWP_NOMOVE
|
641 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_SHOWWINDOW
);
644 else if (title
) ShowWindow( title
, SW_HIDE
);
649 /*******************************************************************
650 * WINPOS_GetMinMaxInfo
652 * Get the minimized and maximized information for a window.
654 void WINPOS_GetMinMaxInfo( HWND hwnd
, POINT
*maxSize
, POINT
*maxPos
,
655 POINT
*minTrack
, POINT
*maxTrack
)
660 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
662 LONG exstyle
= GetWindowLongW( hwnd
, GWL_EXSTYLE
);
666 /* Compute default values */
668 GetWindowRect(hwnd
, &rc
);
669 MinMax
.ptReserved
.x
= rc
.left
;
670 MinMax
.ptReserved
.y
= rc
.top
;
672 if ((style
& WS_CAPTION
) == WS_CAPTION
)
673 adjustedStyle
= style
& ~WS_BORDER
; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
675 adjustedStyle
= style
;
677 GetClientRect(GetAncestor(hwnd
,GA_PARENT
), &rc
);
678 AdjustWindowRectEx(&rc
, adjustedStyle
, ((style
& WS_POPUP
) && GetMenu(hwnd
)), exstyle
);
683 MinMax
.ptMaxSize
.x
= rc
.right
- rc
.left
;
684 MinMax
.ptMaxSize
.y
= rc
.bottom
- rc
.top
;
685 if (style
& (WS_DLGFRAME
| WS_BORDER
))
687 MinMax
.ptMinTrackSize
.x
= GetSystemMetrics(SM_CXMINTRACK
);
688 MinMax
.ptMinTrackSize
.y
= GetSystemMetrics(SM_CYMINTRACK
);
692 MinMax
.ptMinTrackSize
.x
= 2 * xinc
;
693 MinMax
.ptMinTrackSize
.y
= 2 * yinc
;
695 MinMax
.ptMaxTrackSize
.x
= GetSystemMetrics(SM_CXMAXTRACK
);
696 MinMax
.ptMaxTrackSize
.y
= GetSystemMetrics(SM_CYMAXTRACK
);
697 MinMax
.ptMaxPosition
.x
= -xinc
;
698 MinMax
.ptMaxPosition
.y
= -yinc
;
700 if ((win
= WIN_GetPtr( hwnd
)) && win
!= WND_DESKTOP
&& win
!= WND_OTHER_PROCESS
)
702 if (!EMPTYPOINT(win
->max_pos
)) MinMax
.ptMaxPosition
= win
->max_pos
;
703 WIN_ReleasePtr( win
);
706 SendMessageW( hwnd
, WM_GETMINMAXINFO
, 0, (LPARAM
)&MinMax
);
708 /* if the app didn't change the values, adapt them for the current monitor */
710 if ((monitor
= MonitorFromWindow( hwnd
, MONITOR_DEFAULTTOPRIMARY
)))
713 MONITORINFO mon_info
;
715 mon_info
.cbSize
= sizeof(mon_info
);
716 GetMonitorInfoW( monitor
, &mon_info
);
718 rc_work
= mon_info
.rcMonitor
;
720 if (style
& WS_MAXIMIZEBOX
)
722 if ((style
& WS_CAPTION
) == WS_CAPTION
|| !(style
& (WS_CHILD
| WS_POPUP
)))
723 rc_work
= mon_info
.rcWork
;
726 if (MinMax
.ptMaxSize
.x
== GetSystemMetrics(SM_CXSCREEN
) + 2 * xinc
&&
727 MinMax
.ptMaxSize
.y
== GetSystemMetrics(SM_CYSCREEN
) + 2 * yinc
)
729 MinMax
.ptMaxSize
.x
= (rc_work
.right
- rc_work
.left
) + 2 * xinc
;
730 MinMax
.ptMaxSize
.y
= (rc_work
.bottom
- rc_work
.top
) + 2 * yinc
;
732 if (MinMax
.ptMaxPosition
.x
== -xinc
&& MinMax
.ptMaxPosition
.y
== -yinc
)
734 MinMax
.ptMaxPosition
.x
= rc_work
.left
- xinc
;
735 MinMax
.ptMaxPosition
.y
= rc_work
.top
- yinc
;
739 /* Some sanity checks */
741 TRACE("%d %d / %d %d / %d %d / %d %d\n",
742 MinMax
.ptMaxSize
.x
, MinMax
.ptMaxSize
.y
,
743 MinMax
.ptMaxPosition
.x
, MinMax
.ptMaxPosition
.y
,
744 MinMax
.ptMaxTrackSize
.x
, MinMax
.ptMaxTrackSize
.y
,
745 MinMax
.ptMinTrackSize
.x
, MinMax
.ptMinTrackSize
.y
);
746 MinMax
.ptMaxTrackSize
.x
= max( MinMax
.ptMaxTrackSize
.x
,
747 MinMax
.ptMinTrackSize
.x
);
748 MinMax
.ptMaxTrackSize
.y
= max( MinMax
.ptMaxTrackSize
.y
,
749 MinMax
.ptMinTrackSize
.y
);
751 if (maxSize
) *maxSize
= MinMax
.ptMaxSize
;
752 if (maxPos
) *maxPos
= MinMax
.ptMaxPosition
;
753 if (minTrack
) *minTrack
= MinMax
.ptMinTrackSize
;
754 if (maxTrack
) *maxTrack
= MinMax
.ptMaxTrackSize
;
758 /***********************************************************************
761 * Find a suitable place for an iconic window.
763 static POINT
WINPOS_FindIconPos( HWND hwnd
, POINT pt
)
765 RECT rect
, rectParent
;
768 int xspacing
, yspacing
;
770 parent
= GetAncestor( hwnd
, GA_PARENT
);
771 GetClientRect( parent
, &rectParent
);
772 if ((pt
.x
>= rectParent
.left
) && (pt
.x
+ GetSystemMetrics(SM_CXICON
) < rectParent
.right
) &&
773 (pt
.y
>= rectParent
.top
) && (pt
.y
+ GetSystemMetrics(SM_CYICON
) < rectParent
.bottom
))
774 return pt
; /* The icon already has a suitable position */
776 xspacing
= GetSystemMetrics(SM_CXICONSPACING
);
777 yspacing
= GetSystemMetrics(SM_CYICONSPACING
);
779 /* Check if another icon already occupies this spot */
780 /* FIXME: this is completely inefficient */
782 hrgn
= CreateRectRgn( 0, 0, 0, 0 );
783 tmp
= CreateRectRgn( 0, 0, 0, 0 );
784 for (child
= GetWindow( parent
, GW_HWNDFIRST
); child
; child
= GetWindow( child
, GW_HWNDNEXT
))
787 if (child
== hwnd
) continue;
788 if ((GetWindowLongW( child
, GWL_STYLE
) & (WS_VISIBLE
|WS_MINIMIZE
)) != (WS_VISIBLE
|WS_MINIMIZE
))
790 if (!(childPtr
= WIN_GetPtr( child
)) || childPtr
== WND_OTHER_PROCESS
)
792 SetRectRgn( tmp
, childPtr
->rectWindow
.left
, childPtr
->rectWindow
.top
,
793 childPtr
->rectWindow
.right
, childPtr
->rectWindow
.bottom
);
794 CombineRgn( hrgn
, hrgn
, tmp
, RGN_OR
);
795 WIN_ReleasePtr( childPtr
);
799 for (rect
.bottom
= rectParent
.bottom
; rect
.bottom
>= yspacing
; rect
.bottom
-= yspacing
)
801 for (rect
.left
= rectParent
.left
; rect
.left
<= rectParent
.right
- xspacing
; rect
.left
+= xspacing
)
803 rect
.right
= rect
.left
+ xspacing
;
804 rect
.top
= rect
.bottom
- yspacing
;
805 if (!RectInRegion( hrgn
, &rect
))
807 /* No window was found, so it's OK for us */
808 pt
.x
= rect
.left
+ (xspacing
- GetSystemMetrics(SM_CXICON
)) / 2;
809 pt
.y
= rect
.top
+ (yspacing
- GetSystemMetrics(SM_CYICON
)) / 2;
810 DeleteObject( hrgn
);
815 DeleteObject( hrgn
);
821 /***********************************************************************
824 UINT
WINPOS_MinMaximize( HWND hwnd
, UINT cmd
, LPRECT rect
)
832 TRACE("%p %u\n", hwnd
, cmd
);
834 wpl
.length
= sizeof(wpl
);
835 GetWindowPlacement( hwnd
, &wpl
);
837 if (HOOK_CallHooks( WH_CBT
, HCBT_MINMAX
, (WPARAM
)hwnd
, cmd
, TRUE
))
838 return SWP_NOSIZE
| SWP_NOMOVE
;
840 if (IsIconic( hwnd
))
844 case SW_SHOWMINNOACTIVE
:
845 case SW_SHOWMINIMIZED
:
846 case SW_FORCEMINIMIZE
:
848 return SWP_NOSIZE
| SWP_NOMOVE
;
850 if (!SendMessageW( hwnd
, WM_QUERYOPEN
, 0, 0 )) return SWP_NOSIZE
| SWP_NOMOVE
;
851 swpFlags
|= SWP_NOCOPYBITS
;
856 case SW_SHOWMINNOACTIVE
:
857 case SW_SHOWMINIMIZED
:
858 case SW_FORCEMINIMIZE
:
860 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
861 if( wndPtr
->dwStyle
& WS_MAXIMIZE
) wndPtr
->flags
|= WIN_RESTORE_MAX
;
862 else wndPtr
->flags
&= ~WIN_RESTORE_MAX
;
863 WIN_ReleasePtr( wndPtr
);
865 old_style
= WIN_SetStyle( hwnd
, WS_MINIMIZE
, WS_MAXIMIZE
);
867 wpl
.ptMinPosition
= WINPOS_FindIconPos( hwnd
, wpl
.ptMinPosition
);
869 if (!(old_style
& WS_MINIMIZE
)) swpFlags
|= SWP_STATECHANGED
;
870 SetRect( rect
, wpl
.ptMinPosition
.x
, wpl
.ptMinPosition
.y
,
871 wpl
.ptMinPosition
.x
+ GetSystemMetrics(SM_CXICON
),
872 wpl
.ptMinPosition
.y
+ GetSystemMetrics(SM_CYICON
) );
873 swpFlags
|= SWP_NOCOPYBITS
;
877 old_style
= GetWindowLongW( hwnd
, GWL_STYLE
);
878 if ((old_style
& WS_MAXIMIZE
) && (old_style
& WS_VISIBLE
)) return SWP_NOSIZE
| SWP_NOMOVE
;
880 WINPOS_GetMinMaxInfo( hwnd
, &size
, &wpl
.ptMaxPosition
, NULL
, NULL
);
882 old_style
= WIN_SetStyle( hwnd
, WS_MAXIMIZE
, WS_MINIMIZE
);
883 if (old_style
& WS_MINIMIZE
) WINPOS_ShowIconTitle( hwnd
, FALSE
);
885 if (!(old_style
& WS_MAXIMIZE
)) swpFlags
|= SWP_STATECHANGED
;
886 SetRect( rect
, wpl
.ptMaxPosition
.x
, wpl
.ptMaxPosition
.y
,
887 wpl
.ptMaxPosition
.x
+ size
.x
, wpl
.ptMaxPosition
.y
+ size
.y
);
890 case SW_SHOWNOACTIVATE
:
893 old_style
= WIN_SetStyle( hwnd
, 0, WS_MINIMIZE
| WS_MAXIMIZE
);
894 if (old_style
& WS_MINIMIZE
)
898 WINPOS_ShowIconTitle( hwnd
, FALSE
);
900 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
901 restore_max
= (wndPtr
->flags
& WIN_RESTORE_MAX
) != 0;
902 WIN_ReleasePtr( wndPtr
);
905 /* Restore to maximized position */
906 WINPOS_GetMinMaxInfo( hwnd
, &size
, &wpl
.ptMaxPosition
, NULL
, NULL
);
907 WIN_SetStyle( hwnd
, WS_MAXIMIZE
, 0 );
908 swpFlags
|= SWP_STATECHANGED
;
909 SetRect( rect
, wpl
.ptMaxPosition
.x
, wpl
.ptMaxPosition
.y
,
910 wpl
.ptMaxPosition
.x
+ size
.x
, wpl
.ptMaxPosition
.y
+ size
.y
);
914 else if (!(old_style
& WS_MAXIMIZE
)) break;
916 swpFlags
|= SWP_STATECHANGED
;
918 /* Restore to normal position */
920 *rect
= wpl
.rcNormalPosition
;
928 /***********************************************************************
931 * Implementation of ShowWindow and ShowWindowAsync.
933 static BOOL
show_window( HWND hwnd
, INT cmd
)
937 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
938 BOOL wasVisible
= (style
& WS_VISIBLE
) != 0;
939 BOOL showFlag
= TRUE
;
940 RECT newPos
= {0, 0, 0, 0};
943 TRACE("hwnd=%p, cmd=%d, wasVisible %d\n", hwnd
, cmd
, wasVisible
);
948 if (!wasVisible
) return FALSE
;
950 swp
|= SWP_HIDEWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
951 if (style
& WS_CHILD
) swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
954 case SW_SHOWMINNOACTIVE
:
956 case SW_FORCEMINIMIZE
: /* FIXME: Does not work if thread is hung. */
957 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
959 case SW_SHOWMINIMIZED
:
960 swp
|= SWP_SHOWWINDOW
| SWP_FRAMECHANGED
;
961 swp
|= WINPOS_MinMaximize( hwnd
, cmd
, &newPos
);
962 if ((style
& WS_MINIMIZE
) && wasVisible
) return TRUE
;
965 case SW_SHOWMAXIMIZED
: /* same as SW_MAXIMIZE */
966 if (!wasVisible
) swp
|= SWP_SHOWWINDOW
;
967 swp
|= SWP_FRAMECHANGED
;
968 swp
|= WINPOS_MinMaximize( hwnd
, SW_MAXIMIZE
, &newPos
);
969 if ((style
& WS_MAXIMIZE
) && wasVisible
) return TRUE
;
973 swp
|= SWP_NOACTIVATE
| SWP_SHOWWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
974 if (style
& WS_CHILD
) swp
|= SWP_NOZORDER
;
977 if (wasVisible
) return TRUE
;
978 swp
|= SWP_SHOWWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
979 if (style
& WS_CHILD
) swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
982 case SW_SHOWNOACTIVATE
:
983 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
987 case SW_SHOWNORMAL
: /* same as SW_NORMAL: */
988 case SW_SHOWDEFAULT
: /* FIXME: should have its own handler */
989 if (!wasVisible
) swp
|= SWP_SHOWWINDOW
;
990 if (style
& (WS_MINIMIZE
| WS_MAXIMIZE
))
992 swp
|= SWP_FRAMECHANGED
;
993 swp
|= WINPOS_MinMaximize( hwnd
, cmd
, &newPos
);
997 if (wasVisible
) return TRUE
;
998 swp
|= SWP_NOSIZE
| SWP_NOMOVE
;
1000 if (style
& WS_CHILD
&& !(swp
& SWP_STATECHANGED
)) swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1006 if ((showFlag
!= wasVisible
|| cmd
== SW_SHOWNA
) && cmd
!= SW_SHOWMAXIMIZED
&& !(swp
& SWP_STATECHANGED
))
1008 SendMessageW( hwnd
, WM_SHOWWINDOW
, showFlag
, 0 );
1009 if (!IsWindow( hwnd
)) return wasVisible
;
1012 swp
= USER_Driver
->pShowWindow( hwnd
, cmd
, &newPos
, swp
);
1014 parent
= GetAncestor( hwnd
, GA_PARENT
);
1015 if (parent
&& !IsWindowVisible( parent
) && !(swp
& SWP_STATECHANGED
))
1017 /* if parent is not visible simply toggle WS_VISIBLE and return */
1018 if (showFlag
) WIN_SetStyle( hwnd
, WS_VISIBLE
, 0 );
1019 else WIN_SetStyle( hwnd
, 0, WS_VISIBLE
);
1022 SetWindowPos( hwnd
, HWND_TOP
, newPos
.left
, newPos
.top
,
1023 newPos
.right
- newPos
.left
, newPos
.bottom
- newPos
.top
, swp
);
1029 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1031 /* FIXME: This will cause the window to be activated irrespective
1032 * of whether it is owned by the same thread. Has to be done
1036 if (hwnd
== GetActiveWindow())
1037 WINPOS_ActivateOtherWindow(hwnd
);
1039 /* Revert focus to parent */
1040 hFocus
= GetFocus();
1041 if (hwnd
== hFocus
|| IsChild(hwnd
, hFocus
))
1043 HWND parent
= GetAncestor(hwnd
, GA_PARENT
);
1044 if (parent
== GetDesktopWindow()) parent
= 0;
1050 if (IsIconic(hwnd
)) WINPOS_ShowIconTitle( hwnd
, TRUE
);
1052 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return wasVisible
;
1054 if (wndPtr
->flags
& WIN_NEED_SIZE
)
1056 /* should happen only in CreateWindowEx() */
1057 int wParam
= SIZE_RESTORED
;
1058 RECT client
= wndPtr
->rectClient
;
1060 wndPtr
->flags
&= ~WIN_NEED_SIZE
;
1061 if (wndPtr
->dwStyle
& WS_MAXIMIZE
) wParam
= SIZE_MAXIMIZED
;
1062 else if (wndPtr
->dwStyle
& WS_MINIMIZE
) wParam
= SIZE_MINIMIZED
;
1063 WIN_ReleasePtr( wndPtr
);
1065 SendMessageW( hwnd
, WM_SIZE
, wParam
,
1066 MAKELONG( client
.right
- client
.left
, client
.bottom
- client
.top
));
1067 SendMessageW( hwnd
, WM_MOVE
, 0, MAKELONG( client
.left
, client
.top
));
1069 else WIN_ReleasePtr( wndPtr
);
1071 /* if previous state was minimized Windows sets focus to the window */
1072 if (style
& WS_MINIMIZE
) SetFocus( hwnd
);
1078 /***********************************************************************
1079 * ShowWindowAsync (USER32.@)
1081 * doesn't wait; returns immediately.
1082 * used by threads to toggle windows in other (possibly hanging) threads
1084 BOOL WINAPI
ShowWindowAsync( HWND hwnd
, INT cmd
)
1088 if (is_broadcast(hwnd
))
1090 SetLastError( ERROR_INVALID_PARAMETER
);
1094 if ((full_handle
= WIN_IsCurrentThread( hwnd
)))
1095 return show_window( full_handle
, cmd
);
1097 return SendNotifyMessageW( hwnd
, WM_WINE_SHOWWINDOW
, cmd
, 0 );
1101 /***********************************************************************
1102 * ShowWindow (USER32.@)
1104 BOOL WINAPI
ShowWindow( HWND hwnd
, INT cmd
)
1108 if (is_broadcast(hwnd
))
1110 SetLastError( ERROR_INVALID_PARAMETER
);
1113 if ((full_handle
= WIN_IsCurrentThread( hwnd
)))
1114 return show_window( full_handle
, cmd
);
1116 return SendMessageW( hwnd
, WM_WINE_SHOWWINDOW
, cmd
, 0 );
1120 /***********************************************************************
1121 * GetInternalWindowPos (USER32.@)
1123 UINT WINAPI
GetInternalWindowPos( HWND hwnd
, LPRECT rectWnd
,
1126 WINDOWPLACEMENT wndpl
;
1127 if (GetWindowPlacement( hwnd
, &wndpl
))
1129 if (rectWnd
) *rectWnd
= wndpl
.rcNormalPosition
;
1130 if (ptIcon
) *ptIcon
= wndpl
.ptMinPosition
;
1131 return wndpl
.showCmd
;
1137 /***********************************************************************
1138 * GetWindowPlacement (USER32.@)
1141 * Fails if wndpl->length of Win95 (!) apps is invalid.
1143 BOOL WINAPI
GetWindowPlacement( HWND hwnd
, WINDOWPLACEMENT
*wndpl
)
1145 WND
*pWnd
= WIN_GetPtr( hwnd
);
1147 if (!pWnd
) return FALSE
;
1149 if (pWnd
== WND_DESKTOP
)
1151 wndpl
->length
= sizeof(*wndpl
);
1152 wndpl
->showCmd
= SW_SHOWNORMAL
;
1154 wndpl
->ptMinPosition
.x
= -1;
1155 wndpl
->ptMinPosition
.y
= -1;
1156 wndpl
->ptMaxPosition
.x
= -1;
1157 wndpl
->ptMaxPosition
.y
= -1;
1158 GetWindowRect( hwnd
, &wndpl
->rcNormalPosition
);
1161 if (pWnd
== WND_OTHER_PROCESS
)
1163 if (IsWindow( hwnd
)) FIXME( "not supported on other process window %p\n", hwnd
);
1167 /* update the placement according to the current style */
1168 if (pWnd
->dwStyle
& WS_MINIMIZE
)
1170 pWnd
->min_pos
.x
= pWnd
->rectWindow
.left
;
1171 pWnd
->min_pos
.y
= pWnd
->rectWindow
.top
;
1173 else if (pWnd
->dwStyle
& WS_MAXIMIZE
)
1175 pWnd
->max_pos
.x
= pWnd
->rectWindow
.left
;
1176 pWnd
->max_pos
.y
= pWnd
->rectWindow
.top
;
1180 pWnd
->normal_rect
= pWnd
->rectWindow
;
1183 wndpl
->length
= sizeof(*wndpl
);
1184 if( pWnd
->dwStyle
& WS_MINIMIZE
)
1185 wndpl
->showCmd
= SW_SHOWMINIMIZED
;
1187 wndpl
->showCmd
= ( pWnd
->dwStyle
& WS_MAXIMIZE
) ? SW_SHOWMAXIMIZED
: SW_SHOWNORMAL
;
1188 if( pWnd
->flags
& WIN_RESTORE_MAX
)
1189 wndpl
->flags
= WPF_RESTORETOMAXIMIZED
;
1192 wndpl
->ptMinPosition
= pWnd
->min_pos
;
1193 wndpl
->ptMaxPosition
= pWnd
->max_pos
;
1194 wndpl
->rcNormalPosition
= pWnd
->normal_rect
;
1195 WIN_ReleasePtr( pWnd
);
1197 TRACE( "%p: returning min %d,%d max %d,%d normal %s\n",
1198 hwnd
, wndpl
->ptMinPosition
.x
, wndpl
->ptMinPosition
.y
,
1199 wndpl
->ptMaxPosition
.x
, wndpl
->ptMaxPosition
.y
,
1200 wine_dbgstr_rect(&wndpl
->rcNormalPosition
) );
1204 /* make sure the specified rect is visible on screen */
1205 static void make_rect_onscreen( RECT
*rect
)
1208 HMONITOR monitor
= MonitorFromRect( rect
, MONITOR_DEFAULTTONEAREST
);
1210 info
.cbSize
= sizeof(info
);
1211 if (!monitor
|| !GetMonitorInfoW( monitor
, &info
)) return;
1212 /* FIXME: map coordinates from rcWork to rcMonitor */
1213 if (rect
->right
<= info
.rcWork
.left
)
1215 rect
->right
+= info
.rcWork
.left
- rect
->left
;
1216 rect
->left
= info
.rcWork
.left
;
1218 else if (rect
->left
>= info
.rcWork
.right
)
1220 rect
->left
+= info
.rcWork
.right
- rect
->right
;
1221 rect
->right
= info
.rcWork
.right
;
1223 if (rect
->bottom
<= info
.rcWork
.top
)
1225 rect
->bottom
+= info
.rcWork
.top
- rect
->top
;
1226 rect
->top
= info
.rcWork
.top
;
1228 else if (rect
->top
>= info
.rcWork
.bottom
)
1230 rect
->top
+= info
.rcWork
.bottom
- rect
->bottom
;
1231 rect
->bottom
= info
.rcWork
.bottom
;
1235 /* make sure the specified point is visible on screen */
1236 static void make_point_onscreen( POINT
*pt
)
1240 SetRect( &rect
, pt
->x
, pt
->y
, pt
->x
+ 1, pt
->y
+ 1 );
1241 make_rect_onscreen( &rect
);
1247 /***********************************************************************
1248 * WINPOS_SetPlacement
1250 static BOOL
WINPOS_SetPlacement( HWND hwnd
, const WINDOWPLACEMENT
*wndpl
, UINT flags
)
1253 WND
*pWnd
= WIN_GetPtr( hwnd
);
1254 WINDOWPLACEMENT wp
= *wndpl
;
1256 if (flags
& PLACE_MIN
) make_point_onscreen( &wp
.ptMinPosition
);
1257 if (flags
& PLACE_MAX
) make_point_onscreen( &wp
.ptMaxPosition
);
1258 if (flags
& PLACE_RECT
) make_rect_onscreen( &wp
.rcNormalPosition
);
1260 TRACE( "%p: setting min %d,%d max %d,%d normal %s flags %x ajusted to min %d,%d max %d,%d normal %s\n",
1261 hwnd
, wndpl
->ptMinPosition
.x
, wndpl
->ptMinPosition
.y
,
1262 wndpl
->ptMaxPosition
.x
, wndpl
->ptMaxPosition
.y
,
1263 wine_dbgstr_rect(&wndpl
->rcNormalPosition
), flags
,
1264 wp
.ptMinPosition
.x
, wp
.ptMinPosition
.y
, wp
.ptMaxPosition
.x
, wp
.ptMaxPosition
.y
,
1265 wine_dbgstr_rect(&wp
.rcNormalPosition
) );
1267 if (!pWnd
|| pWnd
== WND_OTHER_PROCESS
|| pWnd
== WND_DESKTOP
) return FALSE
;
1269 if( flags
& PLACE_MIN
) pWnd
->min_pos
= wp
.ptMinPosition
;
1270 if( flags
& PLACE_MAX
) pWnd
->max_pos
= wp
.ptMaxPosition
;
1271 if( flags
& PLACE_RECT
) pWnd
->normal_rect
= wp
.rcNormalPosition
;
1273 style
= pWnd
->dwStyle
;
1275 WIN_ReleasePtr( pWnd
);
1277 if( style
& WS_MINIMIZE
)
1279 if (flags
& PLACE_MIN
)
1281 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1282 SetWindowPos( hwnd
, 0, wp
.ptMinPosition
.x
, wp
.ptMinPosition
.y
, 0, 0,
1283 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1286 else if( style
& WS_MAXIMIZE
)
1288 if (flags
& PLACE_MAX
)
1289 SetWindowPos( hwnd
, 0, wp
.ptMaxPosition
.x
, wp
.ptMaxPosition
.y
, 0, 0,
1290 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1292 else if( flags
& PLACE_RECT
)
1293 SetWindowPos( hwnd
, 0, wp
.rcNormalPosition
.left
, wp
.rcNormalPosition
.top
,
1294 wp
.rcNormalPosition
.right
- wp
.rcNormalPosition
.left
,
1295 wp
.rcNormalPosition
.bottom
- wp
.rcNormalPosition
.top
,
1296 SWP_NOZORDER
| SWP_NOACTIVATE
);
1298 ShowWindow( hwnd
, wndpl
->showCmd
);
1300 if (IsIconic( hwnd
))
1302 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_VISIBLE
) WINPOS_ShowIconTitle( hwnd
, TRUE
);
1304 /* SDK: ...valid only the next time... */
1305 if( wndpl
->flags
& WPF_RESTORETOMAXIMIZED
)
1307 pWnd
= WIN_GetPtr( hwnd
);
1308 if (pWnd
&& pWnd
!= WND_OTHER_PROCESS
)
1310 pWnd
->flags
|= WIN_RESTORE_MAX
;
1311 WIN_ReleasePtr( pWnd
);
1319 /***********************************************************************
1320 * SetWindowPlacement (USER32.@)
1323 * Fails if wndpl->length of Win95 (!) apps is invalid.
1325 BOOL WINAPI
SetWindowPlacement( HWND hwnd
, const WINDOWPLACEMENT
*wpl
)
1327 UINT flags
= PLACE_MAX
| PLACE_RECT
;
1328 if (!wpl
) return FALSE
;
1329 if (wpl
->flags
& WPF_SETMINPOSITION
) flags
|= PLACE_MIN
;
1330 return WINPOS_SetPlacement( hwnd
, wpl
, flags
);
1334 /***********************************************************************
1335 * AnimateWindow (USER32.@)
1336 * Shows/Hides a window with an animation
1339 BOOL WINAPI
AnimateWindow(HWND hwnd
, DWORD dwTime
, DWORD dwFlags
)
1341 FIXME("partial stub\n");
1343 /* If trying to show/hide and it's already *
1344 * shown/hidden or invalid window, fail with *
1345 * invalid parameter */
1346 if(!IsWindow(hwnd
) ||
1347 (IsWindowVisible(hwnd
) && !(dwFlags
& AW_HIDE
)) ||
1348 (!IsWindowVisible(hwnd
) && (dwFlags
& AW_HIDE
)))
1350 SetLastError(ERROR_INVALID_PARAMETER
);
1354 ShowWindow(hwnd
, (dwFlags
& AW_HIDE
) ? SW_HIDE
: ((dwFlags
& AW_ACTIVATE
) ? SW_SHOW
: SW_SHOWNA
));
1359 /***********************************************************************
1360 * SetInternalWindowPos (USER32.@)
1362 void WINAPI
SetInternalWindowPos( HWND hwnd
, UINT showCmd
,
1363 LPRECT rect
, LPPOINT pt
)
1365 WINDOWPLACEMENT wndpl
;
1368 wndpl
.length
= sizeof(wndpl
);
1369 wndpl
.showCmd
= showCmd
;
1370 wndpl
.flags
= flags
= 0;
1375 wndpl
.flags
|= WPF_SETMINPOSITION
;
1376 wndpl
.ptMinPosition
= *pt
;
1380 flags
|= PLACE_RECT
;
1381 wndpl
.rcNormalPosition
= *rect
;
1383 WINPOS_SetPlacement( hwnd
, &wndpl
, flags
);
1387 /*******************************************************************
1388 * can_activate_window
1390 * Check if we can activate the specified window.
1392 static BOOL
can_activate_window( HWND hwnd
)
1396 if (!hwnd
) return FALSE
;
1397 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1398 if (!(style
& WS_VISIBLE
)) return FALSE
;
1399 if ((style
& (WS_POPUP
|WS_CHILD
)) == WS_CHILD
) return FALSE
;
1400 return !(style
& WS_DISABLED
);
1404 /*******************************************************************
1405 * WINPOS_ActivateOtherWindow
1407 * Activates window other than pWnd.
1409 void WINPOS_ActivateOtherWindow(HWND hwnd
)
1413 if ((GetWindowLongW( hwnd
, GWL_STYLE
) & WS_POPUP
) && (hwndTo
= GetWindow( hwnd
, GW_OWNER
)))
1415 hwndTo
= GetAncestor( hwndTo
, GA_ROOT
);
1416 if (can_activate_window( hwndTo
)) goto done
;
1422 if (!(hwndTo
= GetWindow( hwndTo
, GW_HWNDNEXT
))) break;
1423 if (can_activate_window( hwndTo
)) break;
1427 fg
= GetForegroundWindow();
1428 TRACE("win = %p fg = %p\n", hwndTo
, fg
);
1429 if (!fg
|| (hwnd
== fg
))
1431 if (SetForegroundWindow( hwndTo
)) return;
1433 if (!SetActiveWindow( hwndTo
)) SetActiveWindow(0);
1437 /***********************************************************************
1438 * WINPOS_HandleWindowPosChanging
1440 * Default handling for a WM_WINDOWPOSCHANGING. Called from DefWindowProc().
1442 LONG
WINPOS_HandleWindowPosChanging( HWND hwnd
, WINDOWPOS
*winpos
)
1444 POINT minTrack
, maxTrack
;
1445 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1447 if (winpos
->flags
& SWP_NOSIZE
) return 0;
1448 if ((style
& WS_THICKFRAME
) || ((style
& (WS_POPUP
| WS_CHILD
)) == 0))
1450 WINPOS_GetMinMaxInfo( hwnd
, NULL
, NULL
, &minTrack
, &maxTrack
);
1451 if (winpos
->cx
> maxTrack
.x
) winpos
->cx
= maxTrack
.x
;
1452 if (winpos
->cy
> maxTrack
.y
) winpos
->cy
= maxTrack
.y
;
1453 if (!(style
& WS_MINIMIZE
))
1455 if (winpos
->cx
< minTrack
.x
) winpos
->cx
= minTrack
.x
;
1456 if (winpos
->cy
< minTrack
.y
) winpos
->cy
= minTrack
.y
;
1463 /***********************************************************************
1466 static void dump_winpos_flags(UINT flags
)
1468 static const DWORD dumped_flags
= (SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOREDRAW
|
1469 SWP_NOACTIVATE
| SWP_FRAMECHANGED
| SWP_SHOWWINDOW
|
1470 SWP_HIDEWINDOW
| SWP_NOCOPYBITS
| SWP_NOOWNERZORDER
|
1471 SWP_NOSENDCHANGING
| SWP_DEFERERASE
| SWP_ASYNCWINDOWPOS
|
1472 SWP_NOCLIENTSIZE
| SWP_NOCLIENTMOVE
| SWP_STATECHANGED
);
1474 if(flags
& SWP_NOSIZE
) TRACE(" SWP_NOSIZE");
1475 if(flags
& SWP_NOMOVE
) TRACE(" SWP_NOMOVE");
1476 if(flags
& SWP_NOZORDER
) TRACE(" SWP_NOZORDER");
1477 if(flags
& SWP_NOREDRAW
) TRACE(" SWP_NOREDRAW");
1478 if(flags
& SWP_NOACTIVATE
) TRACE(" SWP_NOACTIVATE");
1479 if(flags
& SWP_FRAMECHANGED
) TRACE(" SWP_FRAMECHANGED");
1480 if(flags
& SWP_SHOWWINDOW
) TRACE(" SWP_SHOWWINDOW");
1481 if(flags
& SWP_HIDEWINDOW
) TRACE(" SWP_HIDEWINDOW");
1482 if(flags
& SWP_NOCOPYBITS
) TRACE(" SWP_NOCOPYBITS");
1483 if(flags
& SWP_NOOWNERZORDER
) TRACE(" SWP_NOOWNERZORDER");
1484 if(flags
& SWP_NOSENDCHANGING
) TRACE(" SWP_NOSENDCHANGING");
1485 if(flags
& SWP_DEFERERASE
) TRACE(" SWP_DEFERERASE");
1486 if(flags
& SWP_ASYNCWINDOWPOS
) TRACE(" SWP_ASYNCWINDOWPOS");
1487 if(flags
& SWP_NOCLIENTSIZE
) TRACE(" SWP_NOCLIENTSIZE");
1488 if(flags
& SWP_NOCLIENTMOVE
) TRACE(" SWP_NOCLIENTMOVE");
1489 if(flags
& SWP_STATECHANGED
) TRACE(" SWP_STATECHANGED");
1491 if(flags
& ~dumped_flags
) TRACE(" %08x", flags
& ~dumped_flags
);
1495 /***********************************************************************
1496 * SWP_DoWinPosChanging
1498 static BOOL
SWP_DoWinPosChanging( WINDOWPOS
* pWinpos
, RECT
* pNewWindowRect
, RECT
* pNewClientRect
)
1502 /* Send WM_WINDOWPOSCHANGING message */
1504 if (!(pWinpos
->flags
& SWP_NOSENDCHANGING
))
1505 SendMessageW( pWinpos
->hwnd
, WM_WINDOWPOSCHANGING
, 0, (LPARAM
)pWinpos
);
1507 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) ||
1508 wndPtr
== WND_OTHER_PROCESS
|| wndPtr
== WND_DESKTOP
) return FALSE
;
1510 /* Calculate new position and size */
1512 *pNewWindowRect
= wndPtr
->rectWindow
;
1513 *pNewClientRect
= (wndPtr
->dwStyle
& WS_MINIMIZE
) ? wndPtr
->rectWindow
1514 : wndPtr
->rectClient
;
1516 if (!(pWinpos
->flags
& SWP_NOSIZE
))
1518 pNewWindowRect
->right
= pNewWindowRect
->left
+ pWinpos
->cx
;
1519 pNewWindowRect
->bottom
= pNewWindowRect
->top
+ pWinpos
->cy
;
1521 if (!(pWinpos
->flags
& SWP_NOMOVE
))
1523 pNewWindowRect
->left
= pWinpos
->x
;
1524 pNewWindowRect
->top
= pWinpos
->y
;
1525 pNewWindowRect
->right
+= pWinpos
->x
- wndPtr
->rectWindow
.left
;
1526 pNewWindowRect
->bottom
+= pWinpos
->y
- wndPtr
->rectWindow
.top
;
1528 OffsetRect( pNewClientRect
, pWinpos
->x
- wndPtr
->rectWindow
.left
,
1529 pWinpos
->y
- wndPtr
->rectWindow
.top
);
1531 pWinpos
->flags
|= SWP_NOCLIENTMOVE
| SWP_NOCLIENTSIZE
;
1533 TRACE( "hwnd %p, after %p, swp %d,%d %dx%d flags %08x\n",
1534 pWinpos
->hwnd
, pWinpos
->hwndInsertAfter
, pWinpos
->x
, pWinpos
->y
,
1535 pWinpos
->cx
, pWinpos
->cy
, pWinpos
->flags
);
1536 TRACE( "current %s style %08x new %s\n",
1537 wine_dbgstr_rect( &wndPtr
->rectWindow
), wndPtr
->dwStyle
,
1538 wine_dbgstr_rect( pNewWindowRect
));
1540 WIN_ReleasePtr( wndPtr
);
1544 /***********************************************************************
1547 * Compute the valid rects from the old and new client rect and WVR_* flags.
1548 * Helper for WM_NCCALCSIZE handling.
1550 static inline void get_valid_rects( const RECT
*old_client
, const RECT
*new_client
, UINT flags
,
1555 if (flags
& WVR_REDRAW
)
1557 SetRectEmpty( &valid
[0] );
1558 SetRectEmpty( &valid
[1] );
1562 if (flags
& WVR_VALIDRECTS
)
1564 if (!IntersectRect( &valid
[0], &valid
[0], new_client
) ||
1565 !IntersectRect( &valid
[1], &valid
[1], old_client
))
1567 SetRectEmpty( &valid
[0] );
1568 SetRectEmpty( &valid
[1] );
1571 flags
= WVR_ALIGNLEFT
| WVR_ALIGNTOP
;
1575 valid
[0] = *new_client
;
1576 valid
[1] = *old_client
;
1579 /* make sure the rectangles have the same size */
1580 cx
= min( valid
[0].right
- valid
[0].left
, valid
[1].right
- valid
[1].left
);
1581 cy
= min( valid
[0].bottom
- valid
[0].top
, valid
[1].bottom
- valid
[1].top
);
1583 if (flags
& WVR_ALIGNBOTTOM
)
1585 valid
[0].top
= valid
[0].bottom
- cy
;
1586 valid
[1].top
= valid
[1].bottom
- cy
;
1590 valid
[0].bottom
= valid
[0].top
+ cy
;
1591 valid
[1].bottom
= valid
[1].top
+ cy
;
1593 if (flags
& WVR_ALIGNRIGHT
)
1595 valid
[0].left
= valid
[0].right
- cx
;
1596 valid
[1].left
= valid
[1].right
- cx
;
1600 valid
[0].right
= valid
[0].left
+ cx
;
1601 valid
[1].right
= valid
[1].left
+ cx
;
1606 /***********************************************************************
1609 * fix Z order taking into account owned popups -
1610 * basically we need to maintain them above the window that owns them
1612 * FIXME: hide/show owned popups when owner visibility changes.
1614 static HWND
SWP_DoOwnedPopups(HWND hwnd
, HWND hwndInsertAfter
)
1616 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1617 HWND owner
, *list
= NULL
;
1620 TRACE("(%p) hInsertAfter = %p\n", hwnd
, hwndInsertAfter
);
1622 if ((style
& WS_POPUP
) && (owner
= GetWindow( hwnd
, GW_OWNER
)))
1624 /* make sure this popup stays above the owner */
1626 if (hwndInsertAfter
!= HWND_TOP
&& hwndInsertAfter
!= HWND_TOPMOST
)
1628 if (!(list
= WIN_ListChildren( GetDesktopWindow() ))) return hwndInsertAfter
;
1630 for (i
= 0; list
[i
]; i
++)
1632 if (list
[i
] == owner
)
1634 if (i
> 0) hwndInsertAfter
= list
[i
-1];
1635 else hwndInsertAfter
= HWND_TOP
;
1639 if (hwndInsertAfter
== HWND_NOTOPMOST
)
1641 if (!(GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TOPMOST
)) break;
1643 else if (list
[i
] == hwndInsertAfter
) break;
1647 else if (style
& WS_CHILD
) return hwndInsertAfter
;
1649 if (hwndInsertAfter
== HWND_BOTTOM
) goto done
;
1650 if (!list
&& !(list
= WIN_ListChildren( GetDesktopWindow() ))) goto done
;
1653 if (hwndInsertAfter
== HWND_TOP
|| hwndInsertAfter
== HWND_NOTOPMOST
)
1655 if (hwndInsertAfter
== HWND_NOTOPMOST
|| !(GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_TOPMOST
))
1657 /* skip all the topmost windows */
1658 while (list
[i
] && (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TOPMOST
)) i
++;
1661 else if (hwndInsertAfter
!= HWND_TOPMOST
)
1663 /* skip windows that are already placed correctly */
1664 for (i
= 0; list
[i
]; i
++)
1666 if (list
[i
] == hwndInsertAfter
) break;
1667 if (list
[i
] == hwnd
) goto done
; /* nothing to do if window is moving backwards in z-order */
1671 for ( ; list
[i
]; i
++)
1673 if (list
[i
] == hwnd
) break;
1674 if (!(GetWindowLongW( list
[i
], GWL_STYLE
) & WS_POPUP
)) continue;
1675 if (GetWindow( list
[i
], GW_OWNER
) != hwnd
) continue;
1676 TRACE( "moving %p owned by %p after %p\n", list
[i
], hwnd
, hwndInsertAfter
);
1677 SetWindowPos( list
[i
], hwndInsertAfter
, 0, 0, 0, 0,
1678 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
| SWP_NOSENDCHANGING
| SWP_DEFERERASE
);
1679 hwndInsertAfter
= list
[i
];
1683 HeapFree( GetProcessHeap(), 0, list
);
1684 return hwndInsertAfter
;
1687 /***********************************************************************
1690 static UINT
SWP_DoNCCalcSize( WINDOWPOS
* pWinpos
, const RECT
* pNewWindowRect
, RECT
* pNewClientRect
,
1696 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1698 /* Send WM_NCCALCSIZE message to get new client area */
1699 if( (pWinpos
->flags
& (SWP_FRAMECHANGED
| SWP_NOSIZE
)) != SWP_NOSIZE
)
1701 NCCALCSIZE_PARAMS params
;
1702 WINDOWPOS winposCopy
;
1704 params
.rgrc
[0] = *pNewWindowRect
;
1705 params
.rgrc
[1] = wndPtr
->rectWindow
;
1706 params
.rgrc
[2] = wndPtr
->rectClient
;
1707 params
.lppos
= &winposCopy
;
1708 winposCopy
= *pWinpos
;
1709 WIN_ReleasePtr( wndPtr
);
1711 wvrFlags
= SendMessageW( pWinpos
->hwnd
, WM_NCCALCSIZE
, TRUE
, (LPARAM
)¶ms
);
1713 *pNewClientRect
= params
.rgrc
[0];
1715 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1717 TRACE( "hwnd %p old win %s old client %s new win %s new client %s\n", pWinpos
->hwnd
,
1718 wine_dbgstr_rect(&wndPtr
->rectWindow
), wine_dbgstr_rect(&wndPtr
->rectClient
),
1719 wine_dbgstr_rect(pNewWindowRect
), wine_dbgstr_rect(pNewClientRect
) );
1721 if( pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
1722 pNewClientRect
->top
!= wndPtr
->rectClient
.top
)
1723 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
1725 if( (pNewClientRect
->right
- pNewClientRect
->left
!=
1726 wndPtr
->rectClient
.right
- wndPtr
->rectClient
.left
))
1727 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
1729 wvrFlags
&= ~WVR_HREDRAW
;
1731 if (pNewClientRect
->bottom
- pNewClientRect
->top
!=
1732 wndPtr
->rectClient
.bottom
- wndPtr
->rectClient
.top
)
1733 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
1735 wvrFlags
&= ~WVR_VREDRAW
;
1737 validRects
[0] = params
.rgrc
[1];
1738 validRects
[1] = params
.rgrc
[2];
1742 if (!(pWinpos
->flags
& SWP_NOMOVE
) &&
1743 (pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
1744 pNewClientRect
->top
!= wndPtr
->rectClient
.top
))
1745 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
1748 if (pWinpos
->flags
& (SWP_NOCOPYBITS
| SWP_NOREDRAW
| SWP_SHOWWINDOW
| SWP_HIDEWINDOW
))
1750 SetRectEmpty( &validRects
[0] );
1751 SetRectEmpty( &validRects
[1] );
1753 else get_valid_rects( &wndPtr
->rectClient
, pNewClientRect
, wvrFlags
, validRects
);
1755 WIN_ReleasePtr( wndPtr
);
1759 /* fix redundant flags and values in the WINDOWPOS structure */
1760 static BOOL
fixup_flags( WINDOWPOS
*winpos
)
1763 WND
*wndPtr
= WIN_GetPtr( winpos
->hwnd
);
1766 if (!wndPtr
|| wndPtr
== WND_OTHER_PROCESS
)
1768 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1771 winpos
->hwnd
= wndPtr
->hwndSelf
; /* make it a full handle */
1773 /* Finally make sure that all coordinates are valid */
1774 if (winpos
->x
< -32768) winpos
->x
= -32768;
1775 else if (winpos
->x
> 32767) winpos
->x
= 32767;
1776 if (winpos
->y
< -32768) winpos
->y
= -32768;
1777 else if (winpos
->y
> 32767) winpos
->y
= 32767;
1779 if (winpos
->cx
< 0) winpos
->cx
= 0;
1780 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
1781 if (winpos
->cy
< 0) winpos
->cy
= 0;
1782 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
1784 parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
1785 if (!IsWindowVisible( parent
)) winpos
->flags
|= SWP_NOREDRAW
;
1787 if (wndPtr
->dwStyle
& WS_VISIBLE
) winpos
->flags
&= ~SWP_SHOWWINDOW
;
1790 winpos
->flags
&= ~SWP_HIDEWINDOW
;
1791 if (!(winpos
->flags
& SWP_SHOWWINDOW
)) winpos
->flags
|= SWP_NOREDRAW
;
1794 if ((wndPtr
->rectWindow
.right
- wndPtr
->rectWindow
.left
== winpos
->cx
) &&
1795 (wndPtr
->rectWindow
.bottom
- wndPtr
->rectWindow
.top
== winpos
->cy
))
1796 winpos
->flags
|= SWP_NOSIZE
; /* Already the right size */
1798 if ((wndPtr
->rectWindow
.left
== winpos
->x
) && (wndPtr
->rectWindow
.top
== winpos
->y
))
1799 winpos
->flags
|= SWP_NOMOVE
; /* Already the right position */
1801 if ((wndPtr
->dwStyle
& (WS_POPUP
| WS_CHILD
)) != WS_CHILD
)
1803 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)) && /* Bring to the top when activating */
1804 (winpos
->flags
& SWP_NOZORDER
||
1805 (winpos
->hwndInsertAfter
!= HWND_TOPMOST
&& winpos
->hwndInsertAfter
!= HWND_NOTOPMOST
)))
1807 winpos
->flags
&= ~SWP_NOZORDER
;
1808 winpos
->hwndInsertAfter
= HWND_TOP
;
1812 /* Check hwndInsertAfter */
1813 if (winpos
->flags
& SWP_NOZORDER
) goto done
;
1815 /* fix sign extension */
1816 if (winpos
->hwndInsertAfter
== (HWND
)0xffff) winpos
->hwndInsertAfter
= HWND_TOPMOST
;
1817 else if (winpos
->hwndInsertAfter
== (HWND
)0xfffe) winpos
->hwndInsertAfter
= HWND_NOTOPMOST
;
1819 /* hwndInsertAfter must be a sibling of the window */
1820 if (winpos
->hwndInsertAfter
== HWND_TOP
)
1822 if (GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
1823 winpos
->flags
|= SWP_NOZORDER
;
1825 else if (winpos
->hwndInsertAfter
== HWND_BOTTOM
)
1827 if (!(wndPtr
->dwExStyle
& WS_EX_TOPMOST
) && GetWindow(winpos
->hwnd
, GW_HWNDLAST
) == winpos
->hwnd
)
1828 winpos
->flags
|= SWP_NOZORDER
;
1830 else if (winpos
->hwndInsertAfter
== HWND_TOPMOST
)
1832 if ((wndPtr
->dwExStyle
& WS_EX_TOPMOST
) && GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
1833 winpos
->flags
|= SWP_NOZORDER
;
1835 else if (winpos
->hwndInsertAfter
== HWND_NOTOPMOST
)
1837 if (!(wndPtr
->dwExStyle
& WS_EX_TOPMOST
))
1838 winpos
->flags
|= SWP_NOZORDER
;
1842 if (GetAncestor( winpos
->hwndInsertAfter
, GA_PARENT
) != parent
) ret
= FALSE
;
1845 /* don't need to change the Zorder of hwnd if it's already inserted
1846 * after hwndInsertAfter or when inserting hwnd after itself.
1848 if ((winpos
->hwnd
== winpos
->hwndInsertAfter
) ||
1849 (winpos
->hwnd
== GetWindow( winpos
->hwndInsertAfter
, GW_HWNDNEXT
)))
1850 winpos
->flags
|= SWP_NOZORDER
;
1854 WIN_ReleasePtr( wndPtr
);
1859 /***********************************************************************
1862 * Backend implementation of SetWindowPos.
1864 BOOL
set_window_pos( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
1865 const RECT
*window_rect
, const RECT
*client_rect
, const RECT
*valid_rects
)
1869 RECT visible_rect
, old_window_rect
;
1871 visible_rect
= *window_rect
;
1872 USER_Driver
->pWindowPosChanging( hwnd
, insert_after
, swp_flags
,
1873 window_rect
, client_rect
, &visible_rect
);
1875 if (!(win
= WIN_GetPtr( hwnd
))) return FALSE
;
1876 if (win
== WND_DESKTOP
|| win
== WND_OTHER_PROCESS
) return FALSE
;
1878 old_window_rect
= win
->rectWindow
;
1879 SERVER_START_REQ( set_window_pos
)
1881 req
->handle
= wine_server_user_handle( hwnd
);
1882 req
->previous
= wine_server_user_handle( insert_after
);
1883 req
->flags
= swp_flags
;
1884 req
->window
.left
= window_rect
->left
;
1885 req
->window
.top
= window_rect
->top
;
1886 req
->window
.right
= window_rect
->right
;
1887 req
->window
.bottom
= window_rect
->bottom
;
1888 req
->client
.left
= client_rect
->left
;
1889 req
->client
.top
= client_rect
->top
;
1890 req
->client
.right
= client_rect
->right
;
1891 req
->client
.bottom
= client_rect
->bottom
;
1892 if (memcmp( window_rect
, &visible_rect
, sizeof(RECT
) ) || !IsRectEmpty( &valid_rects
[0] ))
1894 wine_server_add_data( req
, &visible_rect
, sizeof(visible_rect
) );
1895 if (!IsRectEmpty( &valid_rects
[0] ))
1896 wine_server_add_data( req
, valid_rects
, 2 * sizeof(*valid_rects
) );
1898 if ((ret
= !wine_server_call( req
)))
1900 win
->dwStyle
= reply
->new_style
;
1901 win
->dwExStyle
= reply
->new_ex_style
;
1902 win
->rectWindow
= *window_rect
;
1903 win
->rectClient
= *client_rect
;
1907 WIN_ReleasePtr( win
);
1911 if (((swp_flags
& SWP_AGG_NOPOSCHANGE
) != SWP_AGG_NOPOSCHANGE
) ||
1912 (swp_flags
& (SWP_HIDEWINDOW
| SWP_SHOWWINDOW
| SWP_STATECHANGED
)))
1913 invalidate_dce( hwnd
, &old_window_rect
);
1915 USER_Driver
->pWindowPosChanged( hwnd
, insert_after
, swp_flags
, window_rect
,
1916 client_rect
, &visible_rect
, valid_rects
);
1922 /***********************************************************************
1925 * User32 internal function
1927 BOOL
USER_SetWindowPos( WINDOWPOS
* winpos
)
1929 RECT newWindowRect
, newClientRect
, valid_rects
[2];
1932 orig_flags
= winpos
->flags
;
1934 /* First make sure that coordinates are valid for WM_WINDOWPOSCHANGING */
1935 if (!(winpos
->flags
& SWP_NOMOVE
))
1937 if (winpos
->x
< -32768) winpos
->x
= -32768;
1938 else if (winpos
->x
> 32767) winpos
->x
= 32767;
1939 if (winpos
->y
< -32768) winpos
->y
= -32768;
1940 else if (winpos
->y
> 32767) winpos
->y
= 32767;
1942 if (!(winpos
->flags
& SWP_NOSIZE
))
1944 if (winpos
->cx
< 0) winpos
->cx
= 0;
1945 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
1946 if (winpos
->cy
< 0) winpos
->cy
= 0;
1947 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
1950 if (!SWP_DoWinPosChanging( winpos
, &newWindowRect
, &newClientRect
)) return FALSE
;
1952 /* Fix redundant flags */
1953 if (!fixup_flags( winpos
)) return FALSE
;
1955 if((winpos
->flags
& (SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_SHOWWINDOW
)) != SWP_NOZORDER
)
1957 if (GetAncestor( winpos
->hwnd
, GA_PARENT
) == GetDesktopWindow())
1958 winpos
->hwndInsertAfter
= SWP_DoOwnedPopups( winpos
->hwnd
, winpos
->hwndInsertAfter
);
1961 /* Common operations */
1963 SWP_DoNCCalcSize( winpos
, &newWindowRect
, &newClientRect
, valid_rects
);
1965 if (!set_window_pos( winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->flags
,
1966 &newWindowRect
, &newClientRect
, valid_rects
))
1969 /* erase parent when hiding or resizing child */
1970 if (!(orig_flags
& SWP_DEFERERASE
) &&
1971 ((orig_flags
& SWP_HIDEWINDOW
) ||
1972 (!(orig_flags
& SWP_SHOWWINDOW
) &&
1973 (winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOGEOMETRYCHANGE
)))
1975 HWND parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
1976 if (!parent
|| parent
== GetDesktopWindow()) parent
= winpos
->hwnd
;
1977 erase_now( parent
, 0 );
1980 if( winpos
->flags
& SWP_HIDEWINDOW
)
1981 HideCaret(winpos
->hwnd
);
1982 else if (winpos
->flags
& SWP_SHOWWINDOW
)
1983 ShowCaret(winpos
->hwnd
);
1985 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)))
1987 /* child windows get WM_CHILDACTIVATE message */
1988 if ((GetWindowLongW( winpos
->hwnd
, GWL_STYLE
) & (WS_CHILD
| WS_POPUP
)) == WS_CHILD
)
1989 SendMessageW( winpos
->hwnd
, WM_CHILDACTIVATE
, 0, 0 );
1991 SetForegroundWindow( winpos
->hwnd
);
1994 /* And last, send the WM_WINDOWPOSCHANGED message */
1996 TRACE("\tstatus flags = %04x\n", winpos
->flags
& SWP_AGG_STATUSFLAGS
);
1998 if (((winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOPOSCHANGE
))
2000 /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
2001 and always contains final window position.
2003 winpos
->x
= newWindowRect
.left
;
2004 winpos
->y
= newWindowRect
.top
;
2005 winpos
->cx
= newWindowRect
.right
- newWindowRect
.left
;
2006 winpos
->cy
= newWindowRect
.bottom
- newWindowRect
.top
;
2007 SendMessageW( winpos
->hwnd
, WM_WINDOWPOSCHANGED
, 0, (LPARAM
)winpos
);
2012 /***********************************************************************
2013 * SetWindowPos (USER32.@)
2015 BOOL WINAPI
SetWindowPos( HWND hwnd
, HWND hwndInsertAfter
,
2016 INT x
, INT y
, INT cx
, INT cy
, UINT flags
)
2020 TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2021 hwnd
, hwndInsertAfter
, x
, y
, cx
, cy
, flags
);
2022 if(TRACE_ON(win
)) dump_winpos_flags(flags
);
2024 if (is_broadcast(hwnd
))
2026 SetLastError( ERROR_INVALID_PARAMETER
);
2030 winpos
.hwnd
= WIN_GetFullHandle(hwnd
);
2031 winpos
.hwndInsertAfter
= WIN_GetFullHandle(hwndInsertAfter
);
2036 winpos
.flags
= flags
;
2038 if (WIN_IsCurrentThread( hwnd
))
2039 return USER_SetWindowPos(&winpos
);
2041 return SendMessageW( winpos
.hwnd
, WM_WINE_SETWINDOWPOS
, 0, (LPARAM
)&winpos
);
2045 /***********************************************************************
2046 * BeginDeferWindowPos (USER32.@)
2048 HDWP WINAPI
BeginDeferWindowPos( INT count
)
2053 TRACE("%d\n", count
);
2057 SetLastError(ERROR_INVALID_PARAMETER
);
2060 /* Windows allows zero count, in which case it allocates context for 8 moves */
2061 if (count
== 0) count
= 8;
2063 handle
= USER_HEAP_ALLOC( sizeof(DWP
) + (count
-1)*sizeof(WINDOWPOS
) );
2064 if (!handle
) return 0;
2065 pDWP
= (DWP
*) USER_HEAP_LIN_ADDR( handle
);
2066 pDWP
->actualCount
= 0;
2067 pDWP
->suggestedCount
= count
;
2069 pDWP
->wMagic
= DWP_MAGIC
;
2070 pDWP
->hwndParent
= 0;
2072 TRACE("returning hdwp %p\n", handle
);
2077 /***********************************************************************
2078 * DeferWindowPos (USER32.@)
2080 HDWP WINAPI
DeferWindowPos( HDWP hdwp
, HWND hwnd
, HWND hwndAfter
,
2081 INT x
, INT y
, INT cx
, INT cy
,
2086 HDWP newhdwp
= hdwp
,retvalue
;
2088 TRACE("hdwp %p, hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2089 hdwp
, hwnd
, hwndAfter
, x
, y
, cx
, cy
, flags
);
2091 hwnd
= WIN_GetFullHandle( hwnd
);
2092 if (is_desktop_window( hwnd
)) return 0;
2094 if (!(pDWP
= USER_HEAP_LIN_ADDR( hdwp
))) return 0;
2098 for (i
= 0; i
< pDWP
->actualCount
; i
++)
2100 if (pDWP
->winPos
[i
].hwnd
== hwnd
)
2102 /* Merge with the other changes */
2103 if (!(flags
& SWP_NOZORDER
))
2105 pDWP
->winPos
[i
].hwndInsertAfter
= WIN_GetFullHandle(hwndAfter
);
2107 if (!(flags
& SWP_NOMOVE
))
2109 pDWP
->winPos
[i
].x
= x
;
2110 pDWP
->winPos
[i
].y
= y
;
2112 if (!(flags
& SWP_NOSIZE
))
2114 pDWP
->winPos
[i
].cx
= cx
;
2115 pDWP
->winPos
[i
].cy
= cy
;
2117 pDWP
->winPos
[i
].flags
&= flags
| ~(SWP_NOSIZE
| SWP_NOMOVE
|
2118 SWP_NOZORDER
| SWP_NOREDRAW
|
2119 SWP_NOACTIVATE
| SWP_NOCOPYBITS
|
2121 pDWP
->winPos
[i
].flags
|= flags
& (SWP_SHOWWINDOW
| SWP_HIDEWINDOW
|
2127 if (pDWP
->actualCount
>= pDWP
->suggestedCount
)
2129 newhdwp
= USER_HEAP_REALLOC( hdwp
,
2130 sizeof(DWP
) + pDWP
->suggestedCount
*sizeof(WINDOWPOS
) );
2136 pDWP
= (DWP
*) USER_HEAP_LIN_ADDR( newhdwp
);
2137 pDWP
->suggestedCount
++;
2139 pDWP
->winPos
[pDWP
->actualCount
].hwnd
= hwnd
;
2140 pDWP
->winPos
[pDWP
->actualCount
].hwndInsertAfter
= hwndAfter
;
2141 pDWP
->winPos
[pDWP
->actualCount
].x
= x
;
2142 pDWP
->winPos
[pDWP
->actualCount
].y
= y
;
2143 pDWP
->winPos
[pDWP
->actualCount
].cx
= cx
;
2144 pDWP
->winPos
[pDWP
->actualCount
].cy
= cy
;
2145 pDWP
->winPos
[pDWP
->actualCount
].flags
= flags
;
2146 pDWP
->actualCount
++;
2154 /***********************************************************************
2155 * EndDeferWindowPos (USER32.@)
2157 BOOL WINAPI
EndDeferWindowPos( HDWP hdwp
)
2164 TRACE("%p\n", hdwp
);
2166 pDWP
= (DWP
*) USER_HEAP_LIN_ADDR( hdwp
);
2167 if (!pDWP
) return FALSE
;
2168 for (i
= 0, winpos
= pDWP
->winPos
; res
&& i
< pDWP
->actualCount
; i
++, winpos
++)
2170 TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2171 winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->x
, winpos
->y
,
2172 winpos
->cx
, winpos
->cy
, winpos
->flags
);
2174 if (WIN_IsCurrentThread( winpos
->hwnd
))
2175 res
= USER_SetWindowPos( winpos
);
2177 res
= SendMessageW( winpos
->hwnd
, WM_WINE_SETWINDOWPOS
, 0, (LPARAM
)winpos
);
2179 USER_HEAP_FREE( hdwp
);
2184 /***********************************************************************
2185 * ArrangeIconicWindows (USER32.@)
2187 UINT WINAPI
ArrangeIconicWindows( HWND parent
)
2191 INT x
, y
, xspacing
, yspacing
;
2193 GetClientRect( parent
, &rectParent
);
2194 x
= rectParent
.left
;
2195 y
= rectParent
.bottom
;
2196 xspacing
= GetSystemMetrics(SM_CXICONSPACING
);
2197 yspacing
= GetSystemMetrics(SM_CYICONSPACING
);
2199 hwndChild
= GetWindow( parent
, GW_CHILD
);
2202 if( IsIconic( hwndChild
) )
2204 WINPOS_ShowIconTitle( hwndChild
, FALSE
);
2206 SetWindowPos( hwndChild
, 0, x
+ (xspacing
- GetSystemMetrics(SM_CXICON
)) / 2,
2207 y
- yspacing
- GetSystemMetrics(SM_CYICON
)/2, 0, 0,
2208 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
2209 if( IsWindow(hwndChild
) )
2210 WINPOS_ShowIconTitle(hwndChild
, TRUE
);
2212 if (x
<= rectParent
.right
- xspacing
) x
+= xspacing
;
2215 x
= rectParent
.left
;
2219 hwndChild
= GetWindow( hwndChild
, GW_HWNDNEXT
);
2225 /***********************************************************************
2228 * Draw the frame used when moving or resizing window.
2230 static void draw_moving_frame( HDC hdc
, RECT
*rect
, BOOL thickframe
)
2234 const int width
= GetSystemMetrics(SM_CXFRAME
);
2235 const int height
= GetSystemMetrics(SM_CYFRAME
);
2237 HBRUSH hbrush
= SelectObject( hdc
, GetStockObject( GRAY_BRUSH
) );
2238 PatBlt( hdc
, rect
->left
, rect
->top
,
2239 rect
->right
- rect
->left
- width
, height
, PATINVERT
);
2240 PatBlt( hdc
, rect
->left
, rect
->top
+ height
, width
,
2241 rect
->bottom
- rect
->top
- height
, PATINVERT
);
2242 PatBlt( hdc
, rect
->left
+ width
, rect
->bottom
- 1,
2243 rect
->right
- rect
->left
- width
, -height
, PATINVERT
);
2244 PatBlt( hdc
, rect
->right
- 1, rect
->top
, -width
,
2245 rect
->bottom
- rect
->top
- height
, PATINVERT
);
2246 SelectObject( hdc
, hbrush
);
2248 else DrawFocusRect( hdc
, rect
);
2252 /***********************************************************************
2255 * Initialization of a move or resize, when initiated from a menu choice.
2256 * Return hit test code for caption or sizing border.
2258 static LONG
start_size_move( HWND hwnd
, WPARAM wParam
, POINT
*capturePoint
, LONG style
)
2265 GetWindowRect( hwnd
, &rectWindow
);
2267 if ((wParam
& 0xfff0) == SC_MOVE
)
2269 /* Move pointer at the center of the caption */
2270 RECT rect
= rectWindow
;
2271 /* Note: to be exactly centered we should take the different types
2272 * of border into account, but it shouldn't make more than a few pixels
2273 * of difference so let's not bother with that */
2274 rect
.top
+= GetSystemMetrics(SM_CYBORDER
);
2275 if (style
& WS_SYSMENU
)
2276 rect
.left
+= GetSystemMetrics(SM_CXSIZE
) + 1;
2277 if (style
& WS_MINIMIZEBOX
)
2278 rect
.right
-= GetSystemMetrics(SM_CXSIZE
) + 1;
2279 if (style
& WS_MAXIMIZEBOX
)
2280 rect
.right
-= GetSystemMetrics(SM_CXSIZE
) + 1;
2281 pt
.x
= (rect
.right
+ rect
.left
) / 2;
2282 pt
.y
= rect
.top
+ GetSystemMetrics(SM_CYSIZE
)/2;
2283 hittest
= HTCAPTION
;
2288 SetCursor( LoadCursorW( 0, (LPWSTR
)IDC_SIZEALL
) );
2292 if (!GetMessageW( &msg
, 0, 0, 0 )) return 0;
2293 if (CallMsgFilterW( &msg
, MSGF_SIZE
)) continue;
2298 pt
.x
= min( max( msg
.pt
.x
, rectWindow
.left
), rectWindow
.right
- 1 );
2299 pt
.y
= min( max( msg
.pt
.y
, rectWindow
.top
), rectWindow
.bottom
- 1 );
2300 hittest
= SendMessageW( hwnd
, WM_NCHITTEST
, 0, MAKELONG( pt
.x
, pt
.y
) );
2301 if ((hittest
< HTLEFT
) || (hittest
> HTBOTTOMRIGHT
)) hittest
= 0;
2312 pt
.x
=(rectWindow
.left
+rectWindow
.right
)/2;
2313 pt
.y
= rectWindow
.top
+ GetSystemMetrics(SM_CYFRAME
) / 2;
2317 pt
.x
=(rectWindow
.left
+rectWindow
.right
)/2;
2318 pt
.y
= rectWindow
.bottom
- GetSystemMetrics(SM_CYFRAME
) / 2;
2322 pt
.x
= rectWindow
.left
+ GetSystemMetrics(SM_CXFRAME
) / 2;
2323 pt
.y
=(rectWindow
.top
+rectWindow
.bottom
)/2;
2327 pt
.x
= rectWindow
.right
- GetSystemMetrics(SM_CXFRAME
) / 2;
2328 pt
.y
=(rectWindow
.top
+rectWindow
.bottom
)/2;
2336 TranslateMessage( &msg
);
2337 DispatchMessageW( &msg
);
2343 SetCursorPos( pt
.x
, pt
.y
);
2344 SendMessageW( hwnd
, WM_SETCURSOR
, (WPARAM
)hwnd
, MAKELONG( hittest
, WM_MOUSEMOVE
));
2349 /***********************************************************************
2350 * WINPOS_SysCommandSizeMove
2352 * Perform SC_MOVE and SC_SIZE commands.
2354 void WINPOS_SysCommandSizeMove( HWND hwnd
, WPARAM wParam
)
2357 RECT sizingRect
, mouseRect
, origRect
;
2360 LONG hittest
= (LONG
)(wParam
& 0x0f);
2361 WPARAM syscommand
= wParam
& 0xfff0;
2362 HCURSOR hDragCursor
= 0, hOldCursor
= 0;
2363 POINT minTrack
, maxTrack
;
2364 POINT capturePoint
, pt
;
2365 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2366 BOOL thickframe
= HAS_THICKFRAME( style
);
2367 BOOL iconic
= style
& WS_MINIMIZE
;
2369 DWORD dwPoint
= GetMessagePos ();
2370 BOOL DragFullWindows
= TRUE
;
2372 if (IsZoomed(hwnd
) || !IsWindowVisible(hwnd
)) return;
2374 pt
.x
= (short)LOWORD(dwPoint
);
2375 pt
.y
= (short)HIWORD(dwPoint
);
2378 TRACE("hwnd %p command %04lx, hittest %d, pos %d,%d\n",
2379 hwnd
, syscommand
, hittest
, pt
.x
, pt
.y
);
2381 if (syscommand
== SC_MOVE
)
2383 if (!hittest
) hittest
= start_size_move( hwnd
, wParam
, &capturePoint
, style
);
2384 if (!hittest
) return;
2388 if ( hittest
&& (syscommand
!= SC_MOUSEMENU
) )
2389 hittest
+= (HTLEFT
- WMSZ_LEFT
);
2392 set_capture_window( hwnd
, GUI_INMOVESIZE
, NULL
);
2393 hittest
= start_size_move( hwnd
, wParam
, &capturePoint
, style
);
2396 set_capture_window( 0, GUI_INMOVESIZE
, NULL
);
2402 /* Get min/max info */
2404 WINPOS_GetMinMaxInfo( hwnd
, NULL
, NULL
, &minTrack
, &maxTrack
);
2405 GetWindowRect( hwnd
, &sizingRect
);
2406 if (style
& WS_CHILD
)
2408 parent
= GetParent(hwnd
);
2409 /* make sizing rect relative to parent */
2410 MapWindowPoints( 0, parent
, (POINT
*)&sizingRect
, 2 );
2411 GetClientRect( parent
, &mouseRect
);
2416 GetClientRect( GetDesktopWindow(), &mouseRect
);
2417 mouseRect
.left
= GetSystemMetrics( SM_XVIRTUALSCREEN
);
2418 mouseRect
.top
= GetSystemMetrics( SM_YVIRTUALSCREEN
);
2419 mouseRect
.right
= mouseRect
.left
+ GetSystemMetrics( SM_CXVIRTUALSCREEN
);
2420 mouseRect
.bottom
= mouseRect
.top
+ GetSystemMetrics( SM_CYVIRTUALSCREEN
);
2422 origRect
= sizingRect
;
2424 if (ON_LEFT_BORDER(hittest
))
2426 mouseRect
.left
= max( mouseRect
.left
, sizingRect
.right
-maxTrack
.x
);
2427 mouseRect
.right
= min( mouseRect
.right
, sizingRect
.right
-minTrack
.x
);
2429 else if (ON_RIGHT_BORDER(hittest
))
2431 mouseRect
.left
= max( mouseRect
.left
, sizingRect
.left
+minTrack
.x
);
2432 mouseRect
.right
= min( mouseRect
.right
, sizingRect
.left
+maxTrack
.x
);
2434 if (ON_TOP_BORDER(hittest
))
2436 mouseRect
.top
= max( mouseRect
.top
, sizingRect
.bottom
-maxTrack
.y
);
2437 mouseRect
.bottom
= min( mouseRect
.bottom
,sizingRect
.bottom
-minTrack
.y
);
2439 else if (ON_BOTTOM_BORDER(hittest
))
2441 mouseRect
.top
= max( mouseRect
.top
, sizingRect
.top
+minTrack
.y
);
2442 mouseRect
.bottom
= min( mouseRect
.bottom
, sizingRect
.top
+maxTrack
.y
);
2444 if (parent
) MapWindowPoints( parent
, 0, (LPPOINT
)&mouseRect
, 2 );
2446 /* Retrieve a default cache DC (without using the window style) */
2447 hdc
= GetDCEx( parent
, 0, DCX_CACHE
);
2449 if( iconic
) /* create a cursor for dragging */
2451 hDragCursor
= (HCURSOR
)GetClassLongPtrW( hwnd
, GCLP_HICON
);
2452 if( !hDragCursor
) hDragCursor
= (HCURSOR
)SendMessageW( hwnd
, WM_QUERYDRAGICON
, 0, 0L);
2453 if( !hDragCursor
) iconic
= FALSE
;
2456 /* we only allow disabling the full window drag for child windows */
2457 if (parent
) SystemParametersInfoW( SPI_GETDRAGFULLWINDOWS
, 0, &DragFullWindows
, 0 );
2459 /* repaint the window before moving it around */
2460 RedrawWindow( hwnd
, NULL
, 0, RDW_UPDATENOW
| RDW_ALLCHILDREN
);
2462 SendMessageW( hwnd
, WM_ENTERSIZEMOVE
, 0, 0 );
2463 set_capture_window( hwnd
, GUI_INMOVESIZE
, NULL
);
2469 if (!GetMessageW( &msg
, 0, 0, 0 )) break;
2470 if (CallMsgFilterW( &msg
, MSGF_SIZE
)) continue;
2472 /* Exit on button-up, Return, or Esc */
2473 if ((msg
.message
== WM_LBUTTONUP
) ||
2474 ((msg
.message
== WM_KEYDOWN
) &&
2475 ((msg
.wParam
== VK_RETURN
) || (msg
.wParam
== VK_ESCAPE
)))) break;
2477 if ((msg
.message
!= WM_KEYDOWN
) && (msg
.message
!= WM_MOUSEMOVE
))
2479 TranslateMessage( &msg
);
2480 DispatchMessageW( &msg
);
2481 continue; /* We are not interested in other messages */
2486 if (msg
.message
== WM_KEYDOWN
) switch(msg
.wParam
)
2488 case VK_UP
: pt
.y
-= 8; break;
2489 case VK_DOWN
: pt
.y
+= 8; break;
2490 case VK_LEFT
: pt
.x
-= 8; break;
2491 case VK_RIGHT
: pt
.x
+= 8; break;
2494 pt
.x
= max( pt
.x
, mouseRect
.left
);
2495 pt
.x
= min( pt
.x
, mouseRect
.right
);
2496 pt
.y
= max( pt
.y
, mouseRect
.top
);
2497 pt
.y
= min( pt
.y
, mouseRect
.bottom
);
2499 dx
= pt
.x
- capturePoint
.x
;
2500 dy
= pt
.y
- capturePoint
.y
;
2508 if( iconic
) /* ok, no system popup tracking */
2510 hOldCursor
= SetCursor(hDragCursor
);
2512 WINPOS_ShowIconTitle( hwnd
, FALSE
);
2514 else if(!DragFullWindows
)
2515 draw_moving_frame( hdc
, &sizingRect
, thickframe
);
2518 if (msg
.message
== WM_KEYDOWN
) SetCursorPos( pt
.x
, pt
.y
);
2521 RECT newRect
= sizingRect
;
2522 WPARAM wpSizingHit
= 0;
2524 if (hittest
== HTCAPTION
) OffsetRect( &newRect
, dx
, dy
);
2525 if (ON_LEFT_BORDER(hittest
)) newRect
.left
+= dx
;
2526 else if (ON_RIGHT_BORDER(hittest
)) newRect
.right
+= dx
;
2527 if (ON_TOP_BORDER(hittest
)) newRect
.top
+= dy
;
2528 else if (ON_BOTTOM_BORDER(hittest
)) newRect
.bottom
+= dy
;
2529 if(!iconic
&& !DragFullWindows
) draw_moving_frame( hdc
, &sizingRect
, thickframe
);
2532 /* determine the hit location */
2533 if (hittest
>= HTLEFT
&& hittest
<= HTBOTTOMRIGHT
)
2534 wpSizingHit
= WMSZ_LEFT
+ (hittest
- HTLEFT
);
2535 SendMessageW( hwnd
, WM_SIZING
, wpSizingHit
, (LPARAM
)&newRect
);
2539 if(!DragFullWindows
)
2540 draw_moving_frame( hdc
, &newRect
, thickframe
);
2542 SetWindowPos( hwnd
, 0, newRect
.left
, newRect
.top
,
2543 newRect
.right
- newRect
.left
,
2544 newRect
.bottom
- newRect
.top
,
2545 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
2547 sizingRect
= newRect
;
2554 if( moved
) /* restore cursors, show icon title later on */
2556 ShowCursor( FALSE
);
2557 SetCursor( hOldCursor
);
2560 else if (moved
&& !DragFullWindows
)
2562 draw_moving_frame( hdc
, &sizingRect
, thickframe
);
2565 set_capture_window( 0, GUI_INMOVESIZE
, NULL
);
2566 ReleaseDC( parent
, hdc
);
2568 if (HOOK_CallHooks( WH_CBT
, HCBT_MOVESIZE
, (WPARAM
)hwnd
, (LPARAM
)&sizingRect
, TRUE
))
2571 SendMessageW( hwnd
, WM_EXITSIZEMOVE
, 0, 0 );
2572 SendMessageW( hwnd
, WM_SETVISIBLE
, !IsIconic(hwnd
), 0L);
2574 /* window moved or resized */
2577 /* if the moving/resizing isn't canceled call SetWindowPos
2578 * with the new position or the new size of the window
2580 if (!((msg
.message
== WM_KEYDOWN
) && (msg
.wParam
== VK_ESCAPE
)) )
2582 /* NOTE: SWP_NOACTIVATE prevents document window activation in Word 6 */
2583 if(!DragFullWindows
|| iconic
)
2584 SetWindowPos( hwnd
, 0, sizingRect
.left
, sizingRect
.top
,
2585 sizingRect
.right
- sizingRect
.left
,
2586 sizingRect
.bottom
- sizingRect
.top
,
2587 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
2590 { /* restore previous size/position */
2592 SetWindowPos( hwnd
, 0, origRect
.left
, origRect
.top
,
2593 origRect
.right
- origRect
.left
,
2594 origRect
.bottom
- origRect
.top
,
2595 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
2601 /* Single click brings up the system menu when iconized */
2605 if(style
& WS_SYSMENU
)
2606 SendMessageW( hwnd
, WM_SYSCOMMAND
,
2607 SC_MOUSEMENU
+ HTSYSMENU
, MAKELONG(pt
.x
,pt
.y
));
2609 else WINPOS_ShowIconTitle( hwnd
, TRUE
);