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) ((*(LONG*)&(pt)) == -1)
58 #define PLACE_MIN 0x0001
59 #define PLACE_MAX 0x0002
60 #define PLACE_RECT 0x0004
63 #define DWP_MAGIC ((INT)('W' | ('P' << 8) | ('O' << 16) | ('S' << 24)))
81 } INTERNALPOS
, *LPINTERNALPOS
;
83 /* ----- internal functions ----- */
85 static const WCHAR SysIP_W
[] = { 'S','y','s','I','P',0 };
87 static inline INTERNALPOS
*get_internal_pos( HWND hwnd
)
89 return GetPropW( hwnd
, SysIP_W
);
92 static inline void set_internal_pos( HWND hwnd
, INTERNALPOS
*pos
)
94 SetPropW( hwnd
, SysIP_W
, pos
);
97 /***********************************************************************
98 * WINPOS_CheckInternalPos
100 * Called when a window is destroyed.
102 void WINPOS_CheckInternalPos( HWND hwnd
)
104 LPINTERNALPOS lpPos
= get_internal_pos( hwnd
);
108 if( IsWindow(lpPos
->hwndIconTitle
) )
109 DestroyWindow( lpPos
->hwndIconTitle
);
110 HeapFree( GetProcessHeap(), 0, lpPos
);
114 /***********************************************************************
115 * ArrangeIconicWindows (USER32.@)
117 UINT WINAPI
ArrangeIconicWindows( HWND parent
)
121 INT x
, y
, xspacing
, yspacing
;
123 GetClientRect( parent
, &rectParent
);
125 y
= rectParent
.bottom
;
126 xspacing
= GetSystemMetrics(SM_CXICONSPACING
);
127 yspacing
= GetSystemMetrics(SM_CYICONSPACING
);
129 hwndChild
= GetWindow( parent
, GW_CHILD
);
132 if( IsIconic( hwndChild
) )
134 WINPOS_ShowIconTitle( hwndChild
, FALSE
);
136 SetWindowPos( hwndChild
, 0, x
+ (xspacing
- GetSystemMetrics(SM_CXICON
)) / 2,
137 y
- yspacing
- GetSystemMetrics(SM_CYICON
)/2, 0, 0,
138 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
139 if( IsWindow(hwndChild
) )
140 WINPOS_ShowIconTitle(hwndChild
, TRUE
);
142 if (x
<= rectParent
.right
- xspacing
) x
+= xspacing
;
149 hwndChild
= GetWindow( hwndChild
, GW_HWNDNEXT
);
155 /***********************************************************************
156 * SwitchToThisWindow (USER32.@)
158 void WINAPI
SwitchToThisWindow( HWND hwnd
, BOOL restore
)
160 ShowWindow( hwnd
, restore
? SW_RESTORE
: SW_SHOWMINIMIZED
);
164 /***********************************************************************
165 * GetWindowRect (USER32.@)
167 BOOL WINAPI
GetWindowRect( HWND hwnd
, LPRECT rect
)
169 BOOL ret
= WIN_GetRectangles( hwnd
, rect
, NULL
);
172 MapWindowPoints( GetAncestor( hwnd
, GA_PARENT
), 0, (POINT
*)rect
, 2 );
173 TRACE( "hwnd %p (%s)\n", hwnd
, wine_dbgstr_rect(rect
) );
179 /***********************************************************************
180 * GetWindowRgn (USER32.@)
182 int WINAPI
GetWindowRgn ( HWND hwnd
, HRGN hrgn
)
192 if (!(data
= HeapAlloc( GetProcessHeap(), 0, sizeof(*data
) + size
- 1 )))
194 SetLastError( ERROR_OUTOFMEMORY
);
197 SERVER_START_REQ( get_window_region
)
200 wine_server_set_reply( req
, data
->Buffer
, size
);
201 if (!(status
= wine_server_call( req
)))
203 size_t reply_size
= wine_server_reply_size( reply
);
206 data
->rdh
.dwSize
= sizeof(data
->rdh
);
207 data
->rdh
.iType
= RDH_RECTANGLES
;
208 data
->rdh
.nCount
= reply_size
/ sizeof(RECT
);
209 data
->rdh
.nRgnSize
= reply_size
;
210 win_rgn
= ExtCreateRegion( NULL
, size
, data
);
213 else size
= reply
->total_size
;
216 HeapFree( GetProcessHeap(), 0, data
);
217 } while (status
== STATUS_BUFFER_OVERFLOW
);
219 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
222 nRet
= CombineRgn( hrgn
, win_rgn
, 0, RGN_COPY
);
223 DeleteObject( win_rgn
);
229 /***********************************************************************
230 * SetWindowRgn (USER32.@)
232 int WINAPI
SetWindowRgn( HWND hwnd
, HRGN hrgn
, BOOL bRedraw
)
234 static const RECT empty_rect
;
242 if (!(size
= GetRegionData( hrgn
, 0, NULL
))) return FALSE
;
243 if (!(data
= HeapAlloc( GetProcessHeap(), 0, size
))) return FALSE
;
244 if (!GetRegionData( hrgn
, size
, data
))
246 HeapFree( GetProcessHeap(), 0, data
);
249 SERVER_START_REQ( set_window_region
)
252 req
->redraw
= (bRedraw
!= 0);
253 if (data
->rdh
.nCount
)
254 wine_server_add_data( req
, data
->Buffer
, data
->rdh
.nCount
* sizeof(RECT
) );
256 wine_server_add_data( req
, &empty_rect
, sizeof(empty_rect
) );
257 ret
= !wine_server_call_err( req
);
261 else /* clear existing region */
263 SERVER_START_REQ( set_window_region
)
266 req
->redraw
= (bRedraw
!= 0);
267 ret
= !wine_server_call_err( req
);
272 if (ret
) ret
= USER_Driver
->pSetWindowRgn( hwnd
, hrgn
, bRedraw
);
276 UINT swp_flags
= SWP_NOSIZE
|SWP_NOMOVE
|SWP_NOZORDER
|SWP_NOACTIVATE
|SWP_FRAMECHANGED
|SWP_NOCLIENTSIZE
|SWP_NOCLIENTMOVE
;
277 if (!bRedraw
) swp_flags
|= SWP_NOREDRAW
;
278 SetWindowPos( hwnd
, 0, 0, 0, 0, 0, swp_flags
);
279 invalidate_dce( hwnd
, NULL
);
285 /***********************************************************************
286 * GetClientRect (USER32.@)
288 BOOL WINAPI
GetClientRect( HWND hwnd
, LPRECT rect
)
292 if ((ret
= WIN_GetRectangles( hwnd
, NULL
, rect
)))
294 rect
->right
-= rect
->left
;
295 rect
->bottom
-= rect
->top
;
296 rect
->left
= rect
->top
= 0;
302 /*******************************************************************
303 * ClientToScreen (USER32.@)
305 BOOL WINAPI
ClientToScreen( HWND hwnd
, LPPOINT lppnt
)
307 MapWindowPoints( hwnd
, 0, lppnt
, 1 );
312 /*******************************************************************
313 * ScreenToClient (USER32.@)
315 BOOL WINAPI
ScreenToClient( HWND hwnd
, LPPOINT lppnt
)
317 MapWindowPoints( 0, hwnd
, lppnt
, 1 );
322 /***********************************************************************
323 * list_children_from_point
325 * Get the list of children that can contain point from the server.
326 * Point is in screen coordinates.
327 * Returned list must be freed by caller.
329 static HWND
*list_children_from_point( HWND hwnd
, POINT pt
)
338 if (!(list
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(HWND
) ))) break;
340 SERVER_START_REQ( get_window_children_from_point
)
345 wine_server_set_reply( req
, list
, (size
-1) * sizeof(HWND
) );
346 if (!wine_server_call( req
)) count
= reply
->count
;
349 if (count
&& count
< size
)
354 HeapFree( GetProcessHeap(), 0, list
);
356 size
= count
+ 1; /* restart with a large enough buffer */
362 /***********************************************************************
363 * WINPOS_WindowFromPoint
365 * Find the window and hittest for a given point.
367 HWND
WINPOS_WindowFromPoint( HWND hwndScope
, POINT pt
, INT
*hittest
)
372 if (!hwndScope
) hwndScope
= GetDesktopWindow();
374 *hittest
= HTNOWHERE
;
376 if (!(list
= list_children_from_point( hwndScope
, pt
))) return 0;
378 /* now determine the hittest */
380 for (i
= 0; list
[i
]; i
++)
382 LONG style
= GetWindowLongW( list
[i
], GWL_STYLE
);
384 /* If window is minimized or disabled, return at once */
385 if (style
& WS_MINIMIZE
)
387 *hittest
= HTCAPTION
;
390 if (style
& WS_DISABLED
)
395 /* Send WM_NCCHITTEST (if same thread) */
396 if (!WIN_IsCurrentThread( list
[i
] ))
401 res
= SendMessageW( list
[i
], WM_NCHITTEST
, 0, MAKELONG(pt
.x
,pt
.y
) );
402 if (res
!= HTTRANSPARENT
)
404 *hittest
= res
; /* Found the window */
407 /* continue search with next window in z-order */
410 HeapFree( GetProcessHeap(), 0, list
);
411 TRACE( "scope %p (%d,%d) returning %p\n", hwndScope
, pt
.x
, pt
.y
, ret
);
416 /*******************************************************************
417 * WindowFromPoint (USER32.@)
419 HWND WINAPI
WindowFromPoint( POINT pt
)
422 return WINPOS_WindowFromPoint( 0, pt
, &hittest
);
426 /*******************************************************************
427 * ChildWindowFromPoint (USER32.@)
429 HWND WINAPI
ChildWindowFromPoint( HWND hwndParent
, POINT pt
)
431 return ChildWindowFromPointEx( hwndParent
, pt
, CWP_ALL
);
434 /*******************************************************************
435 * RealChildWindowFromPoint (USER32.@)
437 HWND WINAPI
RealChildWindowFromPoint( HWND hwndParent
, POINT pt
)
439 return ChildWindowFromPointEx( hwndParent
, pt
, CWP_SKIPTRANSPARENT
);
442 /*******************************************************************
443 * ChildWindowFromPointEx (USER32.@)
445 HWND WINAPI
ChildWindowFromPointEx( HWND hwndParent
, POINT pt
, UINT uFlags
)
447 /* pt is in the client coordinates */
453 GetClientRect( hwndParent
, &rect
);
454 if (!PtInRect( &rect
, pt
)) return 0;
455 if (!(list
= WIN_ListChildren( hwndParent
))) return hwndParent
;
457 for (i
= 0; list
[i
]; i
++)
459 if (!WIN_GetRectangles( list
[i
], &rect
, NULL
)) continue;
460 if (!PtInRect( &rect
, pt
)) continue;
461 if (uFlags
& (CWP_SKIPINVISIBLE
|CWP_SKIPDISABLED
))
463 LONG style
= GetWindowLongW( list
[i
], GWL_STYLE
);
464 if ((uFlags
& CWP_SKIPINVISIBLE
) && !(style
& WS_VISIBLE
)) continue;
465 if ((uFlags
& CWP_SKIPDISABLED
) && (style
& WS_DISABLED
)) continue;
467 if (uFlags
& CWP_SKIPTRANSPARENT
)
469 if (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TRANSPARENT
) continue;
474 HeapFree( GetProcessHeap(), 0, list
);
475 if (!retvalue
) retvalue
= hwndParent
;
480 /*******************************************************************
481 * WINPOS_GetWinOffset
483 * Calculate the offset between the origin of the two windows. Used
484 * to implement MapWindowPoints.
486 static void WINPOS_GetWinOffset( HWND hwndFrom
, HWND hwndTo
, POINT
*offset
)
490 offset
->x
= offset
->y
= 0;
492 /* Translate source window origin to screen coords */
495 HWND hwnd
= hwndFrom
;
499 if (hwnd
== hwndTo
) return;
500 if (!(wndPtr
= WIN_GetPtr( hwnd
)))
502 ERR( "bad hwndFrom = %p\n", hwnd
);
505 if (wndPtr
== WND_DESKTOP
) break;
506 if (wndPtr
== WND_OTHER_PROCESS
) goto other_process
;
507 offset
->x
+= wndPtr
->rectClient
.left
;
508 offset
->y
+= wndPtr
->rectClient
.top
;
509 hwnd
= wndPtr
->parent
;
510 WIN_ReleasePtr( wndPtr
);
514 /* Translate origin to destination window coords */
521 if (!(wndPtr
= WIN_GetPtr( hwnd
)))
523 ERR( "bad hwndTo = %p\n", hwnd
);
526 if (wndPtr
== WND_DESKTOP
) break;
527 if (wndPtr
== WND_OTHER_PROCESS
) goto other_process
;
528 offset
->x
-= wndPtr
->rectClient
.left
;
529 offset
->y
-= wndPtr
->rectClient
.top
;
530 hwnd
= wndPtr
->parent
;
531 WIN_ReleasePtr( wndPtr
);
536 other_process
: /* one of the parents may belong to another process, do it the hard way */
537 offset
->x
= offset
->y
= 0;
538 SERVER_START_REQ( get_windows_offset
)
540 req
->from
= hwndFrom
;
542 if (!wine_server_call( req
))
544 offset
->x
= reply
->x
;
545 offset
->y
= reply
->y
;
552 /*******************************************************************
553 * MapWindowPoints (USER.258)
555 void WINAPI
MapWindowPoints16( HWND16 hwndFrom
, HWND16 hwndTo
,
556 LPPOINT16 lppt
, UINT16 count
)
560 WINPOS_GetWinOffset( WIN_Handle32(hwndFrom
), WIN_Handle32(hwndTo
), &offset
);
570 /*******************************************************************
571 * MapWindowPoints (USER32.@)
573 INT WINAPI
MapWindowPoints( HWND hwndFrom
, HWND hwndTo
, LPPOINT lppt
, UINT count
)
577 WINPOS_GetWinOffset( hwndFrom
, hwndTo
, &offset
);
584 return MAKELONG( LOWORD(offset
.x
), LOWORD(offset
.y
) );
588 /***********************************************************************
589 * IsIconic (USER32.@)
591 BOOL WINAPI
IsIconic(HWND hWnd
)
593 return (GetWindowLongW( hWnd
, GWL_STYLE
) & WS_MINIMIZE
) != 0;
597 /***********************************************************************
598 * IsZoomed (USER32.@)
600 BOOL WINAPI
IsZoomed(HWND hWnd
)
602 return (GetWindowLongW( hWnd
, GWL_STYLE
) & WS_MAXIMIZE
) != 0;
606 /*******************************************************************
607 * AllowSetForegroundWindow (USER32.@)
609 BOOL WINAPI
AllowSetForegroundWindow( DWORD procid
)
611 /* FIXME: If Win98/2000 style SetForegroundWindow behavior is
612 * implemented, then fix this function. */
617 /*******************************************************************
618 * LockSetForegroundWindow (USER32.@)
620 BOOL WINAPI
LockSetForegroundWindow( UINT lockcode
)
622 /* FIXME: If Win98/2000 style SetForegroundWindow behavior is
623 * implemented, then fix this function. */
628 /***********************************************************************
629 * BringWindowToTop (USER32.@)
631 BOOL WINAPI
BringWindowToTop( HWND hwnd
)
633 return SetWindowPos( hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
637 /***********************************************************************
638 * MoveWindow (USER32.@)
640 BOOL WINAPI
MoveWindow( HWND hwnd
, INT x
, INT y
, INT cx
, INT cy
,
643 int flags
= SWP_NOZORDER
| SWP_NOACTIVATE
;
644 if (!repaint
) flags
|= SWP_NOREDRAW
;
645 TRACE("%p %d,%d %dx%d %d\n", hwnd
, x
, y
, cx
, cy
, repaint
);
646 return SetWindowPos( hwnd
, 0, x
, y
, cx
, cy
, flags
);
649 /***********************************************************************
650 * WINPOS_InitInternalPos
652 static LPINTERNALPOS
WINPOS_InitInternalPos( WND
* wnd
)
654 LPINTERNALPOS lpPos
= get_internal_pos( wnd
->hwndSelf
);
657 /* this happens when the window is minimized/maximized
658 * for the first time (rectWindow is not adjusted yet) */
660 lpPos
= HeapAlloc( GetProcessHeap(), 0, sizeof(INTERNALPOS
) );
661 if( !lpPos
) return NULL
;
663 set_internal_pos( wnd
->hwndSelf
, lpPos
);
664 lpPos
->hwndIconTitle
= 0; /* defer until needs to be shown */
665 lpPos
->rectNormal
.left
= wnd
->rectWindow
.left
;
666 lpPos
->rectNormal
.top
= wnd
->rectWindow
.top
;
667 lpPos
->rectNormal
.right
= wnd
->rectWindow
.right
;
668 lpPos
->rectNormal
.bottom
= wnd
->rectWindow
.bottom
;
669 lpPos
->ptIconPos
.x
= lpPos
->ptIconPos
.y
= -1;
670 lpPos
->ptMaxPos
.x
= lpPos
->ptMaxPos
.y
= -1;
673 if( wnd
->dwStyle
& WS_MINIMIZE
)
675 lpPos
->ptIconPos
.x
= wnd
->rectWindow
.left
;
676 lpPos
->ptIconPos
.y
= wnd
->rectWindow
.top
;
678 else if( wnd
->dwStyle
& WS_MAXIMIZE
)
680 lpPos
->ptMaxPos
.x
= wnd
->rectWindow
.left
;
681 lpPos
->ptMaxPos
.y
= wnd
->rectWindow
.top
;
685 lpPos
->rectNormal
.left
= wnd
->rectWindow
.left
;
686 lpPos
->rectNormal
.top
= wnd
->rectWindow
.top
;
687 lpPos
->rectNormal
.right
= wnd
->rectWindow
.right
;
688 lpPos
->rectNormal
.bottom
= wnd
->rectWindow
.bottom
;
693 /***********************************************************************
694 * WINPOS_RedrawIconTitle
696 BOOL
WINPOS_RedrawIconTitle( HWND hWnd
)
698 LPINTERNALPOS lpPos
= get_internal_pos( hWnd
);
701 if( lpPos
->hwndIconTitle
)
703 SendMessageW( lpPos
->hwndIconTitle
, WM_SHOWWINDOW
, TRUE
, 0);
704 InvalidateRect( lpPos
->hwndIconTitle
, NULL
, TRUE
);
711 /***********************************************************************
712 * WINPOS_ShowIconTitle
714 BOOL
WINPOS_ShowIconTitle( HWND hwnd
, BOOL bShow
)
716 LPINTERNALPOS lpPos
= get_internal_pos( hwnd
);
718 if (lpPos
&& !GetPropA( hwnd
, "__wine_x11_managed" ))
720 HWND title
= lpPos
->hwndIconTitle
;
722 TRACE("%p %i\n", hwnd
, (bShow
!= 0) );
726 if (!title
) lpPos
->hwndIconTitle
= title
= ICONTITLE_Create( hwnd
);
727 if (!IsWindowVisible(title
))
729 SendMessageW( title
, WM_SHOWWINDOW
, TRUE
, 0 );
730 SetWindowPos( title
, 0, 0, 0, 0, 0, SWP_NOSIZE
| SWP_NOMOVE
|
731 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_SHOWWINDOW
);
734 else if (title
) ShowWindow( title
, SW_HIDE
);
739 /*******************************************************************
740 * WINPOS_GetMinMaxInfo
742 * Get the minimized and maximized information for a window.
744 void WINPOS_GetMinMaxInfo( HWND hwnd
, POINT
*maxSize
, POINT
*maxPos
,
745 POINT
*minTrack
, POINT
*maxTrack
)
751 LONG style
= GetWindowLongA( hwnd
, GWL_STYLE
);
752 LONG exstyle
= GetWindowLongA( hwnd
, GWL_EXSTYLE
);
755 /* Compute default values */
757 GetWindowRect(hwnd
, &rc
);
758 MinMax
.ptReserved
.x
= rc
.left
;
759 MinMax
.ptReserved
.y
= rc
.top
;
761 if (style
& WS_CHILD
)
763 if ((style
& WS_CAPTION
) == WS_CAPTION
)
764 style
&= ~WS_BORDER
; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
766 GetClientRect(GetAncestor(hwnd
,GA_PARENT
), &rc
);
767 AdjustWindowRectEx(&rc
, style
, ((style
& WS_POPUP
) && GetMenu(hwnd
)), exstyle
);
769 /* avoid calculating this twice */
770 style
&= ~(WS_DLGFRAME
| WS_BORDER
| WS_THICKFRAME
);
772 MinMax
.ptMaxSize
.x
= rc
.right
- rc
.left
;
773 MinMax
.ptMaxSize
.y
= rc
.bottom
- rc
.top
;
777 MinMax
.ptMaxSize
.x
= GetSystemMetrics(SM_CXSCREEN
);
778 MinMax
.ptMaxSize
.y
= GetSystemMetrics(SM_CYSCREEN
);
780 MinMax
.ptMinTrackSize
.x
= GetSystemMetrics(SM_CXMINTRACK
);
781 MinMax
.ptMinTrackSize
.y
= GetSystemMetrics(SM_CYMINTRACK
);
782 MinMax
.ptMaxTrackSize
.x
= GetSystemMetrics(SM_CXMAXTRACK
);
783 MinMax
.ptMaxTrackSize
.y
= GetSystemMetrics(SM_CYMAXTRACK
);
785 if (HAS_DLGFRAME( style
, exstyle
))
787 xinc
= GetSystemMetrics(SM_CXDLGFRAME
);
788 yinc
= GetSystemMetrics(SM_CYDLGFRAME
);
793 if (HAS_THICKFRAME(style
))
795 xinc
+= GetSystemMetrics(SM_CXFRAME
);
796 yinc
+= GetSystemMetrics(SM_CYFRAME
);
798 if (style
& WS_BORDER
)
800 xinc
+= GetSystemMetrics(SM_CXBORDER
);
801 yinc
+= GetSystemMetrics(SM_CYBORDER
);
804 MinMax
.ptMaxSize
.x
+= 2 * xinc
;
805 MinMax
.ptMaxSize
.y
+= 2 * yinc
;
807 lpPos
= get_internal_pos( hwnd
);
808 if( lpPos
&& !EMPTYPOINT(lpPos
->ptMaxPos
) )
810 MinMax
.ptMaxPosition
.x
= lpPos
->ptMaxPos
.x
;
811 MinMax
.ptMaxPosition
.y
= lpPos
->ptMaxPos
.y
;
815 MinMax
.ptMaxPosition
.x
= -xinc
;
816 MinMax
.ptMaxPosition
.y
= -yinc
;
819 SendMessageW( hwnd
, WM_GETMINMAXINFO
, 0, (LPARAM
)&MinMax
);
821 /* if the app didn't change the values, adapt them for the current monitor */
823 if ((monitor
= MonitorFromWindow( hwnd
, MONITOR_DEFAULTTOPRIMARY
)))
825 MONITORINFO mon_info
;
827 mon_info
.cbSize
= sizeof(mon_info
);
828 GetMonitorInfoW( monitor
, &mon_info
);
830 if (MinMax
.ptMaxSize
.x
== GetSystemMetrics(SM_CXSCREEN
) + 2 * xinc
&&
831 MinMax
.ptMaxSize
.y
== GetSystemMetrics(SM_CYSCREEN
) + 2 * yinc
)
833 MinMax
.ptMaxSize
.x
= (mon_info
.rcWork
.right
- mon_info
.rcWork
.left
) + 2 * xinc
;
834 MinMax
.ptMaxSize
.y
= (mon_info
.rcWork
.bottom
- mon_info
.rcWork
.top
) + 2 * yinc
;
836 if (MinMax
.ptMaxPosition
.x
== -xinc
&& MinMax
.ptMaxPosition
.y
== -yinc
)
838 MinMax
.ptMaxPosition
.x
= mon_info
.rcWork
.left
- xinc
;
839 MinMax
.ptMaxPosition
.y
= mon_info
.rcWork
.top
- yinc
;
843 /* Some sanity checks */
845 TRACE("%d %d / %d %d / %d %d / %d %d\n",
846 MinMax
.ptMaxSize
.x
, MinMax
.ptMaxSize
.y
,
847 MinMax
.ptMaxPosition
.x
, MinMax
.ptMaxPosition
.y
,
848 MinMax
.ptMaxTrackSize
.x
, MinMax
.ptMaxTrackSize
.y
,
849 MinMax
.ptMinTrackSize
.x
, MinMax
.ptMinTrackSize
.y
);
850 MinMax
.ptMaxTrackSize
.x
= max( MinMax
.ptMaxTrackSize
.x
,
851 MinMax
.ptMinTrackSize
.x
);
852 MinMax
.ptMaxTrackSize
.y
= max( MinMax
.ptMaxTrackSize
.y
,
853 MinMax
.ptMinTrackSize
.y
);
855 if (maxSize
) *maxSize
= MinMax
.ptMaxSize
;
856 if (maxPos
) *maxPos
= MinMax
.ptMaxPosition
;
857 if (minTrack
) *minTrack
= MinMax
.ptMinTrackSize
;
858 if (maxTrack
) *maxTrack
= MinMax
.ptMaxTrackSize
;
862 /***********************************************************************
865 * Find a suitable place for an iconic window.
867 static POINT
WINPOS_FindIconPos( HWND hwnd
, POINT pt
)
869 RECT rect
, rectParent
;
872 int xspacing
, yspacing
;
874 parent
= GetAncestor( hwnd
, GA_PARENT
);
875 GetClientRect( parent
, &rectParent
);
876 if ((pt
.x
>= rectParent
.left
) && (pt
.x
+ GetSystemMetrics(SM_CXICON
) < rectParent
.right
) &&
877 (pt
.y
>= rectParent
.top
) && (pt
.y
+ GetSystemMetrics(SM_CYICON
) < rectParent
.bottom
))
878 return pt
; /* The icon already has a suitable position */
880 xspacing
= GetSystemMetrics(SM_CXICONSPACING
);
881 yspacing
= GetSystemMetrics(SM_CYICONSPACING
);
883 /* Check if another icon already occupies this spot */
884 /* FIXME: this is completely inefficient */
886 hrgn
= CreateRectRgn( 0, 0, 0, 0 );
887 tmp
= CreateRectRgn( 0, 0, 0, 0 );
888 for (child
= GetWindow( parent
, GW_HWNDFIRST
); child
; child
= GetWindow( child
, GW_HWNDNEXT
))
891 if (child
== hwnd
) continue;
892 if ((GetWindowLongW( child
, GWL_STYLE
) & (WS_VISIBLE
|WS_MINIMIZE
)) != (WS_VISIBLE
|WS_MINIMIZE
))
894 if (!(childPtr
= WIN_GetPtr( child
)) || childPtr
== WND_OTHER_PROCESS
)
896 SetRectRgn( tmp
, childPtr
->rectWindow
.left
, childPtr
->rectWindow
.top
,
897 childPtr
->rectWindow
.right
, childPtr
->rectWindow
.bottom
);
898 CombineRgn( hrgn
, hrgn
, tmp
, RGN_OR
);
899 WIN_ReleasePtr( childPtr
);
903 for (rect
.bottom
= rectParent
.bottom
; rect
.bottom
>= yspacing
; rect
.bottom
-= yspacing
)
905 for (rect
.left
= rectParent
.left
; rect
.left
<= rectParent
.right
- xspacing
; rect
.left
+= xspacing
)
907 rect
.right
= rect
.left
+ xspacing
;
908 rect
.top
= rect
.bottom
- yspacing
;
909 if (!RectInRegion( hrgn
, &rect
))
911 /* No window was found, so it's OK for us */
912 pt
.x
= rect
.left
+ (xspacing
- GetSystemMetrics(SM_CXICON
)) / 2;
913 pt
.y
= rect
.top
+ (yspacing
- GetSystemMetrics(SM_CYICON
)) / 2;
914 DeleteObject( hrgn
);
919 DeleteObject( hrgn
);
925 /***********************************************************************
928 UINT
WINPOS_MinMaximize( HWND hwnd
, UINT cmd
, LPRECT rect
)
936 TRACE("%p %u\n", hwnd
, cmd
);
938 wpl
.length
= sizeof(wpl
);
939 GetWindowPlacement( hwnd
, &wpl
);
941 if (HOOK_CallHooks( WH_CBT
, HCBT_MINMAX
, (WPARAM
)hwnd
, cmd
, TRUE
))
942 return SWP_NOSIZE
| SWP_NOMOVE
;
944 if (IsIconic( hwnd
))
948 case SW_SHOWMINNOACTIVE
:
949 case SW_SHOWMINIMIZED
:
950 case SW_FORCEMINIMIZE
:
952 return SWP_NOSIZE
| SWP_NOMOVE
;
954 if (!SendMessageW( hwnd
, WM_QUERYOPEN
, 0, 0 )) return SWP_NOSIZE
| SWP_NOMOVE
;
955 swpFlags
|= SWP_NOCOPYBITS
;
960 case SW_SHOWMINNOACTIVE
:
961 case SW_SHOWMINIMIZED
:
962 case SW_FORCEMINIMIZE
:
964 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
965 if( wndPtr
->dwStyle
& WS_MAXIMIZE
) wndPtr
->flags
|= WIN_RESTORE_MAX
;
966 else wndPtr
->flags
&= ~WIN_RESTORE_MAX
;
967 WIN_ReleasePtr( wndPtr
);
969 old_style
= WIN_SetStyle( hwnd
, WS_MINIMIZE
, WS_MAXIMIZE
);
971 wpl
.ptMinPosition
= WINPOS_FindIconPos( hwnd
, wpl
.ptMinPosition
);
973 if (!(old_style
& WS_MINIMIZE
)) swpFlags
|= SWP_STATECHANGED
;
974 SetRect( rect
, wpl
.ptMinPosition
.x
, wpl
.ptMinPosition
.y
,
975 GetSystemMetrics(SM_CXICON
), GetSystemMetrics(SM_CYICON
) );
976 swpFlags
|= SWP_NOCOPYBITS
;
980 old_style
= GetWindowLongW( hwnd
, GWL_STYLE
);
981 if ((old_style
& WS_MAXIMIZE
) && (old_style
& WS_VISIBLE
)) return SWP_NOSIZE
| SWP_NOMOVE
;
983 WINPOS_GetMinMaxInfo( hwnd
, &size
, &wpl
.ptMaxPosition
, NULL
, NULL
);
985 old_style
= WIN_SetStyle( hwnd
, WS_MAXIMIZE
, WS_MINIMIZE
);
986 if (old_style
& WS_MINIMIZE
) WINPOS_ShowIconTitle( hwnd
, FALSE
);
988 if (!(old_style
& WS_MAXIMIZE
)) swpFlags
|= SWP_STATECHANGED
;
989 SetRect( rect
, wpl
.ptMaxPosition
.x
, wpl
.ptMaxPosition
.y
, size
.x
, size
.y
);
992 case SW_SHOWNOACTIVATE
:
995 old_style
= WIN_SetStyle( hwnd
, 0, WS_MINIMIZE
| WS_MAXIMIZE
);
996 if (old_style
& WS_MINIMIZE
)
1000 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1002 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1003 restore_max
= (wndPtr
->flags
& WIN_RESTORE_MAX
) != 0;
1004 WIN_ReleasePtr( wndPtr
);
1007 /* Restore to maximized position */
1008 WINPOS_GetMinMaxInfo( hwnd
, &size
, &wpl
.ptMaxPosition
, NULL
, NULL
);
1009 WIN_SetStyle( hwnd
, WS_MAXIMIZE
, 0 );
1010 swpFlags
|= SWP_STATECHANGED
;
1011 SetRect( rect
, wpl
.ptMaxPosition
.x
, wpl
.ptMaxPosition
.y
, size
.x
, size
.y
);
1015 else if (!(old_style
& WS_MAXIMIZE
)) break;
1017 swpFlags
|= SWP_STATECHANGED
;
1019 /* Restore to normal position */
1021 *rect
= wpl
.rcNormalPosition
;
1022 rect
->right
-= rect
->left
;
1023 rect
->bottom
-= rect
->top
;
1032 /***********************************************************************
1035 * Implementation of ShowWindow and ShowWindowAsync.
1037 static BOOL
show_window( HWND hwnd
, INT cmd
)
1041 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1042 BOOL wasVisible
= (style
& WS_VISIBLE
) != 0;
1043 BOOL showFlag
= TRUE
;
1044 RECT newPos
= {0, 0, 0, 0};
1047 TRACE("hwnd=%p, cmd=%d, wasVisible %d\n", hwnd
, cmd
, wasVisible
);
1052 if (!wasVisible
) return FALSE
;
1054 swp
|= SWP_HIDEWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
1055 if (hwnd
!= GetActiveWindow())
1056 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1059 case SW_SHOWMINNOACTIVE
:
1060 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1063 case SW_FORCEMINIMIZE
: /* FIXME: Does not work if thread is hung. */
1064 if (style
& WS_CHILD
) swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1066 case SW_SHOWMINIMIZED
:
1067 swp
|= SWP_SHOWWINDOW
| SWP_FRAMECHANGED
;
1068 swp
|= WINPOS_MinMaximize( hwnd
, cmd
, &newPos
);
1069 if ((style
& WS_MINIMIZE
) && wasVisible
) return TRUE
;
1072 case SW_SHOWMAXIMIZED
: /* same as SW_MAXIMIZE */
1073 if (!wasVisible
) swp
|= SWP_SHOWWINDOW
;
1074 swp
|= SWP_FRAMECHANGED
;
1075 swp
|= WINPOS_MinMaximize( hwnd
, SW_MAXIMIZE
, &newPos
);
1076 if ((style
& WS_MAXIMIZE
) && wasVisible
) return TRUE
;
1080 swp
|= SWP_NOACTIVATE
| SWP_SHOWWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
1081 if (style
& WS_CHILD
) swp
|= SWP_NOZORDER
;
1084 if (wasVisible
) return TRUE
;
1085 swp
|= SWP_SHOWWINDOW
| SWP_NOSIZE
| SWP_NOMOVE
;
1086 if (style
& WS_CHILD
) swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1089 case SW_SHOWNOACTIVATE
:
1090 swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1094 case SW_SHOWNORMAL
: /* same as SW_NORMAL: */
1095 case SW_SHOWDEFAULT
: /* FIXME: should have its own handler */
1096 if (!wasVisible
) swp
|= SWP_SHOWWINDOW
;
1097 if (style
& (WS_MINIMIZE
| WS_MAXIMIZE
))
1099 swp
|= SWP_FRAMECHANGED
;
1100 swp
|= WINPOS_MinMaximize( hwnd
, cmd
, &newPos
);
1104 if (wasVisible
) return TRUE
;
1105 swp
|= SWP_NOSIZE
| SWP_NOMOVE
;
1107 if (style
& WS_CHILD
&& !(swp
& SWP_STATECHANGED
)) swp
|= SWP_NOACTIVATE
| SWP_NOZORDER
;
1111 if ((showFlag
!= wasVisible
|| cmd
== SW_SHOWNA
) && cmd
!= SW_SHOWMAXIMIZED
&& !(swp
& SWP_STATECHANGED
))
1113 SendMessageW( hwnd
, WM_SHOWWINDOW
, showFlag
, 0 );
1114 if (!IsWindow( hwnd
)) return wasVisible
;
1117 parent
= GetAncestor( hwnd
, GA_PARENT
);
1118 if (parent
&& !IsWindowVisible( parent
) && !(swp
& SWP_STATECHANGED
))
1120 /* if parent is not visible simply toggle WS_VISIBLE and return */
1121 if (showFlag
) WIN_SetStyle( hwnd
, WS_VISIBLE
, 0 );
1122 else WIN_SetStyle( hwnd
, 0, WS_VISIBLE
);
1125 SetWindowPos( hwnd
, HWND_TOP
, newPos
.left
, newPos
.top
,
1126 newPos
.right
, newPos
.bottom
, LOWORD(swp
) );
1132 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1134 /* FIXME: This will cause the window to be activated irrespective
1135 * of whether it is owned by the same thread. Has to be done
1139 if (hwnd
== GetActiveWindow())
1140 WINPOS_ActivateOtherWindow(hwnd
);
1142 /* Revert focus to parent */
1143 hFocus
= GetFocus();
1144 if (hwnd
== hFocus
|| IsChild(hwnd
, hFocus
))
1146 HWND parent
= GetAncestor(hwnd
, GA_PARENT
);
1147 if (parent
== GetDesktopWindow()) parent
= 0;
1152 if (IsIconic(hwnd
)) WINPOS_ShowIconTitle( hwnd
, TRUE
);
1154 if (!(wndPtr
= WIN_GetPtr( hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return wasVisible
;
1156 if (wndPtr
->flags
& WIN_NEED_SIZE
)
1158 /* should happen only in CreateWindowEx() */
1159 int wParam
= SIZE_RESTORED
;
1160 RECT client
= wndPtr
->rectClient
;
1162 wndPtr
->flags
&= ~WIN_NEED_SIZE
;
1163 if (wndPtr
->dwStyle
& WS_MAXIMIZE
) wParam
= SIZE_MAXIMIZED
;
1164 else if (wndPtr
->dwStyle
& WS_MINIMIZE
) wParam
= SIZE_MINIMIZED
;
1165 WIN_ReleasePtr( wndPtr
);
1167 SendMessageW( hwnd
, WM_SIZE
, wParam
,
1168 MAKELONG( client
.right
- client
.left
, client
.bottom
- client
.top
));
1169 SendMessageW( hwnd
, WM_MOVE
, 0, MAKELONG( client
.left
, client
.top
));
1171 else WIN_ReleasePtr( wndPtr
);
1173 /* if previous state was minimized Windows sets focus to the window */
1174 if (style
& WS_MINIMIZE
) SetFocus( hwnd
);
1180 /***********************************************************************
1181 * ShowWindowAsync (USER32.@)
1183 * doesn't wait; returns immediately.
1184 * used by threads to toggle windows in other (possibly hanging) threads
1186 BOOL WINAPI
ShowWindowAsync( HWND hwnd
, INT cmd
)
1190 if (is_broadcast(hwnd
))
1192 SetLastError( ERROR_INVALID_PARAMETER
);
1196 if ((full_handle
= WIN_IsCurrentThread( hwnd
)))
1197 return show_window( full_handle
, cmd
);
1199 return SendNotifyMessageW( hwnd
, WM_WINE_SHOWWINDOW
, cmd
, 0 );
1203 /***********************************************************************
1204 * ShowWindow (USER32.@)
1206 BOOL WINAPI
ShowWindow( HWND hwnd
, INT cmd
)
1210 if (is_broadcast(hwnd
))
1212 SetLastError( ERROR_INVALID_PARAMETER
);
1215 if ((full_handle
= WIN_IsCurrentThread( hwnd
)))
1216 return show_window( full_handle
, cmd
);
1218 return SendMessageW( hwnd
, WM_WINE_SHOWWINDOW
, cmd
, 0 );
1222 /***********************************************************************
1223 * GetInternalWindowPos (USER32.@)
1225 UINT WINAPI
GetInternalWindowPos( HWND hwnd
, LPRECT rectWnd
,
1228 WINDOWPLACEMENT wndpl
;
1229 if (GetWindowPlacement( hwnd
, &wndpl
))
1231 if (rectWnd
) *rectWnd
= wndpl
.rcNormalPosition
;
1232 if (ptIcon
) *ptIcon
= wndpl
.ptMinPosition
;
1233 return wndpl
.showCmd
;
1239 /***********************************************************************
1240 * GetWindowPlacement (USER32.@)
1243 * Fails if wndpl->length of Win95 (!) apps is invalid.
1245 BOOL WINAPI
GetWindowPlacement( HWND hwnd
, WINDOWPLACEMENT
*wndpl
)
1247 WND
*pWnd
= WIN_GetPtr( hwnd
);
1248 LPINTERNALPOS lpPos
;
1250 if (!pWnd
|| pWnd
== WND_DESKTOP
) return FALSE
;
1251 if (pWnd
== WND_OTHER_PROCESS
)
1253 if (IsWindow( hwnd
)) FIXME( "not supported on other process window %p\n", hwnd
);
1257 lpPos
= WINPOS_InitInternalPos( pWnd
);
1258 wndpl
->length
= sizeof(*wndpl
);
1259 if( pWnd
->dwStyle
& WS_MINIMIZE
)
1260 wndpl
->showCmd
= SW_SHOWMINIMIZED
;
1262 wndpl
->showCmd
= ( pWnd
->dwStyle
& WS_MAXIMIZE
) ? SW_SHOWMAXIMIZED
: SW_SHOWNORMAL
;
1263 if( pWnd
->flags
& WIN_RESTORE_MAX
)
1264 wndpl
->flags
= WPF_RESTORETOMAXIMIZED
;
1267 wndpl
->ptMinPosition
.x
= lpPos
->ptIconPos
.x
;
1268 wndpl
->ptMinPosition
.y
= lpPos
->ptIconPos
.y
;
1269 wndpl
->ptMaxPosition
.x
= lpPos
->ptMaxPos
.x
;
1270 wndpl
->ptMaxPosition
.y
= lpPos
->ptMaxPos
.y
;
1271 wndpl
->rcNormalPosition
.left
= lpPos
->rectNormal
.left
;
1272 wndpl
->rcNormalPosition
.top
= lpPos
->rectNormal
.top
;
1273 wndpl
->rcNormalPosition
.right
= lpPos
->rectNormal
.right
;
1274 wndpl
->rcNormalPosition
.bottom
= lpPos
->rectNormal
.bottom
;
1275 WIN_ReleasePtr( pWnd
);
1280 /***********************************************************************
1281 * WINPOS_SetPlacement
1283 static BOOL
WINPOS_SetPlacement( HWND hwnd
, const WINDOWPLACEMENT
*wndpl
, UINT flags
)
1285 LPINTERNALPOS lpPos
;
1287 WND
*pWnd
= WIN_GetPtr( hwnd
);
1289 if (!pWnd
|| pWnd
== WND_OTHER_PROCESS
|| pWnd
== WND_DESKTOP
) return FALSE
;
1290 lpPos
= WINPOS_InitInternalPos( pWnd
);
1292 if( flags
& PLACE_MIN
)
1294 lpPos
->ptIconPos
.x
= wndpl
->ptMinPosition
.x
;
1295 lpPos
->ptIconPos
.y
= wndpl
->ptMinPosition
.y
;
1297 if( flags
& PLACE_MAX
)
1299 lpPos
->ptMaxPos
.x
= wndpl
->ptMaxPosition
.x
;
1300 lpPos
->ptMaxPos
.y
= wndpl
->ptMaxPosition
.y
;
1302 if( flags
& PLACE_RECT
)
1304 lpPos
->rectNormal
.left
= wndpl
->rcNormalPosition
.left
;
1305 lpPos
->rectNormal
.top
= wndpl
->rcNormalPosition
.top
;
1306 lpPos
->rectNormal
.right
= wndpl
->rcNormalPosition
.right
;
1307 lpPos
->rectNormal
.bottom
= wndpl
->rcNormalPosition
.bottom
;
1310 style
= pWnd
->dwStyle
;
1311 WIN_ReleasePtr( pWnd
);
1313 if( style
& WS_MINIMIZE
)
1315 WINPOS_ShowIconTitle( hwnd
, FALSE
);
1316 if( wndpl
->flags
& WPF_SETMINPOSITION
&& !EMPTYPOINT(lpPos
->ptIconPos
))
1317 SetWindowPos( hwnd
, 0, lpPos
->ptIconPos
.x
, lpPos
->ptIconPos
.y
,
1318 0, 0, SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1320 else if( style
& WS_MAXIMIZE
)
1322 if( !EMPTYPOINT(lpPos
->ptMaxPos
) )
1323 SetWindowPos( hwnd
, 0, lpPos
->ptMaxPos
.x
, lpPos
->ptMaxPos
.y
,
1324 0, 0, SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1326 else if( flags
& PLACE_RECT
)
1327 SetWindowPos( hwnd
, 0, lpPos
->rectNormal
.left
, lpPos
->rectNormal
.top
,
1328 lpPos
->rectNormal
.right
- lpPos
->rectNormal
.left
,
1329 lpPos
->rectNormal
.bottom
- lpPos
->rectNormal
.top
,
1330 SWP_NOZORDER
| SWP_NOACTIVATE
);
1332 ShowWindow( hwnd
, wndpl
->showCmd
);
1334 if (IsIconic( hwnd
))
1336 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_VISIBLE
) WINPOS_ShowIconTitle( hwnd
, TRUE
);
1338 /* SDK: ...valid only the next time... */
1339 if( wndpl
->flags
& WPF_RESTORETOMAXIMIZED
)
1341 pWnd
= WIN_GetPtr( hwnd
);
1342 if (pWnd
&& pWnd
!= WND_OTHER_PROCESS
)
1344 pWnd
->flags
|= WIN_RESTORE_MAX
;
1345 WIN_ReleasePtr( pWnd
);
1353 /***********************************************************************
1354 * SetWindowPlacement (USER32.@)
1357 * Fails if wndpl->length of Win95 (!) apps is invalid.
1359 BOOL WINAPI
SetWindowPlacement( HWND hwnd
, const WINDOWPLACEMENT
*wpl
)
1361 if (!wpl
) return FALSE
;
1362 return WINPOS_SetPlacement( hwnd
, wpl
, PLACE_MIN
| PLACE_MAX
| PLACE_RECT
);
1366 /***********************************************************************
1367 * AnimateWindow (USER32.@)
1368 * Shows/Hides a window with an animation
1371 BOOL WINAPI
AnimateWindow(HWND hwnd
, DWORD dwTime
, DWORD dwFlags
)
1373 FIXME("partial stub\n");
1375 /* If trying to show/hide and it's already *
1376 * shown/hidden or invalid window, fail with *
1377 * invalid parameter */
1378 if(!IsWindow(hwnd
) ||
1379 (IsWindowVisible(hwnd
) && !(dwFlags
& AW_HIDE
)) ||
1380 (!IsWindowVisible(hwnd
) && (dwFlags
& AW_HIDE
)))
1382 SetLastError(ERROR_INVALID_PARAMETER
);
1386 ShowWindow(hwnd
, (dwFlags
& AW_HIDE
) ? SW_HIDE
: ((dwFlags
& AW_ACTIVATE
) ? SW_SHOW
: SW_SHOWNA
));
1391 /***********************************************************************
1392 * SetInternalWindowPos (USER32.@)
1394 void WINAPI
SetInternalWindowPos( HWND hwnd
, UINT showCmd
,
1395 LPRECT rect
, LPPOINT pt
)
1397 if( IsWindow(hwnd
) )
1399 WINDOWPLACEMENT wndpl
;
1402 wndpl
.length
= sizeof(wndpl
);
1403 wndpl
.showCmd
= showCmd
;
1404 wndpl
.flags
= flags
= 0;
1409 wndpl
.flags
|= WPF_SETMINPOSITION
;
1410 wndpl
.ptMinPosition
= *pt
;
1414 flags
|= PLACE_RECT
;
1415 wndpl
.rcNormalPosition
= *rect
;
1417 WINPOS_SetPlacement( hwnd
, &wndpl
, flags
);
1422 /*******************************************************************
1423 * can_activate_window
1425 * Check if we can activate the specified window.
1427 static BOOL
can_activate_window( HWND hwnd
)
1431 if (!hwnd
) return FALSE
;
1432 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1433 if (!(style
& WS_VISIBLE
)) return FALSE
;
1434 if ((style
& (WS_POPUP
|WS_CHILD
)) == WS_CHILD
) return FALSE
;
1435 return !(style
& WS_DISABLED
);
1439 /*******************************************************************
1440 * WINPOS_ActivateOtherWindow
1442 * Activates window other than pWnd.
1444 void WINPOS_ActivateOtherWindow(HWND hwnd
)
1448 if ((GetWindowLongW( hwnd
, GWL_STYLE
) & WS_POPUP
) && (hwndTo
= GetWindow( hwnd
, GW_OWNER
)))
1450 hwndTo
= GetAncestor( hwndTo
, GA_ROOT
);
1451 if (can_activate_window( hwndTo
)) goto done
;
1457 if (!(hwndTo
= GetWindow( hwndTo
, GW_HWNDNEXT
))) break;
1458 if (can_activate_window( hwndTo
)) break;
1462 fg
= GetForegroundWindow();
1463 TRACE("win = %p fg = %p\n", hwndTo
, fg
);
1464 if (!fg
|| (hwnd
== fg
))
1466 if (SetForegroundWindow( hwndTo
)) return;
1468 if (!SetActiveWindow( hwndTo
)) SetActiveWindow(0);
1472 /***********************************************************************
1473 * WINPOS_HandleWindowPosChanging
1475 * Default handling for a WM_WINDOWPOSCHANGING. Called from DefWindowProc().
1477 LONG
WINPOS_HandleWindowPosChanging( HWND hwnd
, WINDOWPOS
*winpos
)
1479 POINT minTrack
, maxTrack
;
1480 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1482 if (winpos
->flags
& SWP_NOSIZE
) return 0;
1483 if ((style
& WS_THICKFRAME
) || ((style
& (WS_POPUP
| WS_CHILD
)) == 0))
1485 WINPOS_GetMinMaxInfo( hwnd
, NULL
, NULL
, &minTrack
, &maxTrack
);
1486 if (winpos
->cx
> maxTrack
.x
) winpos
->cx
= maxTrack
.x
;
1487 if (winpos
->cy
> maxTrack
.y
) winpos
->cy
= maxTrack
.y
;
1488 if (!(style
& WS_MINIMIZE
))
1490 if (winpos
->cx
< minTrack
.x
) winpos
->cx
= minTrack
.x
;
1491 if (winpos
->cy
< minTrack
.y
) winpos
->cy
= minTrack
.y
;
1498 /***********************************************************************
1501 static void dump_winpos_flags(UINT flags
)
1504 if(flags
& SWP_NOSIZE
) TRACE(" SWP_NOSIZE");
1505 if(flags
& SWP_NOMOVE
) TRACE(" SWP_NOMOVE");
1506 if(flags
& SWP_NOZORDER
) TRACE(" SWP_NOZORDER");
1507 if(flags
& SWP_NOREDRAW
) TRACE(" SWP_NOREDRAW");
1508 if(flags
& SWP_NOACTIVATE
) TRACE(" SWP_NOACTIVATE");
1509 if(flags
& SWP_FRAMECHANGED
) TRACE(" SWP_FRAMECHANGED");
1510 if(flags
& SWP_SHOWWINDOW
) TRACE(" SWP_SHOWWINDOW");
1511 if(flags
& SWP_HIDEWINDOW
) TRACE(" SWP_HIDEWINDOW");
1512 if(flags
& SWP_NOCOPYBITS
) TRACE(" SWP_NOCOPYBITS");
1513 if(flags
& SWP_NOOWNERZORDER
) TRACE(" SWP_NOOWNERZORDER");
1514 if(flags
& SWP_NOSENDCHANGING
) TRACE(" SWP_NOSENDCHANGING");
1515 if(flags
& SWP_DEFERERASE
) TRACE(" SWP_DEFERERASE");
1516 if(flags
& SWP_ASYNCWINDOWPOS
) TRACE(" SWP_ASYNCWINDOWPOS");
1518 #define DUMPED_FLAGS \
1524 SWP_FRAMECHANGED | \
1528 SWP_NOOWNERZORDER | \
1529 SWP_NOSENDCHANGING | \
1533 if(flags
& ~DUMPED_FLAGS
) TRACE(" %08x", flags
& ~DUMPED_FLAGS
);
1538 /***********************************************************************
1539 * SWP_DoWinPosChanging
1541 static BOOL
SWP_DoWinPosChanging( WINDOWPOS
* pWinpos
, RECT
* pNewWindowRect
, RECT
* pNewClientRect
)
1545 /* Send WM_WINDOWPOSCHANGING message */
1547 if (!(pWinpos
->flags
& SWP_NOSENDCHANGING
))
1548 SendMessageW( pWinpos
->hwnd
, WM_WINDOWPOSCHANGING
, 0, (LPARAM
)pWinpos
);
1550 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) ||
1551 wndPtr
== WND_OTHER_PROCESS
|| wndPtr
== WND_DESKTOP
) return FALSE
;
1553 /* Calculate new position and size */
1555 *pNewWindowRect
= wndPtr
->rectWindow
;
1556 *pNewClientRect
= (wndPtr
->dwStyle
& WS_MINIMIZE
) ? wndPtr
->rectWindow
1557 : wndPtr
->rectClient
;
1559 if (!(pWinpos
->flags
& SWP_NOSIZE
))
1561 pNewWindowRect
->right
= pNewWindowRect
->left
+ pWinpos
->cx
;
1562 pNewWindowRect
->bottom
= pNewWindowRect
->top
+ pWinpos
->cy
;
1564 if (!(pWinpos
->flags
& SWP_NOMOVE
))
1566 pNewWindowRect
->left
= pWinpos
->x
;
1567 pNewWindowRect
->top
= pWinpos
->y
;
1568 pNewWindowRect
->right
+= pWinpos
->x
- wndPtr
->rectWindow
.left
;
1569 pNewWindowRect
->bottom
+= pWinpos
->y
- wndPtr
->rectWindow
.top
;
1571 OffsetRect( pNewClientRect
, pWinpos
->x
- wndPtr
->rectWindow
.left
,
1572 pWinpos
->y
- wndPtr
->rectWindow
.top
);
1574 pWinpos
->flags
|= SWP_NOCLIENTMOVE
| SWP_NOCLIENTSIZE
;
1576 TRACE( "hwnd %p, after %p, swp %d,%d %dx%d flags %08x\n",
1577 pWinpos
->hwnd
, pWinpos
->hwndInsertAfter
, pWinpos
->x
, pWinpos
->y
,
1578 pWinpos
->cx
, pWinpos
->cy
, pWinpos
->flags
);
1579 TRACE( "current %s style %08x new %s\n",
1580 wine_dbgstr_rect( &wndPtr
->rectWindow
), wndPtr
->dwStyle
,
1581 wine_dbgstr_rect( pNewWindowRect
));
1583 WIN_ReleasePtr( wndPtr
);
1587 /***********************************************************************
1590 * Compute the valid rects from the old and new client rect and WVR_* flags.
1591 * Helper for WM_NCCALCSIZE handling.
1593 static inline void get_valid_rects( const RECT
*old_client
, const RECT
*new_client
, UINT flags
,
1598 if (flags
& WVR_REDRAW
)
1600 SetRectEmpty( &valid
[0] );
1601 SetRectEmpty( &valid
[1] );
1605 if (flags
& WVR_VALIDRECTS
)
1607 if (!IntersectRect( &valid
[0], &valid
[0], new_client
) ||
1608 !IntersectRect( &valid
[1], &valid
[1], old_client
))
1610 SetRectEmpty( &valid
[0] );
1611 SetRectEmpty( &valid
[1] );
1614 flags
= WVR_ALIGNLEFT
| WVR_ALIGNTOP
;
1618 valid
[0] = *new_client
;
1619 valid
[1] = *old_client
;
1622 /* make sure the rectangles have the same size */
1623 cx
= min( valid
[0].right
- valid
[0].left
, valid
[1].right
- valid
[1].left
);
1624 cy
= min( valid
[0].bottom
- valid
[0].top
, valid
[1].bottom
- valid
[1].top
);
1626 if (flags
& WVR_ALIGNBOTTOM
)
1628 valid
[0].top
= valid
[0].bottom
- cy
;
1629 valid
[1].top
= valid
[1].bottom
- cy
;
1633 valid
[0].bottom
= valid
[0].top
+ cy
;
1634 valid
[1].bottom
= valid
[1].top
+ cy
;
1636 if (flags
& WVR_ALIGNRIGHT
)
1638 valid
[0].left
= valid
[0].right
- cx
;
1639 valid
[1].left
= valid
[1].right
- cx
;
1643 valid
[0].right
= valid
[0].left
+ cx
;
1644 valid
[1].right
= valid
[1].left
+ cx
;
1649 /***********************************************************************
1652 * fix Z order taking into account owned popups -
1653 * basically we need to maintain them above the window that owns them
1655 * FIXME: hide/show owned popups when owner visibility changes.
1657 static HWND
SWP_DoOwnedPopups(HWND hwnd
, HWND hwndInsertAfter
)
1659 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1660 HWND owner
, *list
= NULL
;
1663 TRACE("(%p) hInsertAfter = %p\n", hwnd
, hwndInsertAfter
);
1665 if ((style
& WS_POPUP
) && (owner
= GetWindow( hwnd
, GW_OWNER
)))
1667 /* make sure this popup stays above the owner */
1669 if (hwndInsertAfter
!= HWND_TOP
&& hwndInsertAfter
!= HWND_TOPMOST
)
1671 if (!(list
= WIN_ListChildren( GetDesktopWindow() ))) return hwndInsertAfter
;
1673 for (i
= 0; list
[i
]; i
++)
1675 if (list
[i
] == owner
)
1677 if (i
> 0) hwndInsertAfter
= list
[i
-1];
1678 else hwndInsertAfter
= HWND_TOP
;
1682 if (hwndInsertAfter
== HWND_NOTOPMOST
)
1684 if (!(GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TOPMOST
)) break;
1686 else if (list
[i
] == hwndInsertAfter
) break;
1690 else if (style
& WS_CHILD
) return hwndInsertAfter
;
1692 if (hwndInsertAfter
== HWND_BOTTOM
) goto done
;
1693 if (!list
&& !(list
= WIN_ListChildren( GetDesktopWindow() ))) goto done
;
1696 if (hwndInsertAfter
== HWND_TOP
|| hwndInsertAfter
== HWND_NOTOPMOST
)
1698 if (hwndInsertAfter
== HWND_NOTOPMOST
|| !(GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_TOPMOST
))
1700 /* skip all the topmost windows */
1701 while (list
[i
] && (GetWindowLongW( list
[i
], GWL_EXSTYLE
) & WS_EX_TOPMOST
)) i
++;
1704 else if (hwndInsertAfter
!= HWND_TOPMOST
)
1706 /* skip windows that are already placed correctly */
1707 for (i
= 0; list
[i
]; i
++)
1709 if (list
[i
] == hwndInsertAfter
) break;
1710 if (list
[i
] == hwnd
) goto done
; /* nothing to do if window is moving backwards in z-order */
1714 for ( ; list
[i
]; i
++)
1716 if (list
[i
] == hwnd
) break;
1717 if (!(GetWindowLongW( list
[i
], GWL_STYLE
) & WS_POPUP
)) continue;
1718 if (GetWindow( list
[i
], GW_OWNER
) != hwnd
) continue;
1719 TRACE( "moving %p owned by %p after %p\n", list
[i
], hwnd
, hwndInsertAfter
);
1720 SetWindowPos( list
[i
], hwndInsertAfter
, 0, 0, 0, 0,
1721 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
| SWP_NOSENDCHANGING
| SWP_DEFERERASE
);
1722 hwndInsertAfter
= list
[i
];
1726 HeapFree( GetProcessHeap(), 0, list
);
1727 return hwndInsertAfter
;
1730 /***********************************************************************
1733 static UINT
SWP_DoNCCalcSize( WINDOWPOS
* pWinpos
, const RECT
* pNewWindowRect
, RECT
* pNewClientRect
,
1739 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1741 /* Send WM_NCCALCSIZE message to get new client area */
1742 if( (pWinpos
->flags
& (SWP_FRAMECHANGED
| SWP_NOSIZE
)) != SWP_NOSIZE
)
1744 NCCALCSIZE_PARAMS params
;
1745 WINDOWPOS winposCopy
;
1747 params
.rgrc
[0] = *pNewWindowRect
;
1748 params
.rgrc
[1] = wndPtr
->rectWindow
;
1749 params
.rgrc
[2] = wndPtr
->rectClient
;
1750 params
.lppos
= &winposCopy
;
1751 winposCopy
= *pWinpos
;
1752 WIN_ReleasePtr( wndPtr
);
1754 wvrFlags
= SendMessageW( pWinpos
->hwnd
, WM_NCCALCSIZE
, TRUE
, (LPARAM
)¶ms
);
1756 *pNewClientRect
= params
.rgrc
[0];
1758 if (!(wndPtr
= WIN_GetPtr( pWinpos
->hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return 0;
1760 TRACE( "hwnd %p old win %s old client %s new win %s new client %s\n", pWinpos
->hwnd
,
1761 wine_dbgstr_rect(&wndPtr
->rectWindow
), wine_dbgstr_rect(&wndPtr
->rectClient
),
1762 wine_dbgstr_rect(pNewWindowRect
), wine_dbgstr_rect(pNewClientRect
) );
1764 if( pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
1765 pNewClientRect
->top
!= wndPtr
->rectClient
.top
)
1766 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
1768 if( (pNewClientRect
->right
- pNewClientRect
->left
!=
1769 wndPtr
->rectClient
.right
- wndPtr
->rectClient
.left
))
1770 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
1772 wvrFlags
&= ~WVR_HREDRAW
;
1774 if (pNewClientRect
->bottom
- pNewClientRect
->top
!=
1775 wndPtr
->rectClient
.bottom
- wndPtr
->rectClient
.top
)
1776 pWinpos
->flags
&= ~SWP_NOCLIENTSIZE
;
1778 wvrFlags
&= ~WVR_VREDRAW
;
1780 validRects
[0] = params
.rgrc
[1];
1781 validRects
[1] = params
.rgrc
[2];
1785 if (!(pWinpos
->flags
& SWP_NOMOVE
) &&
1786 (pNewClientRect
->left
!= wndPtr
->rectClient
.left
||
1787 pNewClientRect
->top
!= wndPtr
->rectClient
.top
))
1788 pWinpos
->flags
&= ~SWP_NOCLIENTMOVE
;
1791 if (pWinpos
->flags
& (SWP_NOCOPYBITS
| SWP_NOREDRAW
| SWP_SHOWWINDOW
| SWP_HIDEWINDOW
))
1793 SetRectEmpty( &validRects
[0] );
1794 SetRectEmpty( &validRects
[1] );
1796 else get_valid_rects( &wndPtr
->rectClient
, pNewClientRect
, wvrFlags
, validRects
);
1798 WIN_ReleasePtr( wndPtr
);
1802 /* fix redundant flags and values in the WINDOWPOS structure */
1803 static BOOL
fixup_flags( WINDOWPOS
*winpos
)
1806 WND
*wndPtr
= WIN_GetPtr( winpos
->hwnd
);
1809 if (!wndPtr
|| wndPtr
== WND_OTHER_PROCESS
)
1811 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1814 winpos
->hwnd
= wndPtr
->hwndSelf
; /* make it a full handle */
1816 /* Finally make sure that all coordinates are valid */
1817 if (winpos
->x
< -32768) winpos
->x
= -32768;
1818 else if (winpos
->x
> 32767) winpos
->x
= 32767;
1819 if (winpos
->y
< -32768) winpos
->y
= -32768;
1820 else if (winpos
->y
> 32767) winpos
->y
= 32767;
1822 if (winpos
->cx
< 0) winpos
->cx
= 0;
1823 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
1824 if (winpos
->cy
< 0) winpos
->cy
= 0;
1825 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
1827 parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
1828 if (!IsWindowVisible( parent
)) winpos
->flags
|= SWP_NOREDRAW
;
1830 if (wndPtr
->dwStyle
& WS_VISIBLE
) winpos
->flags
&= ~SWP_SHOWWINDOW
;
1833 winpos
->flags
&= ~SWP_HIDEWINDOW
;
1834 if (!(winpos
->flags
& SWP_SHOWWINDOW
)) winpos
->flags
|= SWP_NOREDRAW
;
1837 if ((wndPtr
->rectWindow
.right
- wndPtr
->rectWindow
.left
== winpos
->cx
) &&
1838 (wndPtr
->rectWindow
.bottom
- wndPtr
->rectWindow
.top
== winpos
->cy
))
1839 winpos
->flags
|= SWP_NOSIZE
; /* Already the right size */
1841 if ((wndPtr
->rectWindow
.left
== winpos
->x
) && (wndPtr
->rectWindow
.top
== winpos
->y
))
1842 winpos
->flags
|= SWP_NOMOVE
; /* Already the right position */
1844 if ((wndPtr
->dwStyle
& (WS_POPUP
| WS_CHILD
)) != WS_CHILD
)
1846 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)) && /* Bring to the top when activating */
1847 (winpos
->flags
& SWP_NOZORDER
||
1848 (winpos
->hwndInsertAfter
!= HWND_TOPMOST
&& winpos
->hwndInsertAfter
!= HWND_NOTOPMOST
)))
1850 winpos
->flags
&= ~SWP_NOZORDER
;
1851 winpos
->hwndInsertAfter
= HWND_TOP
;
1855 /* Check hwndInsertAfter */
1856 if (winpos
->flags
& SWP_NOZORDER
) goto done
;
1858 /* fix sign extension */
1859 if (winpos
->hwndInsertAfter
== (HWND
)0xffff) winpos
->hwndInsertAfter
= HWND_TOPMOST
;
1860 else if (winpos
->hwndInsertAfter
== (HWND
)0xfffe) winpos
->hwndInsertAfter
= HWND_NOTOPMOST
;
1862 /* hwndInsertAfter must be a sibling of the window */
1863 if (winpos
->hwndInsertAfter
== HWND_TOP
)
1865 if (GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
1866 winpos
->flags
|= SWP_NOZORDER
;
1868 else if (winpos
->hwndInsertAfter
== HWND_BOTTOM
)
1870 if (!(wndPtr
->dwExStyle
& WS_EX_TOPMOST
) && GetWindow(winpos
->hwnd
, GW_HWNDLAST
) == winpos
->hwnd
)
1871 winpos
->flags
|= SWP_NOZORDER
;
1873 else if (winpos
->hwndInsertAfter
== HWND_TOPMOST
)
1875 if ((wndPtr
->dwExStyle
& WS_EX_TOPMOST
) && GetWindow(winpos
->hwnd
, GW_HWNDFIRST
) == winpos
->hwnd
)
1876 winpos
->flags
|= SWP_NOZORDER
;
1878 else if (winpos
->hwndInsertAfter
== HWND_NOTOPMOST
)
1880 if (!(wndPtr
->dwExStyle
& WS_EX_TOPMOST
))
1881 winpos
->flags
|= SWP_NOZORDER
;
1885 if (GetAncestor( winpos
->hwndInsertAfter
, GA_PARENT
) != parent
) ret
= FALSE
;
1888 /* don't need to change the Zorder of hwnd if it's already inserted
1889 * after hwndInsertAfter or when inserting hwnd after itself.
1891 if ((winpos
->hwnd
== winpos
->hwndInsertAfter
) ||
1892 (winpos
->hwnd
== GetWindow( winpos
->hwndInsertAfter
, GW_HWNDNEXT
)))
1893 winpos
->flags
|= SWP_NOZORDER
;
1897 WIN_ReleasePtr( wndPtr
);
1902 /***********************************************************************
1905 * Backend implementation of SetWindowPos.
1907 BOOL
set_window_pos( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
1908 const RECT
*window_rect
, const RECT
*client_rect
, const RECT
*valid_rects
)
1912 RECT visible_rect
, old_window_rect
;
1915 if (!(win
= WIN_GetPtr( hwnd
))) return FALSE
;
1916 if (win
== WND_DESKTOP
|| win
== WND_OTHER_PROCESS
) return FALSE
;
1918 old_window_rect
= win
->rectWindow
;
1919 SERVER_START_REQ( set_window_pos
)
1922 req
->previous
= insert_after
;
1923 req
->flags
= swp_flags
;
1924 req
->window
.left
= window_rect
->left
;
1925 req
->window
.top
= window_rect
->top
;
1926 req
->window
.right
= window_rect
->right
;
1927 req
->window
.bottom
= window_rect
->bottom
;
1928 req
->client
.left
= client_rect
->left
;
1929 req
->client
.top
= client_rect
->top
;
1930 req
->client
.right
= client_rect
->right
;
1931 req
->client
.bottom
= client_rect
->bottom
;
1932 if (!IsRectEmpty( &valid_rects
[0] ))
1933 wine_server_add_data( req
, valid_rects
, 2 * sizeof(*valid_rects
) );
1934 if ((ret
= !wine_server_call( req
)))
1936 win
->dwStyle
= reply
->new_style
;
1937 win
->dwExStyle
= reply
->new_ex_style
;
1938 win
->rectWindow
= *window_rect
;
1939 win
->rectClient
= *client_rect
;
1940 visible_rect
.left
= reply
->visible
.left
;
1941 visible_rect
.top
= reply
->visible
.top
;
1942 visible_rect
.right
= reply
->visible
.right
;
1943 visible_rect
.bottom
= reply
->visible
.bottom
;
1947 new_style
= win
->dwStyle
;
1948 WIN_ReleasePtr( win
);
1952 USER_Driver
->pSetWindowPos( hwnd
, insert_after
, swp_flags
, window_rect
,
1953 client_rect
, &visible_rect
, valid_rects
);
1955 if ((((swp_flags
& SWP_AGG_NOPOSCHANGE
) != SWP_AGG_NOPOSCHANGE
) && (new_style
& WS_VISIBLE
)) ||
1956 (swp_flags
& (SWP_HIDEWINDOW
| SWP_SHOWWINDOW
)))
1957 invalidate_dce( hwnd
, &old_window_rect
);
1963 /***********************************************************************
1966 * User32 internal function
1968 BOOL
USER_SetWindowPos( WINDOWPOS
* winpos
)
1970 RECT newWindowRect
, newClientRect
, valid_rects
[2];
1973 orig_flags
= winpos
->flags
;
1975 /* First make sure that coordinates are valid for WM_WINDOWPOSCHANGING */
1976 if (!(winpos
->flags
& SWP_NOMOVE
))
1978 if (winpos
->x
< -32768) winpos
->x
= -32768;
1979 else if (winpos
->x
> 32767) winpos
->x
= 32767;
1980 if (winpos
->y
< -32768) winpos
->y
= -32768;
1981 else if (winpos
->y
> 32767) winpos
->y
= 32767;
1983 if (!(winpos
->flags
& SWP_NOSIZE
))
1985 if (winpos
->cx
< 0) winpos
->cx
= 0;
1986 else if (winpos
->cx
> 32767) winpos
->cx
= 32767;
1987 if (winpos
->cy
< 0) winpos
->cy
= 0;
1988 else if (winpos
->cy
> 32767) winpos
->cy
= 32767;
1991 if (!SWP_DoWinPosChanging( winpos
, &newWindowRect
, &newClientRect
)) return FALSE
;
1993 /* Fix redundant flags */
1994 if (!fixup_flags( winpos
)) return FALSE
;
1996 if((winpos
->flags
& (SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_SHOWWINDOW
)) != SWP_NOZORDER
)
1998 if (GetAncestor( winpos
->hwnd
, GA_PARENT
) == GetDesktopWindow())
1999 winpos
->hwndInsertAfter
= SWP_DoOwnedPopups( winpos
->hwnd
, winpos
->hwndInsertAfter
);
2002 /* Common operations */
2004 SWP_DoNCCalcSize( winpos
, &newWindowRect
, &newClientRect
, valid_rects
);
2006 if (!set_window_pos( winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->flags
,
2007 &newWindowRect
, &newClientRect
, valid_rects
))
2010 /* erase parent when hiding or resizing child */
2011 if (!(orig_flags
& SWP_DEFERERASE
) &&
2012 ((orig_flags
& SWP_HIDEWINDOW
) ||
2013 (!(orig_flags
& SWP_SHOWWINDOW
) &&
2014 (winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOGEOMETRYCHANGE
)))
2016 HWND parent
= GetAncestor( winpos
->hwnd
, GA_PARENT
);
2017 if (!parent
|| parent
== GetDesktopWindow()) parent
= winpos
->hwnd
;
2018 erase_now( parent
, 0 );
2021 if( winpos
->flags
& SWP_HIDEWINDOW
)
2022 HideCaret(winpos
->hwnd
);
2023 else if (winpos
->flags
& SWP_SHOWWINDOW
)
2024 ShowCaret(winpos
->hwnd
);
2026 if (!(winpos
->flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
)))
2028 /* child windows get WM_CHILDACTIVATE message */
2029 if ((GetWindowLongW( winpos
->hwnd
, GWL_STYLE
) & (WS_CHILD
| WS_POPUP
)) == WS_CHILD
)
2030 SendMessageW( winpos
->hwnd
, WM_CHILDACTIVATE
, 0, 0 );
2032 SetForegroundWindow( winpos
->hwnd
);
2035 /* And last, send the WM_WINDOWPOSCHANGED message */
2037 TRACE("\tstatus flags = %04x\n", winpos
->flags
& SWP_AGG_STATUSFLAGS
);
2039 if (((winpos
->flags
& SWP_AGG_STATUSFLAGS
) != SWP_AGG_NOPOSCHANGE
))
2041 /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
2042 and always contains final window position.
2044 winpos
->x
= newWindowRect
.left
;
2045 winpos
->y
= newWindowRect
.top
;
2046 winpos
->cx
= newWindowRect
.right
- newWindowRect
.left
;
2047 winpos
->cy
= newWindowRect
.bottom
- newWindowRect
.top
;
2048 SendMessageW( winpos
->hwnd
, WM_WINDOWPOSCHANGED
, 0, (LPARAM
)winpos
);
2053 /***********************************************************************
2054 * SetWindowPos (USER32.@)
2056 BOOL WINAPI
SetWindowPos( HWND hwnd
, HWND hwndInsertAfter
,
2057 INT x
, INT y
, INT cx
, INT cy
, UINT flags
)
2061 TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2062 hwnd
, hwndInsertAfter
, x
, y
, cx
, cy
, flags
);
2063 if(TRACE_ON(win
)) dump_winpos_flags(flags
);
2065 if (is_broadcast(hwnd
))
2067 SetLastError( ERROR_INVALID_PARAMETER
);
2071 winpos
.hwnd
= WIN_GetFullHandle(hwnd
);
2072 winpos
.hwndInsertAfter
= WIN_GetFullHandle(hwndInsertAfter
);
2077 winpos
.flags
= flags
;
2079 if (WIN_IsCurrentThread( hwnd
))
2080 return USER_SetWindowPos(&winpos
);
2082 return SendMessageW( winpos
.hwnd
, WM_WINE_SETWINDOWPOS
, 0, (LPARAM
)&winpos
);
2086 /***********************************************************************
2087 * BeginDeferWindowPos (USER32.@)
2089 HDWP WINAPI
BeginDeferWindowPos( INT count
)
2094 TRACE("%d\n", count
);
2098 SetLastError(ERROR_INVALID_PARAMETER
);
2101 /* Windows allows zero count, in which case it allocates context for 8 moves */
2102 if (count
== 0) count
= 8;
2104 handle
= USER_HEAP_ALLOC( sizeof(DWP
) + (count
-1)*sizeof(WINDOWPOS
) );
2105 if (!handle
) return 0;
2106 pDWP
= (DWP
*) USER_HEAP_LIN_ADDR( handle
);
2107 pDWP
->actualCount
= 0;
2108 pDWP
->suggestedCount
= count
;
2110 pDWP
->wMagic
= DWP_MAGIC
;
2111 pDWP
->hwndParent
= 0;
2113 TRACE("returning hdwp %p\n", handle
);
2118 /***********************************************************************
2119 * DeferWindowPos (USER32.@)
2121 HDWP WINAPI
DeferWindowPos( HDWP hdwp
, HWND hwnd
, HWND hwndAfter
,
2122 INT x
, INT y
, INT cx
, INT cy
,
2127 HDWP newhdwp
= hdwp
,retvalue
;
2129 TRACE("hdwp %p, hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2130 hdwp
, hwnd
, hwndAfter
, x
, y
, cx
, cy
, flags
);
2132 hwnd
= WIN_GetFullHandle( hwnd
);
2133 if (hwnd
== GetDesktopWindow()) return 0;
2135 if (!(pDWP
= USER_HEAP_LIN_ADDR( hdwp
))) return 0;
2139 for (i
= 0; i
< pDWP
->actualCount
; i
++)
2141 if (pDWP
->winPos
[i
].hwnd
== hwnd
)
2143 /* Merge with the other changes */
2144 if (!(flags
& SWP_NOZORDER
))
2146 pDWP
->winPos
[i
].hwndInsertAfter
= WIN_GetFullHandle(hwndAfter
);
2148 if (!(flags
& SWP_NOMOVE
))
2150 pDWP
->winPos
[i
].x
= x
;
2151 pDWP
->winPos
[i
].y
= y
;
2153 if (!(flags
& SWP_NOSIZE
))
2155 pDWP
->winPos
[i
].cx
= cx
;
2156 pDWP
->winPos
[i
].cy
= cy
;
2158 pDWP
->winPos
[i
].flags
&= flags
| ~(SWP_NOSIZE
| SWP_NOMOVE
|
2159 SWP_NOZORDER
| SWP_NOREDRAW
|
2160 SWP_NOACTIVATE
| SWP_NOCOPYBITS
|
2162 pDWP
->winPos
[i
].flags
|= flags
& (SWP_SHOWWINDOW
| SWP_HIDEWINDOW
|
2168 if (pDWP
->actualCount
>= pDWP
->suggestedCount
)
2170 newhdwp
= USER_HEAP_REALLOC( hdwp
,
2171 sizeof(DWP
) + pDWP
->suggestedCount
*sizeof(WINDOWPOS
) );
2177 pDWP
= (DWP
*) USER_HEAP_LIN_ADDR( newhdwp
);
2178 pDWP
->suggestedCount
++;
2180 pDWP
->winPos
[pDWP
->actualCount
].hwnd
= hwnd
;
2181 pDWP
->winPos
[pDWP
->actualCount
].hwndInsertAfter
= hwndAfter
;
2182 pDWP
->winPos
[pDWP
->actualCount
].x
= x
;
2183 pDWP
->winPos
[pDWP
->actualCount
].y
= y
;
2184 pDWP
->winPos
[pDWP
->actualCount
].cx
= cx
;
2185 pDWP
->winPos
[pDWP
->actualCount
].cy
= cy
;
2186 pDWP
->winPos
[pDWP
->actualCount
].flags
= flags
;
2187 pDWP
->actualCount
++;
2195 /***********************************************************************
2196 * EndDeferWindowPos (USER32.@)
2198 BOOL WINAPI
EndDeferWindowPos( HDWP hdwp
)
2205 TRACE("%p\n", hdwp
);
2207 pDWP
= (DWP
*) USER_HEAP_LIN_ADDR( hdwp
);
2208 if (!pDWP
) return FALSE
;
2209 for (i
= 0, winpos
= pDWP
->winPos
; i
< pDWP
->actualCount
; i
++, winpos
++)
2211 TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
2212 winpos
->hwnd
, winpos
->hwndInsertAfter
, winpos
->x
, winpos
->y
,
2213 winpos
->cx
, winpos
->cy
, winpos
->flags
);
2215 if (!(res
= USER_SetWindowPos( winpos
))) break;
2217 USER_HEAP_FREE( hdwp
);
2222 /***********************************************************************
2223 * TileChildWindows (USER.199)
2225 void WINAPI
TileChildWindows16( HWND16 parent
, WORD action
)
2227 FIXME("(%04x, %d): stub\n", parent
, action
);
2230 /***********************************************************************
2231 * CascadeChildWindows (USER.198)
2233 void WINAPI
CascadeChildWindows16( HWND16 parent
, WORD action
)
2235 FIXME("(%04x, %d): stub\n", parent
, action
);