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
73 struct user_object obj
;
81 /***********************************************************************
82 * SwitchToThisWindow (USER32.@)
84 void WINAPI
SwitchToThisWindow( HWND hwnd
, BOOL alt_tab
)
86 if (IsIconic( hwnd
)) ShowWindow( hwnd
, SW_RESTORE
);
87 else BringWindowToTop( hwnd
);
91 /***********************************************************************
92 * GetWindowRect (USER32.@)
94 BOOL WINAPI
GetWindowRect( HWND hwnd
, LPRECT rect
)
96 BOOL ret
= WIN_GetRectangles( hwnd
, rect
, NULL
);
99 MapWindowPoints( GetAncestor( hwnd
, GA_PARENT
), 0, (POINT
*)rect
, 2 );
100 TRACE( "hwnd %p (%s)\n", hwnd
, wine_dbgstr_rect(rect
) );
106 /***********************************************************************
107 * GetWindowRgn (USER32.@)
109 int WINAPI
GetWindowRgn ( HWND hwnd
, HRGN hrgn
)
119 if (!(data
= HeapAlloc( GetProcessHeap(), 0, sizeof(*data
) + size
- 1 )))
121 SetLastError( ERROR_OUTOFMEMORY
);
124 SERVER_START_REQ( get_window_region
)
126 req
->window
= wine_server_user_handle( hwnd
);
127 wine_server_set_reply( req
, data
->Buffer
, size
);
128 if (!(status
= wine_server_call( req
)))
130 size_t reply_size
= wine_server_reply_size( reply
);
133 data
->rdh
.dwSize
= sizeof(data
->rdh
);
134 data
->rdh
.iType
= RDH_RECTANGLES
;
135 data
->rdh
.nCount
= reply_size
/ sizeof(RECT
);
136 data
->rdh
.nRgnSize
= reply_size
;
137 win_rgn
= ExtCreateRegion( NULL
, size
, data
);
140 else size
= reply
->total_size
;
143 HeapFree( GetProcessHeap(), 0, data
);
144 } while (status
== STATUS_BUFFER_OVERFLOW
);
146 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
149 nRet
= CombineRgn( hrgn
, win_rgn
, 0, RGN_COPY
);
150 DeleteObject( win_rgn
);
155 /***********************************************************************
156 * GetWindowRgnBox (USER32.@)
158 int WINAPI
GetWindowRgnBox( HWND hwnd
, LPRECT prect
)
166 if ((hrgn
= CreateRectRgn(0, 0, 0, 0)))
168 if ((ret
= GetWindowRgn( hwnd
, hrgn
)) != ERROR
)
169 ret
= GetRgnBox( hrgn
, prect
);
176 /***********************************************************************
177 * SetWindowRgn (USER32.@)
179 int WINAPI
SetWindowRgn( HWND hwnd
, HRGN hrgn
, BOOL bRedraw
)
181 static const RECT empty_rect
;
189 if (!(size
= GetRegionData( hrgn
, 0, NULL
))) return FALSE
;
190 if (!(data
= HeapAlloc( GetProcessHeap(), 0, size
))) return FALSE
;
191 if (!GetRegionData( hrgn
, size
, data
))
193 HeapFree( GetProcessHeap(), 0, data
);
196 SERVER_START_REQ( set_window_region
)
198 req
->window
= wine_server_user_handle( hwnd
);
199 req
->redraw
= (bRedraw
!= 0);
200 if (data
->rdh
.nCount
)
201 wine_server_add_data( req
, data
->Buffer
, data
->rdh
.nCount
* sizeof(RECT
) );
203 wine_server_add_data( req
, &empty_rect
, sizeof(empty_rect
) );
204 ret
= !wine_server_call_err( req
);
207 HeapFree( GetProcessHeap(), 0, data
);
209 else /* clear existing region */
211 SERVER_START_REQ( set_window_region
)
213 req
->window
= wine_server_user_handle( hwnd
);
214 req
->redraw
= (bRedraw
!= 0);
215 ret
= !wine_server_call_err( req
);
220 if (ret
) ret
= USER_Driver
->pSetWindowRgn( hwnd
, hrgn
, bRedraw
);
224 UINT swp_flags
= SWP_NOSIZE
|SWP_NOMOVE
|SWP_NOZORDER
|SWP_NOACTIVATE
|SWP_FRAMECHANGED
|SWP_NOCLIENTSIZE
|SWP_NOCLIENTMOVE
;
225 if (!bRedraw
) swp_flags
|= SWP_NOREDRAW
;
226 SetWindowPos( hwnd
, 0, 0, 0, 0, 0, swp_flags
);
227 invalidate_dce( hwnd
, NULL
);
233 /***********************************************************************
234 * GetClientRect (USER32.@)
236 BOOL WINAPI
GetClientRect( HWND hwnd
, LPRECT rect
)
240 if ((ret
= WIN_GetRectangles( hwnd
, NULL
, rect
)))
242 rect
->right
-= rect
->left
;
243 rect
->bottom
-= rect
->top
;
244 rect
->left
= rect
->top
= 0;
250 /*******************************************************************
251 * ClientToScreen (USER32.@)
253 BOOL WINAPI
ClientToScreen( HWND hwnd
, LPPOINT lppnt
)
255 MapWindowPoints( hwnd
, 0, lppnt
, 1 );
260 /*******************************************************************
261 * ScreenToClient (USER32.@)
263 BOOL WINAPI
ScreenToClient( HWND hwnd
, LPPOINT lppnt
)
265 MapWindowPoints( 0, hwnd
, lppnt
, 1 );
270 /***********************************************************************
271 * list_children_from_point
273 * Get the list of children that can contain point from the server.
274 * Point is in screen coordinates.
275 * Returned list must be freed by caller.
277 static HWND
*list_children_from_point( HWND hwnd
, POINT pt
)
286 if (!(list
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(HWND
) ))) break;
288 SERVER_START_REQ( get_window_children_from_point
)
290 req
->parent
= wine_server_user_handle( hwnd
);
293 wine_server_set_reply( req
, list
, (size
-1) * sizeof(user_handle_t
) );
294 if (!wine_server_call( req
)) count
= reply
->count
;
297 if (count
&& count
< size
)
299 /* start from the end since HWND is potentially larger than user_handle_t */
300 for (i
= count
- 1; i
>= 0; i
--)
301 list
[i
] = wine_server_ptr_handle( ((user_handle_t
*)list
)[i
] );
305 HeapFree( GetProcessHeap(), 0, list
);
307 size
= count
+ 1; /* restart with a large enough buffer */
313 /***********************************************************************
314 * WINPOS_WindowFromPoint
316 * Find the window and hittest for a given point.
318 HWND
WINPOS_WindowFromPoint( HWND hwndScope
, POINT pt
, INT
*hittest
)
323 if (!hwndScope
) hwndScope
= GetDesktopWindow();
325 *hittest
= HTNOWHERE
;
327 if (!(list
= list_children_from_point( hwndScope
, pt
))) return 0;
329 /* now determine the hittest */
331 for (i
= 0; list
[i
]; i
++)
333 LONG style
= GetWindowLongW( list
[i
], GWL_STYLE
);
335 /* If window is minimized or disabled, return at once */
336 if (style
& WS_MINIMIZE
)
338 *hittest
= HTCAPTION
;
341 if (style
& WS_DISABLED
)
346 /* Send WM_NCCHITTEST (if same thread) */
347 if (!WIN_IsCurrentThread( list
[i
] ))
352 res
= SendMessageW( list
[i
], WM_NCHITTEST
, 0, MAKELONG(pt
.x
,pt
.y
) );
353 if (res
!= HTTRANSPARENT
)
355 *hittest
= res
; /* Found the window */
358 /* continue search with next window in z-order */
361 HeapFree( GetProcessHeap(), 0, list
);
362 TRACE( "scope %p (%d,%d) returning %p\n", hwndScope
, pt
.x
, pt
.y
, ret
);
367 /*******************************************************************
368 * WindowFromPoint (USER32.@)
370 HWND WINAPI
WindowFromPoint( POINT pt
)
373 return WINPOS_WindowFromPoint( 0, pt
, &hittest
);
377 /*******************************************************************
378 * ChildWindowFromPoint (USER32.@)
380 HWND WINAPI
ChildWindowFromPoint( HWND hwndParent
, POINT pt
)
382 return ChildWindowFromPointEx( hwndParent
, pt
, CWP_ALL
);
385 /*******************************************************************
386 * RealChildWindowFromPoint (USER32.@)
388 HWND WINAPI
RealChildWindowFromPoint( HWND hwndParent
, POINT pt
)
390 return ChildWindowFromPointEx( hwndParent
, pt
, CWP_SKIPTRANSPARENT
);
393 /*******************************************************************
394 * ChildWindowFromPointEx (USER32.@)
396 HWND WINAPI
ChildWindowFromPointEx( HWND hwndParent
, POINT pt
, UINT uFlags
)
398 /* pt is in the client coordinates */
404 GetClientRect( hwndParent
, &rect
);
405 if (!PtInRect( &rect
, pt
)) return 0;
406 if (!(list
= WIN_ListChildren( hwndParent
))) return hwndParent
;
408 for (i
= 0; list
[i
]; i
++)
410 if (!WIN_GetRectangles( list
[i
], &rect
, NULL
)) continue;
411 if (!PtInRect( &rect
, pt
)) continue;
412 if (uFlags
& (CWP_SKIPINVISIBLE
|CWP_SKIPDISABLED
))
414 LONG style
= GetWindowLongW( list
[i
], GWL_STYLE
);
415 if ((uFlags
& CWP_SKIPINVISIBLE
) && !(style
& WS_VISIBLE
)) continue;
416 if ((uFlags
& CWP_SKIPDISABLED
) && (style
& WS_DISABLED
)) continue;
418 if (uFlags
& CWP_SKIPTRANSPARENT
)
420 if (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TRANSPARENT
) continue;
425 HeapFree( GetProcessHeap(), 0, list
);
426 if (!retvalue
) retvalue
= hwndParent
;
431 /*******************************************************************
432 * WINPOS_GetWinOffset
434 * Calculate the offset between the origin of the two windows. Used
435 * to implement MapWindowPoints.
437 static void WINPOS_GetWinOffset( HWND hwndFrom
, HWND hwndTo
, POINT
*offset
)
441 offset
->x
= offset
->y
= 0;
443 /* Translate source window origin to screen coords */
446 HWND hwnd
= hwndFrom
;
450 if (hwnd
== hwndTo
) return;
451 if (!(wndPtr
= WIN_GetPtr( hwnd
)))
453 ERR( "bad hwndFrom = %p\n", hwnd
);
456 if (wndPtr
== WND_DESKTOP
) break;
457 if (wndPtr
== WND_OTHER_PROCESS
) goto other_process
;
460 offset
->x
+= wndPtr
->rectClient
.left
;
461 offset
->y
+= wndPtr
->rectClient
.top
;
463 hwnd
= wndPtr
->parent
;
464 WIN_ReleasePtr( wndPtr
);
468 /* Translate origin to destination window coords */
475 if (!(wndPtr
= WIN_GetPtr( hwnd
)))
477 ERR( "bad hwndTo = %p\n", hwnd
);
480 if (wndPtr
== WND_DESKTOP
) break;
481 if (wndPtr
== WND_OTHER_PROCESS
) goto other_process
;
484 offset
->x
-= wndPtr
->rectClient
.left
;
485 offset
->y
-= wndPtr
->rectClient
.top
;
487 hwnd
= wndPtr
->parent
;
488 WIN_ReleasePtr( wndPtr
);
493 other_process
: /* one of the parents may belong to another process, do it the hard way */
494 offset
->x
= offset
->y
= 0;
495 SERVER_START_REQ( get_windows_offset
)
497 req
->from
= wine_server_user_handle( hwndFrom
);
498 req
->to
= wine_server_user_handle( hwndTo
);
499 if (!wine_server_call( req
))
501 offset
->x
= reply
->x
;
502 offset
->y
= reply
->y
;
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();
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
;
1059 LPARAM lparam
= MAKELONG( client
.right
- client
.left
, client
.bottom
- client
.top
);
1061 wndPtr
->flags
&= ~WIN_NEED_SIZE
;
1062 if (wndPtr
->dwStyle
& WS_MAXIMIZE
) wParam
= SIZE_MAXIMIZED
;
1063 else if (wndPtr
->dwStyle
& WS_MINIMIZE
)
1065 wParam
= SIZE_MINIMIZED
;
1068 WIN_ReleasePtr( wndPtr
);
1070 SendMessageW( hwnd
, WM_SIZE
, wParam
, lparam
);
1071 SendMessageW( hwnd
, WM_MOVE
, 0, MAKELONG( client
.left
, client
.top
));
1073 else WIN_ReleasePtr( wndPtr
);
1075 /* if previous state was minimized Windows sets focus to the window */
1076 if (style
& WS_MINIMIZE
) SetFocus( hwnd
);
1082 /***********************************************************************
1083 * ShowWindowAsync (USER32.@)
1085 * doesn't wait; returns immediately.
1086 * used by threads to toggle windows in other (possibly hanging) threads
1088 BOOL WINAPI
ShowWindowAsync( HWND hwnd
, INT cmd
)
1092 if (is_broadcast(hwnd
))
1094 SetLastError( ERROR_INVALID_PARAMETER
);
1098 if ((full_handle
= WIN_IsCurrentThread( hwnd
)))
1099 return show_window( full_handle
, cmd
);
1101 return SendNotifyMessageW( hwnd
, WM_WINE_SHOWWINDOW
, cmd
, 0 );
1105 /***********************************************************************
1106 * ShowWindow (USER32.@)
1108 BOOL WINAPI
ShowWindow( HWND hwnd
, INT cmd
)
1112 if (is_broadcast(hwnd
))
1114 SetLastError( ERROR_INVALID_PARAMETER
);
1117 if ((full_handle
= WIN_IsCurrentThread( hwnd
)))
1118 return show_window( full_handle
, cmd
);
1120 return SendMessageW( hwnd
, WM_WINE_SHOWWINDOW
, cmd
, 0 );
1124 /***********************************************************************
1125 * GetInternalWindowPos (USER32.@)
1127 UINT WINAPI
GetInternalWindowPos( HWND hwnd
, LPRECT rectWnd
,
1130 WINDOWPLACEMENT wndpl
;
1131 if (GetWindowPlacement( hwnd
, &wndpl
))
1133 if (rectWnd
) *rectWnd
= wndpl
.rcNormalPosition
;
1134 if (ptIcon
) *ptIcon
= wndpl
.ptMinPosition
;
1135 return wndpl
.showCmd
;
1141 /***********************************************************************
1142 * GetWindowPlacement (USER32.@)
1145 * Fails if wndpl->length of Win95 (!) apps is invalid.
1147 BOOL WINAPI
GetWindowPlacement( HWND hwnd
, WINDOWPLACEMENT
*wndpl
)
1149 WND
*pWnd
= WIN_GetPtr( hwnd
);
1151 if (!pWnd
) return FALSE
;
1153 if (pWnd
== WND_DESKTOP
)
1155 wndpl
->length
= sizeof(*wndpl
);
1156 wndpl
->showCmd
= SW_SHOWNORMAL
;
1158 wndpl
->ptMinPosition
.x
= -1;
1159 wndpl
->ptMinPosition
.y
= -1;
1160 wndpl
->ptMaxPosition
.x
= -1;
1161 wndpl
->ptMaxPosition
.y
= -1;
1162 GetWindowRect( hwnd
, &wndpl
->rcNormalPosition
);
1165 if (pWnd
== WND_OTHER_PROCESS
)
1167 if (IsWindow( hwnd
)) FIXME( "not supported on other process window %p\n", hwnd
);
1171 /* update the placement according to the current style */
1172 if (pWnd
->dwStyle
& WS_MINIMIZE
)
1174 pWnd
->min_pos
.x
= pWnd
->rectWindow
.left
;
1175 pWnd
->min_pos
.y
= pWnd
->rectWindow
.top
;
1177 else if (pWnd
->dwStyle
& WS_MAXIMIZE
)
1179 pWnd
->max_pos
.x
= pWnd
->rectWindow
.left
;
1180 pWnd
->max_pos
.y
= pWnd
->rectWindow
.top
;
1184 pWnd
->normal_rect
= pWnd
->rectWindow
;
1187 wndpl
->length
= sizeof(*wndpl
);
1188 if( pWnd
->dwStyle
& WS_MINIMIZE
)
1189 wndpl
->showCmd
= SW_SHOWMINIMIZED
;
1191 wndpl
->showCmd
= ( pWnd
->dwStyle
& WS_MAXIMIZE
) ? SW_SHOWMAXIMIZED
: SW_SHOWNORMAL
;
1192 if( pWnd
->flags
& WIN_RESTORE_MAX
)
1193 wndpl
->flags
= WPF_RESTORETOMAXIMIZED
;
1196 wndpl
->ptMinPosition
= pWnd
->min_pos
;
1197 wndpl
->ptMaxPosition
= pWnd
->max_pos
;
1198 wndpl
->rcNormalPosition
= pWnd
->normal_rect
;
1199 WIN_ReleasePtr( pWnd
);
1201 TRACE( "%p: returning min %d,%d max %d,%d normal %s\n",
1202 hwnd
, wndpl
->ptMinPosition
.x
, wndpl
->ptMinPosition
.y
,
1203 wndpl
->ptMaxPosition
.x
, wndpl
->ptMaxPosition
.y
,
1204 wine_dbgstr_rect(&wndpl
->rcNormalPosition
) );
1208 /* make sure the specified rect is visible on screen */
1209 static void make_rect_onscreen( RECT
*rect
)
1212 HMONITOR monitor
= MonitorFromRect( rect
, MONITOR_DEFAULTTONEAREST
);
1214 info
.cbSize
= sizeof(info
);
1215 if (!monitor
|| !GetMonitorInfoW( monitor
, &info
)) return;
1216 /* FIXME: map coordinates from rcWork to rcMonitor */
1217 if (rect
->right
<= info
.rcWork
.left
)
1219 rect
->right
+= info
.rcWork
.left
- rect
->left
;
1220 rect
->left
= info
.rcWork
.left
;
1222 else if (rect
->left
>= info
.rcWork
.right
)
1224 rect
->left
+= info
.rcWork
.right
- rect
->right
;
1225 rect
->right
= info
.rcWork
.right
;
1227 if (rect
->bottom
<= info
.rcWork
.top
)
1229 rect
->bottom
+= info
.rcWork
.top
- rect
->top
;
1230 rect
->top
= info
.rcWork
.top
;
1232 else if (rect
->top
>= info
.rcWork
.bottom
)
1234 rect
->top
+= info
.rcWork
.bottom
- rect
->bottom
;
1235 rect
->bottom
= info
.rcWork
.bottom
;
1239 /* make sure the specified point is visible on screen */
1240 static void make_point_onscreen( POINT
*pt
)
1244 SetRect( &rect
, pt
->x
, pt
->y
, pt
->x
+ 1, pt
->y
+ 1 );
1245 make_rect_onscreen( &rect
);
1251 /***********************************************************************
1252 * WINPOS_SetPlacement
1254 static BOOL
WINPOS_SetPlacement( HWND hwnd
, const WINDOWPLACEMENT
*wndpl
, UINT flags
)
1257 WND
*pWnd
= WIN_GetPtr( hwnd
);
1258 WINDOWPLACEMENT wp
= *wndpl
;
1260 if (flags
& PLACE_MIN
) make_point_onscreen( &wp
.ptMinPosition
);
1261 if (flags
& PLACE_MAX
) make_point_onscreen( &wp
.ptMaxPosition
);
1262 if (flags
& PLACE_RECT
) make_rect_onscreen( &wp
.rcNormalPosition
);
1264 TRACE( "%p: setting min %d,%d max %d,%d normal %s flags %x ajusted to min %d,%d max %d,%d normal %s\n",
1265 hwnd
, wndpl
->ptMinPosition
.x
, wndpl
->ptMinPosition
.y
,
1266 wndpl
->ptMaxPosition
.x
, wndpl
->ptMaxPosition
.y
,
1267 wine_dbgstr_rect(&wndpl
->rcNormalPosition
), flags
,
1268 wp
.ptMinPosition
.x
, wp
.ptMinPosition
.y
, wp
.ptMaxPosition
.x
, wp
.ptMaxPosition
.y
,
1269 wine_dbgstr_rect(&wp
.rcNormalPosition
) );
1271 if (!pWnd
|| pWnd
== WND_OTHER_PROCESS
|| pWnd
== WND_DESKTOP
) return FALSE
;
1273 if( flags
& PLACE_MIN
) pWnd
->min_pos
= wp
.ptMinPosition
;
1274 if( flags
& PLACE_MAX
) pWnd
->max_pos
= wp
.ptMaxPosition
;
1275 if( flags
& PLACE_RECT
) pWnd
->normal_rect
= wp
.rcNormalPosition
;
1277 style
= pWnd
->dwStyle
;
1279 WIN_ReleasePtr( pWnd
);
1281 if( style
& WS_MINIMIZE
)
1283 if (flags
& PLACE_MIN
)
1285 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1286 SetWindowPos( hwnd
, 0, wp
.ptMinPosition
.x
, wp
.ptMinPosition
.y
, 0, 0,
1287 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1290 else if( style
& WS_MAXIMIZE
)
1292 if (flags
& PLACE_MAX
)
1293 SetWindowPos( hwnd
, 0, wp
.ptMaxPosition
.x
, wp
.ptMaxPosition
.y
, 0, 0,
1294 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1296 else if( flags
& PLACE_RECT
)
1297 SetWindowPos( hwnd
, 0, wp
.rcNormalPosition
.left
, wp
.rcNormalPosition
.top
,
1298 wp
.rcNormalPosition
.right
- wp
.rcNormalPosition
.left
,
1299 wp
.rcNormalPosition
.bottom
- wp
.rcNormalPosition
.top
,
1300 SWP_NOZORDER
| SWP_NOACTIVATE
);
1302 ShowWindow( hwnd
, wndpl
->showCmd
);
1304 if (IsIconic( hwnd
))
1306 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_VISIBLE
) WINPOS_ShowIconTitle( hwnd
, TRUE
);
1308 /* SDK: ...valid only the next time... */
1309 if( wndpl
->flags
& WPF_RESTORETOMAXIMIZED
)
1311 pWnd
= WIN_GetPtr( hwnd
);
1312 if (pWnd
&& pWnd
!= WND_OTHER_PROCESS
)
1314 pWnd
->flags
|= WIN_RESTORE_MAX
;
1315 WIN_ReleasePtr( pWnd
);
1323 /***********************************************************************
1324 * SetWindowPlacement (USER32.@)
1327 * Fails if wndpl->length of Win95 (!) apps is invalid.
1329 BOOL WINAPI
SetWindowPlacement( HWND hwnd
, const WINDOWPLACEMENT
*wpl
)
1331 UINT flags
= PLACE_MAX
| PLACE_RECT
;
1332 if (!wpl
) return FALSE
;
1333 if (wpl
->flags
& WPF_SETMINPOSITION
) flags
|= PLACE_MIN
;
1334 return WINPOS_SetPlacement( hwnd
, wpl
, flags
);
1338 /***********************************************************************
1339 * AnimateWindow (USER32.@)
1340 * Shows/Hides a window with an animation
1343 BOOL WINAPI
AnimateWindow(HWND hwnd
, DWORD dwTime
, DWORD dwFlags
)
1345 FIXME("partial stub\n");
1347 /* If trying to show/hide and it's already *
1348 * shown/hidden or invalid window, fail with *
1349 * invalid parameter */
1350 if(!IsWindow(hwnd
) ||
1351 (IsWindowVisible(hwnd
) && !(dwFlags
& AW_HIDE
)) ||
1352 (!IsWindowVisible(hwnd
) && (dwFlags
& AW_HIDE
)))
1354 SetLastError(ERROR_INVALID_PARAMETER
);
1358 ShowWindow(hwnd
, (dwFlags
& AW_HIDE
) ? SW_HIDE
: ((dwFlags
& AW_ACTIVATE
) ? SW_SHOW
: SW_SHOWNA
));
1363 /***********************************************************************
1364 * SetInternalWindowPos (USER32.@)
1366 void WINAPI
SetInternalWindowPos( HWND hwnd
, UINT showCmd
,
1367 LPRECT rect
, LPPOINT pt
)
1369 WINDOWPLACEMENT wndpl
;
1372 wndpl
.length
= sizeof(wndpl
);
1373 wndpl
.showCmd
= showCmd
;
1374 wndpl
.flags
= flags
= 0;
1379 wndpl
.flags
|= WPF_SETMINPOSITION
;
1380 wndpl
.ptMinPosition
= *pt
;
1384 flags
|= PLACE_RECT
;
1385 wndpl
.rcNormalPosition
= *rect
;
1387 WINPOS_SetPlacement( hwnd
, &wndpl
, flags
);
1391 /*******************************************************************
1392 * can_activate_window
1394 * Check if we can activate the specified window.
1396 static BOOL
can_activate_window( HWND hwnd
)
1400 if (!hwnd
) return FALSE
;
1401 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1402 if (!(style
& WS_VISIBLE
)) return FALSE
;
1403 if ((style
& (WS_POPUP
|WS_CHILD
)) == WS_CHILD
) return FALSE
;
1404 return !(style
& WS_DISABLED
);
1408 /*******************************************************************
1409 * WINPOS_ActivateOtherWindow
1411 * Activates window other than pWnd.
1413 void WINPOS_ActivateOtherWindow(HWND hwnd
)
1417 if ((GetWindowLongW( hwnd
, GWL_STYLE
) & WS_POPUP
) && (hwndTo
= GetWindow( hwnd
, GW_OWNER
)))
1419 hwndTo
= GetAncestor( hwndTo
, GA_ROOT
);
1420 if (can_activate_window( hwndTo
)) goto done
;
1426 if (!(hwndTo
= GetWindow( hwndTo
, GW_HWNDNEXT
))) break;
1427 if (can_activate_window( hwndTo
)) break;
1431 fg
= GetForegroundWindow();
1432 TRACE("win = %p fg = %p\n", hwndTo
, fg
);
1433 if (!fg
|| (hwnd
== fg
))
1435 if (SetForegroundWindow( hwndTo
)) return;
1437 if (!SetActiveWindow( hwndTo
)) SetActiveWindow(0);
1441 /***********************************************************************
1442 * WINPOS_HandleWindowPosChanging
1444 * Default handling for a WM_WINDOWPOSCHANGING. Called from DefWindowProc().
1446 LONG
WINPOS_HandleWindowPosChanging( HWND hwnd
, WINDOWPOS
*winpos
)
1448 POINT minTrack
, maxTrack
;
1449 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1451 if (winpos
->flags
& SWP_NOSIZE
) return 0;
1452 if ((style
& WS_THICKFRAME
) || ((style
& (WS_POPUP
| WS_CHILD
)) == 0))
1454 WINPOS_GetMinMaxInfo( hwnd
, NULL
, NULL
, &minTrack
, &maxTrack
);
1455 if (winpos
->cx
> maxTrack
.x
) winpos
->cx
= maxTrack
.x
;
1456 if (winpos
->cy
> maxTrack
.y
) winpos
->cy
= maxTrack
.y
;
1457 if (!(style
& WS_MINIMIZE
))
1459 if (winpos
->cx
< minTrack
.x
) winpos
->cx
= minTrack
.x
;
1460 if (winpos
->cy
< minTrack
.y
) winpos
->cy
= minTrack
.y
;
1467 /***********************************************************************
1470 static void dump_winpos_flags(UINT flags
)
1472 static const DWORD dumped_flags
= (SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOREDRAW
|
1473 SWP_NOACTIVATE
| SWP_FRAMECHANGED
| SWP_SHOWWINDOW
|
1474 SWP_HIDEWINDOW
| SWP_NOCOPYBITS
| SWP_NOOWNERZORDER
|
1475 SWP_NOSENDCHANGING
| SWP_DEFERERASE
| SWP_ASYNCWINDOWPOS
|
1476 SWP_NOCLIENTSIZE
| SWP_NOCLIENTMOVE
| SWP_STATECHANGED
);
1478 if(flags
& SWP_NOSIZE
) TRACE(" SWP_NOSIZE");
1479 if(flags
& SWP_NOMOVE
) TRACE(" SWP_NOMOVE");
1480 if(flags
& SWP_NOZORDER
) TRACE(" SWP_NOZORDER");
1481 if(flags
& SWP_NOREDRAW
) TRACE(" SWP_NOREDRAW");
1482 if(flags
& SWP_NOACTIVATE
) TRACE(" SWP_NOACTIVATE");
1483 if(flags
& SWP_FRAMECHANGED
) TRACE(" SWP_FRAMECHANGED");
1484 if(flags
& SWP_SHOWWINDOW
) TRACE(" SWP_SHOWWINDOW");
1485 if(flags
& SWP_HIDEWINDOW
) TRACE(" SWP_HIDEWINDOW");
1486 if(flags
& SWP_NOCOPYBITS
) TRACE(" SWP_NOCOPYBITS");
1487 if(flags
& SWP_NOOWNERZORDER
) TRACE(" SWP_NOOWNERZORDER");
1488 if(flags
& SWP_NOSENDCHANGING
) TRACE(" SWP_NOSENDCHANGING");
1489 if(flags
& SWP_DEFERERASE
) TRACE(" SWP_DEFERERASE");
1490 if(flags
& SWP_ASYNCWINDOWPOS
) TRACE(" SWP_ASYNCWINDOWPOS");
1491 if(flags
& SWP_NOCLIENTSIZE
) TRACE(" SWP_NOCLIENTSIZE");
1492 if(flags
& SWP_NOCLIENTMOVE
) TRACE(" SWP_NOCLIENTMOVE");
1493 if(flags
& SWP_STATECHANGED
) TRACE(" SWP_STATECHANGED");
1495 if(flags
& ~dumped_flags
) TRACE(" %08x", flags
& ~dumped_flags
);
1499 /***********************************************************************
1500 * SWP_DoWinPosChanging
1502 static BOOL
SWP_DoWinPosChanging( WINDOWPOS
* pWinpos
, RECT
* pNewWindowRect
, RECT
* pNewClientRect
)
1506 /* Send WM_WINDOWPOSCHANGING message */
1508 if (!(pWinpos
->flags
& SWP_NOSENDCHANGING
))
1509 SendMessageW( pWinpos
->hwnd
, WM_WINDOWPOSCHANGING
, 0, (LPARAM
)pWinpos
);
1511 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) ||
1512 wndPtr
== WND_OTHER_PROCESS
|| wndPtr
== WND_DESKTOP
) return FALSE
;
1514 /* Calculate new position and size */
1516 *pNewWindowRect
= wndPtr
->rectWindow
;
1517 *pNewClientRect
= (wndPtr
->dwStyle
& WS_MINIMIZE
) ? wndPtr
->rectWindow
1518 : wndPtr
->rectClient
;
1520 if (!(pWinpos
->flags
& SWP_NOSIZE
))
1522 pNewWindowRect
->right
= pNewWindowRect
->left
+ pWinpos
->cx
;
1523 pNewWindowRect
->bottom
= pNewWindowRect
->top
+ pWinpos
->cy
;
1525 if (!(pWinpos
->flags
& SWP_NOMOVE
))
1527 pNewWindowRect
->left
= pWinpos
->x
;
1528 pNewWindowRect
->top
= pWinpos
->y
;
1529 pNewWindowRect
->right
+= pWinpos
->x
- wndPtr
->rectWindow
.left
;
1530 pNewWindowRect
->bottom
+= pWinpos
->y
- wndPtr
->rectWindow
.top
;
1532 OffsetRect( pNewClientRect
, pWinpos
->x
- wndPtr
->rectWindow
.left
,
1533 pWinpos
->y
- wndPtr
->rectWindow
.top
);
1535 pWinpos
->flags
|= SWP_NOCLIENTMOVE
| SWP_NOCLIENTSIZE
;
1537 TRACE( "hwnd %p, after %p, swp %d,%d %dx%d flags %08x\n",
1538 pWinpos
->hwnd
, pWinpos
->hwndInsertAfter
, pWinpos
->x
, pWinpos
->y
,
1539 pWinpos
->cx
, pWinpos
->cy
, pWinpos
->flags
);
1540 TRACE( "current %s style %08x new %s\n",
1541 wine_dbgstr_rect( &wndPtr
->rectWindow
), wndPtr
->dwStyle
,
1542 wine_dbgstr_rect( pNewWindowRect
));
1544 WIN_ReleasePtr( wndPtr
);
1548 /***********************************************************************
1551 * Compute the valid rects from the old and new client rect and WVR_* flags.
1552 * Helper for WM_NCCALCSIZE handling.
1554 static inline void get_valid_rects( const RECT
*old_client
, const RECT
*new_client
, UINT flags
,
1559 if (flags
& WVR_REDRAW
)
1561 SetRectEmpty( &valid
[0] );
1562 SetRectEmpty( &valid
[1] );
1566 if (flags
& WVR_VALIDRECTS
)
1568 if (!IntersectRect( &valid
[0], &valid
[0], new_client
) ||
1569 !IntersectRect( &valid
[1], &valid
[1], old_client
))
1571 SetRectEmpty( &valid
[0] );
1572 SetRectEmpty( &valid
[1] );
1575 flags
= WVR_ALIGNLEFT
| WVR_ALIGNTOP
;
1579 valid
[0] = *new_client
;
1580 valid
[1] = *old_client
;
1583 /* make sure the rectangles have the same size */
1584 cx
= min( valid
[0].right
- valid
[0].left
, valid
[1].right
- valid
[1].left
);
1585 cy
= min( valid
[0].bottom
- valid
[0].top
, valid
[1].bottom
- valid
[1].top
);
1587 if (flags
& WVR_ALIGNBOTTOM
)
1589 valid
[0].top
= valid
[0].bottom
- cy
;
1590 valid
[1].top
= valid
[1].bottom
- cy
;
1594 valid
[0].bottom
= valid
[0].top
+ cy
;
1595 valid
[1].bottom
= valid
[1].top
+ cy
;
1597 if (flags
& WVR_ALIGNRIGHT
)
1599 valid
[0].left
= valid
[0].right
- cx
;
1600 valid
[1].left
= valid
[1].right
- cx
;
1604 valid
[0].right
= valid
[0].left
+ cx
;
1605 valid
[1].right
= valid
[1].left
+ cx
;
1610 /***********************************************************************
1613 * fix Z order taking into account owned popups -
1614 * basically we need to maintain them above the window that owns them
1616 * FIXME: hide/show owned popups when owner visibility changes.
1618 static HWND
SWP_DoOwnedPopups(HWND hwnd
, HWND hwndInsertAfter
)
1620 HWND owner
, *list
= NULL
;
1623 TRACE("(%p) hInsertAfter = %p\n", hwnd
, hwndInsertAfter
);
1625 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
) return hwndInsertAfter
;
1627 if ((owner
= GetWindow( hwnd
, GW_OWNER
)))
1629 /* make sure this popup stays above the owner */
1631 if (hwndInsertAfter
!= HWND_TOPMOST
)
1633 if (!(list
= WIN_ListChildren( GetDesktopWindow() ))) return hwndInsertAfter
;
1635 for (i
= 0; list
[i
]; i
++)
1637 BOOL topmost
= (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TOPMOST
) != 0;
1639 if (list
[i
] == owner
)
1641 if (i
> 0) hwndInsertAfter
= list
[i
-1];
1642 else hwndInsertAfter
= topmost
? HWND_TOPMOST
: HWND_TOP
;
1646 if (hwndInsertAfter
== HWND_TOP
|| hwndInsertAfter
== HWND_NOTOPMOST
)
1648 if (!topmost
) break;
1650 else if (list
[i
] == hwndInsertAfter
) break;
1655 if (hwndInsertAfter
== HWND_BOTTOM
) goto done
;
1656 if (!list
&& !(list
= WIN_ListChildren( GetDesktopWindow() ))) goto done
;
1659 if (hwndInsertAfter
== HWND_TOP
|| hwndInsertAfter
== HWND_NOTOPMOST
)
1661 if (hwndInsertAfter
== HWND_NOTOPMOST
|| !(GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_TOPMOST
))
1663 /* skip all the topmost windows */
1664 while (list
[i
] && (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TOPMOST
)) i
++;
1667 else if (hwndInsertAfter
!= HWND_TOPMOST
)
1669 /* skip windows that are already placed correctly */
1670 for (i
= 0; list
[i
]; i
++)
1672 if (list
[i
] == hwndInsertAfter
) break;
1673 if (list
[i
] == hwnd
) goto done
; /* nothing to do if window is moving backwards in z-order */
1677 for ( ; list
[i
]; i
++)
1679 if (list
[i
] == hwnd
) break;
1680 if (GetWindow( list
[i
], GW_OWNER
) != hwnd
) continue;
1681 TRACE( "moving %p owned by %p after %p\n", list
[i
], hwnd
, hwndInsertAfter
);
1682 SetWindowPos( list
[i
], hwndInsertAfter
, 0, 0, 0, 0,
1683 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
| SWP_NOSENDCHANGING
| SWP_DEFERERASE
);
1684 hwndInsertAfter
= list
[i
];
1688 HeapFree( GetProcessHeap(), 0, list
);
1689 return hwndInsertAfter
;
1692 /***********************************************************************
1695 static UINT
SWP_DoNCCalcSize( WINDOWPOS
* pWinpos
, const RECT
* pNewWindowRect
, RECT
* pNewClientRect
,
1701 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1703 /* Send WM_NCCALCSIZE message to get new client area */
1704 if( (pWinpos
->flags
& (SWP_FRAMECHANGED
| SWP_NOSIZE
)) != SWP_NOSIZE
)
1706 NCCALCSIZE_PARAMS params
;
1707 WINDOWPOS winposCopy
;
1709 params
.rgrc
[0] = *pNewWindowRect
;
1710 params
.rgrc
[1] = wndPtr
->rectWindow
;
1711 params
.rgrc
[2] = wndPtr
->rectClient
;
1712 params
.lppos
= &winposCopy
;
1713 winposCopy
= *pWinpos
;
1714 WIN_ReleasePtr( wndPtr
);
1716 wvrFlags
= SendMessageW( pWinpos
->hwnd
, WM_NCCALCSIZE
, TRUE
, (LPARAM
)¶ms
);
1718 *pNewClientRect
= params
.rgrc
[0];
1720 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1722 TRACE( "hwnd %p old win %s old client %s new win %s new client %s\n", pWinpos
->hwnd
,
1723 wine_dbgstr_rect(&wndPtr
->rectWindow
), wine_dbgstr_rect(&wndPtr
->rectClient
),
1724 wine_dbgstr_rect(pNewWindowRect
), wine_dbgstr_rect(pNewClientRect
) );
1726 if( pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
1727 pNewClientRect
->top
!= wndPtr
->rectClient
.top
)
1728 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
1730 if( (pNewClientRect
->right
- pNewClientRect
->left
!=
1731 wndPtr
->rectClient
.right
- wndPtr
->rectClient
.left
))
1732 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
1734 wvrFlags
&= ~WVR_HREDRAW
;
1736 if (pNewClientRect
->bottom
- pNewClientRect
->top
!=
1737 wndPtr
->rectClient
.bottom
- wndPtr
->rectClient
.top
)
1738 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
1740 wvrFlags
&= ~WVR_VREDRAW
;
1742 validRects
[0] = params
.rgrc
[1];
1743 validRects
[1] = params
.rgrc
[2];
1747 if (!(pWinpos
->flags
& SWP_NOMOVE
) &&
1748 (pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
1749 pNewClientRect
->top
!= wndPtr
->rectClient
.top
))
1750 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
1753 if (pWinpos
->flags
& (SWP_NOCOPYBITS
| SWP_NOREDRAW
| SWP_SHOWWINDOW
| SWP_HIDEWINDOW
))
1755 SetRectEmpty( &validRects
[0] );
1756 SetRectEmpty( &validRects
[1] );
1758 else get_valid_rects( &wndPtr
->rectClient
, pNewClientRect
, wvrFlags
, validRects
);
1760 WIN_ReleasePtr( wndPtr
);
1764 /* fix redundant flags and values in the WINDOWPOS structure */
1765 static BOOL
fixup_flags( WINDOWPOS
*winpos
)
1768 WND
*wndPtr
= WIN_GetPtr( winpos
->hwnd
);
1771 if (!wndPtr
|| wndPtr
== WND_OTHER_PROCESS
)
1773 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1776 winpos
->hwnd
= wndPtr
->obj
.handle
; /* make it a full handle */
1778 /* Finally make sure that all coordinates are valid */
1779 if (winpos
->x
< -32768) winpos
->x
= -32768;
1780 else if (winpos
->x
> 32767) winpos
->x
= 32767;
1781 if (winpos
->y
< -32768) winpos
->y
= -32768;
1782 else if (winpos
->y
> 32767) winpos
->y
= 32767;
1784 if (winpos
->cx
< 0) winpos
->cx
= 0;
1785 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
1786 if (winpos
->cy
< 0) winpos
->cy
= 0;
1787 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
1789 parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
1790 if (!IsWindowVisible( parent
)) winpos
->flags
|= SWP_NOREDRAW
;
1792 if (wndPtr
->dwStyle
& WS_VISIBLE
) winpos
->flags
&= ~SWP_SHOWWINDOW
;
1795 winpos
->flags
&= ~SWP_HIDEWINDOW
;
1796 if (!(winpos
->flags
& SWP_SHOWWINDOW
)) winpos
->flags
|= SWP_NOREDRAW
;
1799 if ((wndPtr
->rectWindow
.right
- wndPtr
->rectWindow
.left
== winpos
->cx
) &&
1800 (wndPtr
->rectWindow
.bottom
- wndPtr
->rectWindow
.top
== winpos
->cy
))
1801 winpos
->flags
|= SWP_NOSIZE
; /* Already the right size */
1803 if ((wndPtr
->rectWindow
.left
== winpos
->x
) && (wndPtr
->rectWindow
.top
== winpos
->y
))
1804 winpos
->flags
|= SWP_NOMOVE
; /* Already the right position */
1806 if ((wndPtr
->dwStyle
& (WS_POPUP
| WS_CHILD
)) != WS_CHILD
)
1808 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)) && /* Bring to the top when activating */
1809 (winpos
->flags
& SWP_NOZORDER
||
1810 (winpos
->hwndInsertAfter
!= HWND_TOPMOST
&& winpos
->hwndInsertAfter
!= HWND_NOTOPMOST
)))
1812 winpos
->flags
&= ~SWP_NOZORDER
;
1813 winpos
->hwndInsertAfter
= HWND_TOP
;
1817 /* Check hwndInsertAfter */
1818 if (winpos
->flags
& SWP_NOZORDER
) goto done
;
1820 /* fix sign extension */
1821 if (winpos
->hwndInsertAfter
== (HWND
)0xffff) winpos
->hwndInsertAfter
= HWND_TOPMOST
;
1822 else if (winpos
->hwndInsertAfter
== (HWND
)0xfffe) winpos
->hwndInsertAfter
= HWND_NOTOPMOST
;
1824 /* hwndInsertAfter must be a sibling of the window */
1825 if (winpos
->hwndInsertAfter
== HWND_TOP
)
1827 if (GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
1828 winpos
->flags
|= SWP_NOZORDER
;
1830 else if (winpos
->hwndInsertAfter
== HWND_BOTTOM
)
1832 if (!(wndPtr
->dwExStyle
& WS_EX_TOPMOST
) && GetWindow(winpos
->hwnd
, GW_HWNDLAST
) == winpos
->hwnd
)
1833 winpos
->flags
|= SWP_NOZORDER
;
1835 else if (winpos
->hwndInsertAfter
== HWND_TOPMOST
)
1837 if ((wndPtr
->dwExStyle
& WS_EX_TOPMOST
) && GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
1838 winpos
->flags
|= SWP_NOZORDER
;
1840 else if (winpos
->hwndInsertAfter
== HWND_NOTOPMOST
)
1842 if (!(wndPtr
->dwExStyle
& WS_EX_TOPMOST
))
1843 winpos
->flags
|= SWP_NOZORDER
;
1847 if (GetAncestor( winpos
->hwndInsertAfter
, GA_PARENT
) != parent
) ret
= FALSE
;
1850 /* don't need to change the Zorder of hwnd if it's already inserted
1851 * after hwndInsertAfter or when inserting hwnd after itself.
1853 if ((winpos
->hwnd
== winpos
->hwndInsertAfter
) ||
1854 (winpos
->hwnd
== GetWindow( winpos
->hwndInsertAfter
, GW_HWNDNEXT
)))
1855 winpos
->flags
|= SWP_NOZORDER
;
1859 WIN_ReleasePtr( wndPtr
);
1864 /***********************************************************************
1867 * Backend implementation of SetWindowPos.
1869 BOOL
set_window_pos( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
1870 const RECT
*window_rect
, const RECT
*client_rect
, const RECT
*valid_rects
)
1874 RECT visible_rect
, old_window_rect
;
1876 visible_rect
= *window_rect
;
1877 USER_Driver
->pWindowPosChanging( hwnd
, insert_after
, swp_flags
,
1878 window_rect
, client_rect
, &visible_rect
);
1880 if (!(win
= WIN_GetPtr( hwnd
))) return FALSE
;
1881 if (win
== WND_DESKTOP
|| win
== WND_OTHER_PROCESS
) return FALSE
;
1883 old_window_rect
= win
->rectWindow
;
1884 SERVER_START_REQ( set_window_pos
)
1886 req
->handle
= wine_server_user_handle( hwnd
);
1887 req
->previous
= wine_server_user_handle( insert_after
);
1888 req
->flags
= swp_flags
;
1889 req
->window
.left
= window_rect
->left
;
1890 req
->window
.top
= window_rect
->top
;
1891 req
->window
.right
= window_rect
->right
;
1892 req
->window
.bottom
= window_rect
->bottom
;
1893 req
->client
.left
= client_rect
->left
;
1894 req
->client
.top
= client_rect
->top
;
1895 req
->client
.right
= client_rect
->right
;
1896 req
->client
.bottom
= client_rect
->bottom
;
1897 if (memcmp( window_rect
, &visible_rect
, sizeof(RECT
) ) || !IsRectEmpty( &valid_rects
[0] ))
1899 wine_server_add_data( req
, &visible_rect
, sizeof(visible_rect
) );
1900 if (!IsRectEmpty( &valid_rects
[0] ))
1901 wine_server_add_data( req
, valid_rects
, 2 * sizeof(*valid_rects
) );
1903 if ((ret
= !wine_server_call( req
)))
1905 win
->dwStyle
= reply
->new_style
;
1906 win
->dwExStyle
= reply
->new_ex_style
;
1907 win
->rectWindow
= *window_rect
;
1908 win
->rectClient
= *client_rect
;
1912 WIN_ReleasePtr( win
);
1916 if (((swp_flags
& SWP_AGG_NOPOSCHANGE
) != SWP_AGG_NOPOSCHANGE
) ||
1917 (swp_flags
& (SWP_HIDEWINDOW
| SWP_SHOWWINDOW
| SWP_STATECHANGED
)))
1918 invalidate_dce( hwnd
, &old_window_rect
);
1920 USER_Driver
->pWindowPosChanged( hwnd
, insert_after
, swp_flags
, window_rect
,
1921 client_rect
, &visible_rect
, valid_rects
);
1927 /***********************************************************************
1930 * User32 internal function
1932 BOOL
USER_SetWindowPos( WINDOWPOS
* winpos
)
1934 RECT newWindowRect
, newClientRect
, valid_rects
[2];
1937 orig_flags
= winpos
->flags
;
1939 /* First make sure that coordinates are valid for WM_WINDOWPOSCHANGING */
1940 if (!(winpos
->flags
& SWP_NOMOVE
))
1942 if (winpos
->x
< -32768) winpos
->x
= -32768;
1943 else if (winpos
->x
> 32767) winpos
->x
= 32767;
1944 if (winpos
->y
< -32768) winpos
->y
= -32768;
1945 else if (winpos
->y
> 32767) winpos
->y
= 32767;
1947 if (!(winpos
->flags
& SWP_NOSIZE
))
1949 if (winpos
->cx
< 0) winpos
->cx
= 0;
1950 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
1951 if (winpos
->cy
< 0) winpos
->cy
= 0;
1952 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
1955 if (!SWP_DoWinPosChanging( winpos
, &newWindowRect
, &newClientRect
)) return FALSE
;
1957 /* Fix redundant flags */
1958 if (!fixup_flags( winpos
)) return FALSE
;
1960 if((winpos
->flags
& (SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_SHOWWINDOW
)) != SWP_NOZORDER
)
1962 if (GetAncestor( winpos
->hwnd
, GA_PARENT
) == GetDesktopWindow())
1963 winpos
->hwndInsertAfter
= SWP_DoOwnedPopups( winpos
->hwnd
, winpos
->hwndInsertAfter
);
1966 /* Common operations */
1968 SWP_DoNCCalcSize( winpos
, &newWindowRect
, &newClientRect
, valid_rects
);
1970 if (!set_window_pos( winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->flags
,
1971 &newWindowRect
, &newClientRect
, valid_rects
))
1974 /* erase parent when hiding or resizing child */
1975 if (!(orig_flags
& SWP_DEFERERASE
) &&
1976 ((orig_flags
& SWP_HIDEWINDOW
) ||
1977 (!(orig_flags
& SWP_SHOWWINDOW
) &&
1978 (winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOGEOMETRYCHANGE
)))
1980 HWND parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
1981 if (!parent
|| parent
== GetDesktopWindow()) parent
= winpos
->hwnd
;
1982 erase_now( parent
, 0 );
1985 if( winpos
->flags
& SWP_HIDEWINDOW
)
1986 HideCaret(winpos
->hwnd
);
1987 else if (winpos
->flags
& SWP_SHOWWINDOW
)
1988 ShowCaret(winpos
->hwnd
);
1990 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)))
1992 /* child windows get WM_CHILDACTIVATE message */
1993 if ((GetWindowLongW( winpos
->hwnd
, GWL_STYLE
) & (WS_CHILD
| WS_POPUP
)) == WS_CHILD
)
1994 SendMessageW( winpos
->hwnd
, WM_CHILDACTIVATE
, 0, 0 );
1996 SetForegroundWindow( winpos
->hwnd
);
1999 /* And last, send the WM_WINDOWPOSCHANGED message */
2001 TRACE("\tstatus flags = %04x\n", winpos
->flags
& SWP_AGG_STATUSFLAGS
);
2003 if (((winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOPOSCHANGE
))
2005 /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
2006 and always contains final window position.
2008 winpos
->x
= newWindowRect
.left
;
2009 winpos
->y
= newWindowRect
.top
;
2010 winpos
->cx
= newWindowRect
.right
- newWindowRect
.left
;
2011 winpos
->cy
= newWindowRect
.bottom
- newWindowRect
.top
;
2012 SendMessageW( winpos
->hwnd
, WM_WINDOWPOSCHANGED
, 0, (LPARAM
)winpos
);
2017 /***********************************************************************
2018 * SetWindowPos (USER32.@)
2020 BOOL WINAPI
SetWindowPos( HWND hwnd
, HWND hwndInsertAfter
,
2021 INT x
, INT y
, INT cx
, INT cy
, UINT flags
)
2025 TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2026 hwnd
, hwndInsertAfter
, x
, y
, cx
, cy
, flags
);
2027 if(TRACE_ON(win
)) dump_winpos_flags(flags
);
2029 if (is_broadcast(hwnd
))
2031 SetLastError( ERROR_INVALID_PARAMETER
);
2035 winpos
.hwnd
= WIN_GetFullHandle(hwnd
);
2036 winpos
.hwndInsertAfter
= WIN_GetFullHandle(hwndInsertAfter
);
2041 winpos
.flags
= flags
;
2043 if (WIN_IsCurrentThread( hwnd
))
2044 return USER_SetWindowPos(&winpos
);
2046 return SendMessageW( winpos
.hwnd
, WM_WINE_SETWINDOWPOS
, 0, (LPARAM
)&winpos
);
2050 /***********************************************************************
2051 * BeginDeferWindowPos (USER32.@)
2053 HDWP WINAPI
BeginDeferWindowPos( INT count
)
2058 TRACE("%d\n", count
);
2062 SetLastError(ERROR_INVALID_PARAMETER
);
2065 /* Windows allows zero count, in which case it allocates context for 8 moves */
2066 if (count
== 0) count
= 8;
2068 if (!(pDWP
= HeapAlloc( GetProcessHeap(), 0, sizeof(DWP
)))) return 0;
2070 pDWP
->actualCount
= 0;
2071 pDWP
->suggestedCount
= count
;
2072 pDWP
->hwndParent
= 0;
2074 if (!(pDWP
->winPos
= HeapAlloc( GetProcessHeap(), 0, count
* sizeof(WINDOWPOS
) )) ||
2075 !(handle
= alloc_user_handle( &pDWP
->obj
, USER_DWP
)))
2077 HeapFree( GetProcessHeap(), 0, pDWP
->winPos
);
2078 HeapFree( GetProcessHeap(), 0, pDWP
);
2081 TRACE("returning hdwp %p\n", handle
);
2086 /***********************************************************************
2087 * DeferWindowPos (USER32.@)
2089 HDWP WINAPI
DeferWindowPos( HDWP hdwp
, HWND hwnd
, HWND hwndAfter
,
2090 INT x
, INT y
, INT cx
, INT cy
,
2095 HDWP retvalue
= hdwp
;
2097 TRACE("hdwp %p, hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2098 hdwp
, hwnd
, hwndAfter
, x
, y
, cx
, cy
, flags
);
2100 hwnd
= WIN_GetFullHandle( hwnd
);
2101 if (is_desktop_window( hwnd
)) return 0;
2103 if (!(pDWP
= get_user_handle_ptr( hdwp
, USER_DWP
))) return 0;
2104 if (pDWP
== OBJ_OTHER_PROCESS
)
2106 FIXME( "other process handle %p?\n", hdwp
);
2110 for (i
= 0; i
< pDWP
->actualCount
; i
++)
2112 if (pDWP
->winPos
[i
].hwnd
== hwnd
)
2114 /* Merge with the other changes */
2115 if (!(flags
& SWP_NOZORDER
))
2117 pDWP
->winPos
[i
].hwndInsertAfter
= WIN_GetFullHandle(hwndAfter
);
2119 if (!(flags
& SWP_NOMOVE
))
2121 pDWP
->winPos
[i
].x
= x
;
2122 pDWP
->winPos
[i
].y
= y
;
2124 if (!(flags
& SWP_NOSIZE
))
2126 pDWP
->winPos
[i
].cx
= cx
;
2127 pDWP
->winPos
[i
].cy
= cy
;
2129 pDWP
->winPos
[i
].flags
&= flags
| ~(SWP_NOSIZE
| SWP_NOMOVE
|
2130 SWP_NOZORDER
| SWP_NOREDRAW
|
2131 SWP_NOACTIVATE
| SWP_NOCOPYBITS
|
2133 pDWP
->winPos
[i
].flags
|= flags
& (SWP_SHOWWINDOW
| SWP_HIDEWINDOW
|
2138 if (pDWP
->actualCount
>= pDWP
->suggestedCount
)
2140 WINDOWPOS
*newpos
= HeapReAlloc( GetProcessHeap(), 0, pDWP
->winPos
,
2141 pDWP
->suggestedCount
* 2 * sizeof(WINDOWPOS
) );
2147 pDWP
->suggestedCount
*= 2;
2148 pDWP
->winPos
= newpos
;
2150 pDWP
->winPos
[pDWP
->actualCount
].hwnd
= hwnd
;
2151 pDWP
->winPos
[pDWP
->actualCount
].hwndInsertAfter
= hwndAfter
;
2152 pDWP
->winPos
[pDWP
->actualCount
].x
= x
;
2153 pDWP
->winPos
[pDWP
->actualCount
].y
= y
;
2154 pDWP
->winPos
[pDWP
->actualCount
].cx
= cx
;
2155 pDWP
->winPos
[pDWP
->actualCount
].cy
= cy
;
2156 pDWP
->winPos
[pDWP
->actualCount
].flags
= flags
;
2157 pDWP
->actualCount
++;
2159 release_user_handle_ptr( pDWP
);
2164 /***********************************************************************
2165 * EndDeferWindowPos (USER32.@)
2167 BOOL WINAPI
EndDeferWindowPos( HDWP hdwp
)
2174 TRACE("%p\n", hdwp
);
2176 if (!(pDWP
= free_user_handle( hdwp
, USER_DWP
))) return FALSE
;
2177 if (pDWP
== OBJ_OTHER_PROCESS
)
2179 FIXME( "other process handle %p?\n", hdwp
);
2183 for (i
= 0, winpos
= pDWP
->winPos
; res
&& i
< pDWP
->actualCount
; i
++, winpos
++)
2185 TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2186 winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->x
, winpos
->y
,
2187 winpos
->cx
, winpos
->cy
, winpos
->flags
);
2189 if (WIN_IsCurrentThread( winpos
->hwnd
))
2190 res
= USER_SetWindowPos( winpos
);
2192 res
= SendMessageW( winpos
->hwnd
, WM_WINE_SETWINDOWPOS
, 0, (LPARAM
)winpos
);
2194 HeapFree( GetProcessHeap(), 0, pDWP
->winPos
);
2195 HeapFree( GetProcessHeap(), 0, pDWP
);
2200 /***********************************************************************
2201 * ArrangeIconicWindows (USER32.@)
2203 UINT WINAPI
ArrangeIconicWindows( HWND parent
)
2207 INT x
, y
, xspacing
, yspacing
;
2209 GetClientRect( parent
, &rectParent
);
2210 x
= rectParent
.left
;
2211 y
= rectParent
.bottom
;
2212 xspacing
= GetSystemMetrics(SM_CXICONSPACING
);
2213 yspacing
= GetSystemMetrics(SM_CYICONSPACING
);
2215 hwndChild
= GetWindow( parent
, GW_CHILD
);
2218 if( IsIconic( hwndChild
) )
2220 WINPOS_ShowIconTitle( hwndChild
, FALSE
);
2222 SetWindowPos( hwndChild
, 0, x
+ (xspacing
- GetSystemMetrics(SM_CXICON
)) / 2,
2223 y
- yspacing
- GetSystemMetrics(SM_CYICON
)/2, 0, 0,
2224 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
2225 if( IsWindow(hwndChild
) )
2226 WINPOS_ShowIconTitle(hwndChild
, TRUE
);
2228 if (x
<= rectParent
.right
- xspacing
) x
+= xspacing
;
2231 x
= rectParent
.left
;
2235 hwndChild
= GetWindow( hwndChild
, GW_HWNDNEXT
);
2241 /***********************************************************************
2244 * Draw the frame used when moving or resizing window.
2246 static void draw_moving_frame( HDC hdc
, RECT
*rect
, BOOL thickframe
)
2250 const int width
= GetSystemMetrics(SM_CXFRAME
);
2251 const int height
= GetSystemMetrics(SM_CYFRAME
);
2253 HBRUSH hbrush
= SelectObject( hdc
, GetStockObject( GRAY_BRUSH
) );
2254 PatBlt( hdc
, rect
->left
, rect
->top
,
2255 rect
->right
- rect
->left
- width
, height
, PATINVERT
);
2256 PatBlt( hdc
, rect
->left
, rect
->top
+ height
, width
,
2257 rect
->bottom
- rect
->top
- height
, PATINVERT
);
2258 PatBlt( hdc
, rect
->left
+ width
, rect
->bottom
- 1,
2259 rect
->right
- rect
->left
- width
, -height
, PATINVERT
);
2260 PatBlt( hdc
, rect
->right
- 1, rect
->top
, -width
,
2261 rect
->bottom
- rect
->top
- height
, PATINVERT
);
2262 SelectObject( hdc
, hbrush
);
2264 else DrawFocusRect( hdc
, rect
);
2268 /***********************************************************************
2271 * Initialization of a move or resize, when initiated from a menu choice.
2272 * Return hit test code for caption or sizing border.
2274 static LONG
start_size_move( HWND hwnd
, WPARAM wParam
, POINT
*capturePoint
, LONG style
)
2281 GetWindowRect( hwnd
, &rectWindow
);
2283 if ((wParam
& 0xfff0) == SC_MOVE
)
2285 /* Move pointer at the center of the caption */
2286 RECT rect
= rectWindow
;
2287 /* Note: to be exactly centered we should take the different types
2288 * of border into account, but it shouldn't make more than a few pixels
2289 * of difference so let's not bother with that */
2290 rect
.top
+= GetSystemMetrics(SM_CYBORDER
);
2291 if (style
& WS_SYSMENU
)
2292 rect
.left
+= GetSystemMetrics(SM_CXSIZE
) + 1;
2293 if (style
& WS_MINIMIZEBOX
)
2294 rect
.right
-= GetSystemMetrics(SM_CXSIZE
) + 1;
2295 if (style
& WS_MAXIMIZEBOX
)
2296 rect
.right
-= GetSystemMetrics(SM_CXSIZE
) + 1;
2297 pt
.x
= (rect
.right
+ rect
.left
) / 2;
2298 pt
.y
= rect
.top
+ GetSystemMetrics(SM_CYSIZE
)/2;
2299 hittest
= HTCAPTION
;
2304 SetCursor( LoadCursorW( 0, (LPWSTR
)IDC_SIZEALL
) );
2308 if (!GetMessageW( &msg
, 0, 0, 0 )) return 0;
2309 if (CallMsgFilterW( &msg
, MSGF_SIZE
)) continue;
2314 pt
.x
= min( max( msg
.pt
.x
, rectWindow
.left
), rectWindow
.right
- 1 );
2315 pt
.y
= min( max( msg
.pt
.y
, rectWindow
.top
), rectWindow
.bottom
- 1 );
2316 hittest
= SendMessageW( hwnd
, WM_NCHITTEST
, 0, MAKELONG( pt
.x
, pt
.y
) );
2317 if ((hittest
< HTLEFT
) || (hittest
> HTBOTTOMRIGHT
)) hittest
= 0;
2328 pt
.x
=(rectWindow
.left
+rectWindow
.right
)/2;
2329 pt
.y
= rectWindow
.top
+ GetSystemMetrics(SM_CYFRAME
) / 2;
2333 pt
.x
=(rectWindow
.left
+rectWindow
.right
)/2;
2334 pt
.y
= rectWindow
.bottom
- GetSystemMetrics(SM_CYFRAME
) / 2;
2338 pt
.x
= rectWindow
.left
+ GetSystemMetrics(SM_CXFRAME
) / 2;
2339 pt
.y
=(rectWindow
.top
+rectWindow
.bottom
)/2;
2343 pt
.x
= rectWindow
.right
- GetSystemMetrics(SM_CXFRAME
) / 2;
2344 pt
.y
=(rectWindow
.top
+rectWindow
.bottom
)/2;
2352 TranslateMessage( &msg
);
2353 DispatchMessageW( &msg
);
2359 SetCursorPos( pt
.x
, pt
.y
);
2360 SendMessageW( hwnd
, WM_SETCURSOR
, (WPARAM
)hwnd
, MAKELONG( hittest
, WM_MOUSEMOVE
));
2365 /***********************************************************************
2366 * WINPOS_SysCommandSizeMove
2368 * Perform SC_MOVE and SC_SIZE commands.
2370 void WINPOS_SysCommandSizeMove( HWND hwnd
, WPARAM wParam
)
2373 RECT sizingRect
, mouseRect
, origRect
;
2376 LONG hittest
= (LONG
)(wParam
& 0x0f);
2377 WPARAM syscommand
= wParam
& 0xfff0;
2378 HCURSOR hDragCursor
= 0, hOldCursor
= 0;
2379 POINT minTrack
, maxTrack
;
2380 POINT capturePoint
, pt
;
2381 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2382 BOOL thickframe
= HAS_THICKFRAME( style
);
2383 BOOL iconic
= style
& WS_MINIMIZE
;
2385 DWORD dwPoint
= GetMessagePos ();
2386 BOOL DragFullWindows
= TRUE
;
2388 if (IsZoomed(hwnd
) || !IsWindowVisible(hwnd
)) return;
2390 pt
.x
= (short)LOWORD(dwPoint
);
2391 pt
.y
= (short)HIWORD(dwPoint
);
2394 TRACE("hwnd %p command %04lx, hittest %d, pos %d,%d\n",
2395 hwnd
, syscommand
, hittest
, pt
.x
, pt
.y
);
2397 if (syscommand
== SC_MOVE
)
2399 if (!hittest
) hittest
= start_size_move( hwnd
, wParam
, &capturePoint
, style
);
2400 if (!hittest
) return;
2404 if ( hittest
&& (syscommand
!= SC_MOUSEMENU
) )
2405 hittest
+= (HTLEFT
- WMSZ_LEFT
);
2408 set_capture_window( hwnd
, GUI_INMOVESIZE
, NULL
);
2409 hittest
= start_size_move( hwnd
, wParam
, &capturePoint
, style
);
2412 set_capture_window( 0, GUI_INMOVESIZE
, NULL
);
2418 /* Get min/max info */
2420 WINPOS_GetMinMaxInfo( hwnd
, NULL
, NULL
, &minTrack
, &maxTrack
);
2421 GetWindowRect( hwnd
, &sizingRect
);
2422 if (style
& WS_CHILD
)
2424 parent
= GetParent(hwnd
);
2425 /* make sizing rect relative to parent */
2426 MapWindowPoints( 0, parent
, (POINT
*)&sizingRect
, 2 );
2427 GetClientRect( parent
, &mouseRect
);
2432 GetClientRect( GetDesktopWindow(), &mouseRect
);
2433 mouseRect
.left
= GetSystemMetrics( SM_XVIRTUALSCREEN
);
2434 mouseRect
.top
= GetSystemMetrics( SM_YVIRTUALSCREEN
);
2435 mouseRect
.right
= mouseRect
.left
+ GetSystemMetrics( SM_CXVIRTUALSCREEN
);
2436 mouseRect
.bottom
= mouseRect
.top
+ GetSystemMetrics( SM_CYVIRTUALSCREEN
);
2438 origRect
= sizingRect
;
2440 if (ON_LEFT_BORDER(hittest
))
2442 mouseRect
.left
= max( mouseRect
.left
, sizingRect
.right
-maxTrack
.x
);
2443 mouseRect
.right
= min( mouseRect
.right
, sizingRect
.right
-minTrack
.x
);
2445 else if (ON_RIGHT_BORDER(hittest
))
2447 mouseRect
.left
= max( mouseRect
.left
, sizingRect
.left
+minTrack
.x
);
2448 mouseRect
.right
= min( mouseRect
.right
, sizingRect
.left
+maxTrack
.x
);
2450 if (ON_TOP_BORDER(hittest
))
2452 mouseRect
.top
= max( mouseRect
.top
, sizingRect
.bottom
-maxTrack
.y
);
2453 mouseRect
.bottom
= min( mouseRect
.bottom
,sizingRect
.bottom
-minTrack
.y
);
2455 else if (ON_BOTTOM_BORDER(hittest
))
2457 mouseRect
.top
= max( mouseRect
.top
, sizingRect
.top
+minTrack
.y
);
2458 mouseRect
.bottom
= min( mouseRect
.bottom
, sizingRect
.top
+maxTrack
.y
);
2460 if (parent
) MapWindowPoints( parent
, 0, (LPPOINT
)&mouseRect
, 2 );
2462 /* Retrieve a default cache DC (without using the window style) */
2463 hdc
= GetDCEx( parent
, 0, DCX_CACHE
);
2465 if( iconic
) /* create a cursor for dragging */
2467 hDragCursor
= (HCURSOR
)GetClassLongPtrW( hwnd
, GCLP_HICON
);
2468 if( !hDragCursor
) hDragCursor
= (HCURSOR
)SendMessageW( hwnd
, WM_QUERYDRAGICON
, 0, 0L);
2469 if( !hDragCursor
) iconic
= FALSE
;
2472 /* we only allow disabling the full window drag for child windows */
2473 if (parent
) SystemParametersInfoW( SPI_GETDRAGFULLWINDOWS
, 0, &DragFullWindows
, 0 );
2475 /* repaint the window before moving it around */
2476 RedrawWindow( hwnd
, NULL
, 0, RDW_UPDATENOW
| RDW_ALLCHILDREN
);
2478 SendMessageW( hwnd
, WM_ENTERSIZEMOVE
, 0, 0 );
2479 set_capture_window( hwnd
, GUI_INMOVESIZE
, NULL
);
2485 if (!GetMessageW( &msg
, 0, 0, 0 )) break;
2486 if (CallMsgFilterW( &msg
, MSGF_SIZE
)) continue;
2488 /* Exit on button-up, Return, or Esc */
2489 if ((msg
.message
== WM_LBUTTONUP
) ||
2490 ((msg
.message
== WM_KEYDOWN
) &&
2491 ((msg
.wParam
== VK_RETURN
) || (msg
.wParam
== VK_ESCAPE
)))) break;
2493 if ((msg
.message
!= WM_KEYDOWN
) && (msg
.message
!= WM_MOUSEMOVE
))
2495 TranslateMessage( &msg
);
2496 DispatchMessageW( &msg
);
2497 continue; /* We are not interested in other messages */
2502 if (msg
.message
== WM_KEYDOWN
) switch(msg
.wParam
)
2504 case VK_UP
: pt
.y
-= 8; break;
2505 case VK_DOWN
: pt
.y
+= 8; break;
2506 case VK_LEFT
: pt
.x
-= 8; break;
2507 case VK_RIGHT
: pt
.x
+= 8; break;
2510 pt
.x
= max( pt
.x
, mouseRect
.left
);
2511 pt
.x
= min( pt
.x
, mouseRect
.right
);
2512 pt
.y
= max( pt
.y
, mouseRect
.top
);
2513 pt
.y
= min( pt
.y
, mouseRect
.bottom
);
2515 dx
= pt
.x
- capturePoint
.x
;
2516 dy
= pt
.y
- capturePoint
.y
;
2524 if( iconic
) /* ok, no system popup tracking */
2526 hOldCursor
= SetCursor(hDragCursor
);
2528 WINPOS_ShowIconTitle( hwnd
, FALSE
);
2530 else if(!DragFullWindows
)
2531 draw_moving_frame( hdc
, &sizingRect
, thickframe
);
2534 if (msg
.message
== WM_KEYDOWN
) SetCursorPos( pt
.x
, pt
.y
);
2537 RECT newRect
= sizingRect
;
2538 WPARAM wpSizingHit
= 0;
2540 if (hittest
== HTCAPTION
) OffsetRect( &newRect
, dx
, dy
);
2541 if (ON_LEFT_BORDER(hittest
)) newRect
.left
+= dx
;
2542 else if (ON_RIGHT_BORDER(hittest
)) newRect
.right
+= dx
;
2543 if (ON_TOP_BORDER(hittest
)) newRect
.top
+= dy
;
2544 else if (ON_BOTTOM_BORDER(hittest
)) newRect
.bottom
+= dy
;
2545 if(!iconic
&& !DragFullWindows
) draw_moving_frame( hdc
, &sizingRect
, thickframe
);
2548 /* determine the hit location */
2549 if (hittest
>= HTLEFT
&& hittest
<= HTBOTTOMRIGHT
)
2550 wpSizingHit
= WMSZ_LEFT
+ (hittest
- HTLEFT
);
2551 SendMessageW( hwnd
, WM_SIZING
, wpSizingHit
, (LPARAM
)&newRect
);
2555 if(!DragFullWindows
)
2556 draw_moving_frame( hdc
, &newRect
, thickframe
);
2558 SetWindowPos( hwnd
, 0, newRect
.left
, newRect
.top
,
2559 newRect
.right
- newRect
.left
,
2560 newRect
.bottom
- newRect
.top
,
2561 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
2563 sizingRect
= newRect
;
2570 if( moved
) /* restore cursors, show icon title later on */
2572 ShowCursor( FALSE
);
2573 SetCursor( hOldCursor
);
2576 else if (moved
&& !DragFullWindows
)
2578 draw_moving_frame( hdc
, &sizingRect
, thickframe
);
2581 set_capture_window( 0, GUI_INMOVESIZE
, NULL
);
2582 ReleaseDC( parent
, hdc
);
2584 if (HOOK_CallHooks( WH_CBT
, HCBT_MOVESIZE
, (WPARAM
)hwnd
, (LPARAM
)&sizingRect
, TRUE
))
2587 SendMessageW( hwnd
, WM_EXITSIZEMOVE
, 0, 0 );
2588 SendMessageW( hwnd
, WM_SETVISIBLE
, !IsIconic(hwnd
), 0L);
2590 /* window moved or resized */
2593 /* if the moving/resizing isn't canceled call SetWindowPos
2594 * with the new position or the new size of the window
2596 if (!((msg
.message
== WM_KEYDOWN
) && (msg
.wParam
== VK_ESCAPE
)) )
2598 /* NOTE: SWP_NOACTIVATE prevents document window activation in Word 6 */
2599 if(!DragFullWindows
|| iconic
)
2600 SetWindowPos( hwnd
, 0, sizingRect
.left
, sizingRect
.top
,
2601 sizingRect
.right
- sizingRect
.left
,
2602 sizingRect
.bottom
- sizingRect
.top
,
2603 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
2606 { /* restore previous size/position */
2608 SetWindowPos( hwnd
, 0, origRect
.left
, origRect
.top
,
2609 origRect
.right
- origRect
.left
,
2610 origRect
.bottom
- origRect
.top
,
2611 ( hittest
== HTCAPTION
) ? SWP_NOSIZE
: 0 );
2617 /* Single click brings up the system menu when iconized */
2621 if(style
& WS_SYSMENU
)
2622 SendMessageW( hwnd
, WM_SYSCOMMAND
,
2623 SC_MOUSEMENU
+ HTSYSMENU
, MAKELONG(pt
.x
,pt
.y
));
2625 else WINPOS_ShowIconTitle( hwnd
, TRUE
);