ReactOS 0.4.15-dev-6055-g36cdd34
winpos.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  _CVR
 
struct  _SMWP
 

Typedefs

typedef struct _CVR CVR
 
typedef struct _CVRPCVR
 
typedef struct _SMWP SMWP
 
typedef struct _SMWPPSMWP
 

Functions

FORCEINLINE BOOL IntPtInWindow (PWND pwnd, INT x, INT y)
 
FORCEINLINE BOOL IntEqualRect (RECTL *lprc1, RECTL *lprc2)
 
BOOL FASTCALL ActivateOtherWindowMin (PWND)
 
UINT FASTCALL co_WinPosArrangeIconicWindows (PWND parent)
 
BOOL FASTCALL IntGetClientOrigin (PWND Window, LPPOINT Point)
 
LRESULT FASTCALL co_WinPosGetNonClientSize (PWND Window, RECTL *WindowRect, RECTL *ClientRect)
 
UINT FASTCALL co_WinPosGetMinMaxInfo (PWND Window, POINT *MaxSize, POINT *MaxPos, POINT *MinTrack, POINT *MaxTrack)
 
UINT FASTCALL co_WinPosMinMaximize (PWND WindowObject, UINT ShowFlag, RECTL *NewPos)
 
BOOLEAN FASTCALL co_WinPosSetWindowPos (PWND Wnd, HWND WndInsertAfter, INT x, INT y, INT cx, INT cy, UINT flags)
 
BOOLEAN FASTCALL co_WinPosShowWindow (PWND Window, INT Cmd)
 
void FASTCALL co_WinPosSendSizeMove (PWND Window)
 
PWND APIENTRY co_WinPosWindowFromPoint (IN PWND ScopeWin, IN POINT *WinPoint, IN OUT USHORT *HitTest, IN BOOL Ignore)
 
VOID FASTCALL co_WinPosActivateOtherWindow (PWND)
 
PWND FASTCALL IntRealChildWindowFromPoint (PWND, LONG, LONG)
 
BOOL FASTCALL IntScreenToClient (PWND, LPPOINT)
 
BOOL FASTCALL IntClientToScreen (PWND, LPPOINT)
 
BOOL FASTCALL IntGetWindowRect (PWND, RECTL *)
 
BOOL UserHasWindowEdge (DWORD, DWORD)
 
VOID UserGetWindowBorders (DWORD, DWORD, SIZE *, BOOL)
 

Typedef Documentation

◆ CVR

typedef struct _CVR CVR

◆ PCVR

typedef struct _CVR * PCVR

◆ PSMWP

typedef struct _SMWP * PSMWP

◆ SMWP

typedef struct _SMWP SMWP

Function Documentation

◆ ActivateOtherWindowMin()

BOOL FASTCALL ActivateOtherWindowMin ( PWND  Wnd)

Definition at line 286 of file winpos.c.

287{
288 BOOL ActivePrev, FindTopWnd;
289 PWND pWndTopMost, pWndChild, pWndSetActive, pWndTemp, pWndDesk;
292
293 //ERR("AOWM 1 %p\n",Wnd->head.h);
294 ActivePrev = (pti->MessageQueue->spwndActivePrev != NULL);
295 FindTopWnd = TRUE;
296
297 if ((pWndTopMost = IntGetLastTopMostWindow()))
298 pWndChild = pWndTopMost->spwndNext;
299 else
300 pWndChild = Wnd->spwndParent->spwndChild;
301
302 for (;;)
303 {
304 if ( ActivePrev )
305 pWndSetActive = pti->MessageQueue->spwndActivePrev;
306 else
307 pWndSetActive = pWndChild;
308
309 pWndTemp = NULL;
310
311 while(pWndSetActive)
312 {
313 if ( VerifyWnd(pWndSetActive) &&
314 !(pWndSetActive->ExStyle & WS_EX_NOACTIVATE) &&
315 (pWndSetActive->style & (WS_VISIBLE|WS_DISABLED)) == WS_VISIBLE &&
316 (!(pWndSetActive->style & WS_ICONIC) /* FIXME MinMax pos? */ ) )
317 {
318 if (!(pWndSetActive->ExStyle & WS_EX_TOOLWINDOW) )
319 {
320 UserRefObjectCo(pWndSetActive, &Ref);
321 //ERR("ActivateOtherWindowMin Set FG 1\n");
322 co_IntSetForegroundWindow(pWndSetActive);
323 UserDerefObjectCo(pWndSetActive);
324 //ERR("AOWM 2 Exit Good %p\n",pWndSetActive->head.h);
325 return TRUE;
326 }
327 if (!pWndTemp ) pWndTemp = pWndSetActive;
328 }
329 if ( ActivePrev )
330 {
331 ActivePrev = FALSE;
332 pWndSetActive = pWndChild;
333 }
334 else
335 pWndSetActive = pWndSetActive->spwndNext;
336 }
337
338 if ( !FindTopWnd ) break;
339 FindTopWnd = FALSE;
340
341 if ( pWndChild )
342 {
343 pWndChild = pWndChild->spwndParent->spwndChild;
344 continue;
345 }
346
347 if (!(pWndDesk = IntGetThreadDesktopWindow(pti)))
348 {
349 pWndChild = NULL;
350 continue;
351 }
352 pWndChild = pWndDesk->spwndChild;
353 }
354
355 if ((pWndSetActive = pWndTemp))
356 {
357 UserRefObjectCo(pWndSetActive, &Ref);
358 //ERR("ActivateOtherWindowMin Set FG 2\n");
359 co_IntSetForegroundWindow(pWndSetActive);
360 UserDerefObjectCo(pWndSetActive);
361 //ERR("AOWM 3 Exit Good %p\n",pWndSetActive->head.h);
362 return TRUE;
363 }
364 //ERR("AOWM 4 Bad\n");
365 return FALSE;
366}
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
unsigned int BOOL
Definition: ntddk_ex.h:94
BOOL FASTCALL co_IntSetForegroundWindow(PWND Window)
Definition: focus.c:1550
#define for
Definition: utility.h:88
PWND FASTCALL IntGetLastTopMostWindow(VOID)
Definition: winpos.c:239
PTHREADINFO gptiCurrent
Definition: ntuser.c:15
static __inline VOID UserDerefObjectCo(PVOID obj)
Definition: object.h:40
static __inline VOID UserRefObjectCo(PVOID obj, PUSER_REFERENCE_ENTRY UserReferenceEntry)
Definition: object.h:27
#define WS_ICONIC
Definition: pedump.c:641
#define WS_VISIBLE
Definition: pedump.c:620
#define WS_DISABLED
Definition: pedump.c:621
struct _USER_MESSAGE_QUEUE * MessageQueue
Definition: win32.h:89
Definition: object.h:4
Definition: ntuser.h:689
DWORD ExStyle
Definition: ntuser.h:699
DWORD style
Definition: ntuser.h:701
struct _WND * spwndChild
Definition: ntuser.h:709
struct _WND * spwndNext
Definition: ntuser.h:706
struct _WND * spwndParent
Definition: ntuser.h:708
PWND FASTCALL IntGetThreadDesktopWindow(PTHREADINFO pti)
Definition: desktop.c:1359
PWND FASTCALL VerifyWnd(PWND pWnd)
Definition: window.c:86
#define WS_EX_NOACTIVATE
Definition: winuser.h:395
#define WS_EX_TOOLWINDOW
Definition: winuser.h:404

Referenced by co_WinPosShowWindow(), and UserSetActiveWindow().

◆ co_WinPosActivateOtherWindow()

VOID FASTCALL co_WinPosActivateOtherWindow ( PWND  Wnd)

Definition at line 398 of file winpos.c.

399{
400 PWND WndTo = NULL;
402
403 ASSERT_REFS_CO(Wnd);
404
405 if (IntIsDesktopWindow(Wnd))
406 {
407 //ERR("WinPosActivateOtherWindow Set Focus Msg Q No window!\n");
409 return;
410 }
411
412 /* If this is popup window, try to activate the owner first. */
413 if ((Wnd->style & WS_POPUP) && (WndTo = Wnd->spwndOwner))
414 {
415 TRACE("WPAOW Popup with Owner\n");
416 WndTo = UserGetAncestor( WndTo, GA_ROOT );
417 if (can_activate_window(WndTo)) goto done;
418 }
419
420 /* Pick a next top-level window. */
421 /* FIXME: Search for non-tooltip windows first. */
422 WndTo = Wnd;
423 for (;;)
424 {
425 if (!(WndTo = WndTo->spwndNext)) break;
426 if (can_activate_window( WndTo )) goto done;
427 }
428
429 /*
430 Fixes wine win.c:test_SetParent last ShowWindow test after popup dies.
431 Check for previous active window to bring to top.
432 */
433 if (Wnd)
434 {
435 WndTo = Wnd->head.pti->MessageQueue->spwndActivePrev;
436 if (can_activate_window( WndTo )) goto done;
437 }
438
439 // Find any window to bring to top. Works Okay for wine since it does not see X11 windows.
440 WndTo = UserGetDesktopWindow();
441 if ((WndTo == NULL) || (WndTo->spwndChild == NULL))
442 {
443 //ERR("WinPosActivateOtherWindow No window!\n");
444 return;
445 }
446 WndTo = WndTo->spwndChild;
447 for (;;)
448 {
449 if (WndTo == Wnd)
450 {
451 WndTo = NULL;
452 break;
453 }
454 if (can_activate_window( WndTo )) goto done;
455 if (!(WndTo = WndTo->spwndNext)) break;
456 }
457
458done:
459 if (WndTo) UserRefObjectCo(WndTo, &Ref);
460
462 {
463 /* ReactOS can pass WndTo = NULL to co_IntSetForegroundWindow and returns FALSE. */
464 //ERR("WinPosActivateOtherWindow Set FG 0x%p hWnd %p\n",WndTo, WndTo ? WndTo->head.h : 0);
465 if (co_IntSetForegroundWindow(WndTo))
466 {
467 if (WndTo) UserDerefObjectCo(WndTo);
468 return;
469 }
470 }
471 //ERR("WinPosActivateOtherWindow Set Active 0x%p\n",WndTo);
472 if (!UserSetActiveWindow(WndTo)) /* Ok for WndTo to be NULL here */
473 {
474 //ERR("WPAOW SA 1\n");
476 }
477 if (WndTo) UserDerefObjectCo(WndTo);
478}
BOOL FASTCALL UserSetActiveWindow(_In_opt_ PWND Wnd)
Definition: focus.c:1260
PUSER_MESSAGE_QUEUE gpqForeground
Definition: focus.c:13
static BOOL FASTCALL can_activate_window(PWND Wnd OPTIONAL)
Definition: winpos.c:374
#define WS_POPUP
Definition: pedump.c:616
#define TRACE(s)
Definition: solgame.cpp:4
struct _WND * spwndOwner
Definition: ntuser.h:710
THRDESKHEAD head
Definition: ntuser.h:690
PWND FASTCALL UserGetAncestor(PWND Wnd, UINT Type)
Definition: window.c:3334
#define ASSERT_REFS_CO(_obj_)
Definition: userfuncs.h:14
PWND FASTCALL UserGetDesktopWindow(VOID)
Definition: desktop.c:1386
VOID FASTCALL IntSetFocusMessageQueue(PUSER_MESSAGE_QUEUE NewQueue)
Definition: desktop.c:1319
#define IntIsDesktopWindow(WndObj)
Definition: window.h:25
#define GA_ROOT
Definition: winuser.h:2779

Referenced by co_WinPosShowWindow(), IntSendDestroyMsg(), and UserSetActiveWindow().

◆ co_WinPosArrangeIconicWindows()

UINT FASTCALL co_WinPosArrangeIconicWindows ( PWND  parent)

Definition at line 732 of file winpos.c.

733{
734 RECTL rectParent;
735 PWND Child;
736 INT x, y, xspacing, yspacing, sx, sy;
737
739
740 IntGetClientRect( parent, &rectParent );
741 // FIXME: Support Minimize Metrics gspv.mm.iArrange.
742 // Default: ARW_BOTTOMLEFT
743 x = rectParent.left;
744 y = rectParent.bottom;
745
748
749 Child = parent->spwndChild;
750 while(Child)
751 {
752 if((Child->style & WS_MINIMIZE) != 0 )
753 {
755 UserRefObjectCo(Child, &Ref);
756
758 sy = y - yspacing - UserGetSystemMetrics(SM_CYBORDER);
759
760 Child->InternalPos.IconPos.x = sx;
761 Child->InternalPos.IconPos.y = sy;
762 Child->InternalPos.flags |= WPF_MININIT;
763
765
767
768 if (x <= rectParent.right - xspacing)
769 x += xspacing;
770 else
771 {
772 x = rectParent.left;
773 y -= yspacing;
774 }
775 }
776 Child = Child->spwndNext;
777 }
778 return yspacing;
779}
r parent
Definition: btrfs.c:3010
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
#define WPF_MININIT
Definition: ntuser.h:681
BOOLEAN FASTCALL co_WinPosSetWindowPos(PWND Window, HWND WndInsertAfter, INT x, INT y, INT cx, INT cy, UINT flags)
Definition: winpos.c:1787
VOID FASTCALL IntGetClientRect(PWND Wnd, RECTL *Rect)
Definition: winpos.c:93
#define WS_MINIMIZE
Definition: pedump.c:622
long bottom
Definition: polytest.cpp:53
long right
Definition: polytest.cpp:53
long left
Definition: polytest.cpp:53
int32_t INT
Definition: typedefs.h:58
_Must_inspect_result_ _In_ WDFDEVICE _In_ WDFDEVICE Child
Definition: wdffdo.h:536
LONG NTAPI UserGetSystemMetrics(ULONG Index)
Definition: metric.c:208
#define SM_CXMINIMIZED
Definition: winuser.h:1014
#define SWP_NOACTIVATE
Definition: winuser.h:1232
#define SM_CYMINIMIZED
Definition: winuser.h:1015
#define SWP_ASYNCWINDOWPOS
Definition: winuser.h:1243
#define SM_CYBORDER
Definition: winuser.h:959
#define SWP_NOCOPYBITS
Definition: winuser.h:1233
#define SM_CXBORDER
Definition: winuser.h:958
#define SWP_NOZORDER
Definition: winuser.h:1237

Referenced by NtUserCallHwndLock().

◆ co_WinPosGetMinMaxInfo()

UINT FASTCALL co_WinPosGetMinMaxInfo ( PWND  Window,
POINT MaxSize,
POINT MaxPos,
POINT MinTrack,
POINT MaxTrack 
)

Definition at line 935 of file winpos.c.

937{
938 MINMAXINFO MinMax;
939 PMONITOR monitor;
940 INT xinc, yinc;
941 LONG style = Window->style;
942 LONG adjustedStyle;
943 LONG exstyle = Window->ExStyle;
944 RECT rc;
945 DWORD adjust;
946
948
949 /* Compute default values */
950
951 rc = Window->rcWindow;
952 MinMax.ptReserved.x = rc.left;
953 MinMax.ptReserved.y = rc.top;
954
955 if ((style & WS_CAPTION) == WS_CAPTION)
956 adjustedStyle = style & ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
957 else
958 adjustedStyle = style;
959
960 if (Window->spwndParent)
961 IntGetClientRect(Window->spwndParent, &rc);
962
963 adjust = IntGetWindowBorders(adjustedStyle, exstyle);
964
965 // Handle special case while maximized. CORE-15893
966 if ((adjustedStyle & WS_THICKFRAME) && !(adjustedStyle & WS_CHILD) && !(adjustedStyle & WS_MINIMIZE))
967 adjust += 1;
968
969 xinc = yinc = adjust;
970
971 if ((adjustedStyle & WS_THICKFRAME) && (adjustedStyle & WS_CHILD) && !(adjustedStyle & WS_MINIMIZE))
972 {
975 }
976
980
981 xinc = -rc.left;
982 yinc = -rc.top;
983
984 MinMax.ptMaxSize.x = rc.right - rc.left;
985 MinMax.ptMaxSize.y = rc.bottom - rc.top;
986 if (style & (WS_DLGFRAME | WS_BORDER))
987 {
990 }
991 else
992 {
993 MinMax.ptMinTrackSize.x = 2 * xinc;
994 MinMax.ptMinTrackSize.y = 2 * yinc;
995 }
998 MinMax.ptMaxPosition.x = -xinc;
999 MinMax.ptMaxPosition.y = -yinc;
1000
1001 if (!EMPTYPOINT(Window->InternalPos.MaxPos)) MinMax.ptMaxPosition = Window->InternalPos.MaxPos;
1002
1003 co_IntSendMessage(Window->head.h, WM_GETMINMAXINFO, 0, (LPARAM)&MinMax);
1004
1005 /* if the app didn't change the values, adapt them for the current monitor */
1006 if ((monitor = UserGetPrimaryMonitor()))
1007 {
1008 RECT rc_work;
1009
1010 rc_work = monitor->rcMonitor;
1011
1012 if (style & WS_MAXIMIZEBOX)
1013 {
1014 if ((style & WS_CAPTION) == WS_CAPTION || !(style & (WS_CHILD | WS_POPUP)))
1015 rc_work = monitor->rcWork;
1016 }
1017
1018 if (MinMax.ptMaxSize.x == UserGetSystemMetrics(SM_CXSCREEN) + 2 * xinc &&
1019 MinMax.ptMaxSize.y == UserGetSystemMetrics(SM_CYSCREEN) + 2 * yinc)
1020 {
1021 MinMax.ptMaxSize.x = (rc_work.right - rc_work.left) + 2 * xinc;
1022 MinMax.ptMaxSize.y = (rc_work.bottom - rc_work.top) + 2 * yinc;
1023 }
1024 if (MinMax.ptMaxPosition.x == -xinc && MinMax.ptMaxPosition.y == -yinc)
1025 {
1026 MinMax.ptMaxPosition.x = rc_work.left - xinc;
1027 MinMax.ptMaxPosition.y = rc_work.top - yinc;
1028 }
1029 if (MinMax.ptMaxSize.x >= (monitor->rcMonitor.right - monitor->rcMonitor.left) &&
1030 MinMax.ptMaxSize.y >= (monitor->rcMonitor.bottom - monitor->rcMonitor.top) )
1031 {
1033 }
1034 else
1035 Window->state &= ~WNDS_MAXIMIZESTOMONITOR;
1036 }
1037
1038
1039 MinMax.ptMaxTrackSize.x = max(MinMax.ptMaxTrackSize.x,
1040 MinMax.ptMinTrackSize.x);
1041 MinMax.ptMaxTrackSize.y = max(MinMax.ptMaxTrackSize.y,
1042 MinMax.ptMinTrackSize.y);
1043
1044 if (MaxSize)
1045 *MaxSize = MinMax.ptMaxSize;
1046 if (MaxPos)
1047 *MaxPos = MinMax.ptMaxPosition;
1048 if (MinTrack)
1049 *MinTrack = MinMax.ptMinTrackSize;
1050 if (MaxTrack)
1051 *MaxTrack = MinMax.ptMaxTrackSize;
1052
1053 return 0; // FIXME: What does it return? Wine returns MINMAXINFO.
1054}
Arabic default style
Definition: afstyles.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
#define WNDS_MAXIMIZESTOMONITOR
Definition: ntuser.h:630
#define EMPTYPOINT(pt)
Definition: winpos.c:30
DWORD IntGetWindowBorders(DWORD Style, DWORD ExStyle)
Definition: winpos.c:916
#define WS_CHILD
Definition: pedump.c:617
#define WS_CAPTION
Definition: pedump.c:624
#define WS_MAXIMIZEBOX
Definition: pedump.c:632
#define WS_BORDER
Definition: pedump.c:625
long LONG
Definition: pedump.c:60
#define WS_DLGFRAME
Definition: pedump.c:626
#define WS_THICKFRAME
Definition: pedump.c:630
Definition: window.c:28
RECT rcWork
Definition: monitor.h:19
RECT rcMonitor
Definition: monitor.h:18
POINT ptMaxPosition
Definition: winuser.h:3619
POINT ptMaxSize
Definition: winuser.h:3618
POINT ptMinTrackSize
Definition: winuser.h:3620
POINT ptReserved
Definition: winuser.h:3617
POINT ptMaxTrackSize
Definition: winuser.h:3621
long y
Definition: polytest.cpp:48
long x
Definition: polytest.cpp:48
LONG right
Definition: windef.h:308
LONG bottom
Definition: windef.h:309
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
#define max(a, b)
Definition: svc.c:63
VOID FASTCALL RECTL_vInflateRect(_Inout_ RECTL *rect, _In_ INT dx, _In_ INT dy)
Definition: rect.c:101
LRESULT FASTCALL co_IntSendMessage(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
Definition: message.c:1446
PMONITOR NTAPI UserGetPrimaryMonitor(VOID)
Definition: monitor.c:102
LONG_PTR LPARAM
Definition: windef.h:208
#define SM_CYSCREEN
Definition: winuser.h:954
#define SM_CXMINTRACK
Definition: winuser.h:991
#define SM_CXFRAME
Definition: winuser.h:988
#define SM_CYFRAME
Definition: winuser.h:990
#define SM_CXMAXTRACK
Definition: winuser.h:1016
#define WM_GETMINMAXINFO
Definition: winuser.h:1630
#define SM_CYMAXTRACK
Definition: winuser.h:1017
#define SM_CXDLGFRAME
Definition: winuser.h:960
#define SM_CYDLGFRAME
Definition: winuser.h:962
#define SM_CXSCREEN
Definition: winuser.h:953
#define SM_CYMINTRACK
Definition: winuser.h:992

Referenced by co_UserCreateWindowEx(), co_WinPosMinMaximize(), DefWndDoSizeMove(), and DefWndHandleWindowPosChanging().

◆ co_WinPosGetNonClientSize()

LRESULT FASTCALL co_WinPosGetNonClientSize ( PWND  Window,
RECTL WindowRect,
RECTL ClientRect 
)

◆ co_WinPosMinMaximize()

UINT FASTCALL co_WinPosMinMaximize ( PWND  WindowObject,
UINT  ShowFlag,
RECTL NewPos 
)

◆ co_WinPosSendSizeMove()

void FASTCALL co_WinPosSendSizeMove ( PWND  Window)

Definition at line 2382 of file winpos.c.

2383{
2384 RECTL Rect;
2385 LPARAM lParam;
2387
2388 IntGetClientRect(Wnd, &Rect);
2389 lParam = MAKELONG(Rect.right-Rect.left, Rect.bottom-Rect.top);
2390
2391 Wnd->state &= ~WNDS_SENDSIZEMOVEMSGS;
2392
2393 if (Wnd->style & WS_MAXIMIZE)
2394 {
2396 }
2397 else if (Wnd->style & WS_MINIMIZE)
2398 {
2400 lParam = 0;
2401 }
2402
2404
2405 if (UserIsDesktopWindow(Wnd->spwndParent))
2406 lParam = MAKELONG(Wnd->rcClient.left, Wnd->rcClient.top);
2407 else
2408 lParam = MAKELONG(Wnd->rcClient.left-Wnd->spwndParent->rcClient.left, Wnd->rcClient.top-Wnd->spwndParent->rcClient.top);
2409
2411
2413}
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
VOID FASTCALL IntEngWindowChanged(_In_ struct _WND *Window, _In_ FLONG flChanged)
#define UserHMGetHandle(obj)
Definition: ntuser.h:230
#define WS_MAXIMIZE
Definition: pedump.c:623
#define MAKELONG(a, b)
Definition: typedefs.h:249
#define UserIsDesktopWindow(pWnd)
Definition: desktop.h:194
LRESULT FASTCALL co_IntSendMessageNoWait(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
Definition: message.c:1710
#define WOC_RGN_CLIENT
Definition: winddi.h:1265
UINT_PTR WPARAM
Definition: windef.h:207
#define WM_SIZE
Definition: winuser.h:1601
#define SIZE_MINIMIZED
Definition: winuser.h:2496
#define SIZE_MAXIMIZED
Definition: winuser.h:2497
#define WM_MOVE
Definition: winuser.h:1600
#define SIZE_RESTORED
Definition: winuser.h:2495

Referenced by co_UserCreateWindowEx(), and co_WinPosShowWindow().

◆ co_WinPosSetWindowPos()

BOOLEAN FASTCALL co_WinPosSetWindowPos ( PWND  Wnd,
HWND  WndInsertAfter,
INT  x,
INT  y,
INT  cx,
INT  cy,
UINT  flags 
)

Definition at line 1787 of file winpos.c.

1796{
1797 WINDOWPOS WinPos;
1798 RECTL NewWindowRect;
1799 RECTL NewClientRect;
1800 RECTL valid_rects[2];
1801 PREGION VisBefore = NULL;
1802 PREGION VisBeforeJustClient = NULL;
1803 PREGION VisAfter = NULL;
1805 ULONG WvrFlags = 0;
1806 RECTL OldWindowRect, OldClientRect;
1807 int RgnType;
1808 HDC Dc;
1810 PWND Ancestor;
1811 BOOL bPointerInWindow, PosChanged = FALSE;
1813
1815
1816 TRACE("pwnd %p, after %p, %d,%d (%dx%d), flags 0x%x\n",
1817 Window, WndInsertAfter, x, y, cx, cy, flags);
1818#if DBG
1819 dump_winpos_flags(flags);
1820#endif
1821
1822 /* FIXME: Get current active window from active queue. Why? since r2915. */
1823
1824 bPointerInWindow = IntPtInWindow(Window, gpsi->ptCursor.x, gpsi->ptCursor.y);
1825
1826 WinPos.hwnd = Window->head.h;
1827 WinPos.hwndInsertAfter = WndInsertAfter;
1828 WinPos.x = x;
1829 WinPos.y = y;
1830 WinPos.cx = cx;
1831 WinPos.cy = cy;
1832 WinPos.flags = flags;
1833
1834 if ( flags & SWP_ASYNCWINDOWPOS )
1835 {
1836 LRESULT lRes;
1838 if ( ppos )
1839 {
1840 WinPos.flags &= ~SWP_ASYNCWINDOWPOS; // Clear flag.
1841 *ppos = WinPos;
1842 /* Yes it's a pointer inside Win32k! */
1843 lRes = co_IntSendMessageNoWait( WinPos.hwnd, WM_ASYNC_SETWINDOWPOS, 0, (LPARAM)ppos);
1844 /* We handle this the same way as Event Hooks and Hooks. */
1845 if ( !lRes )
1846 {
1848 return FALSE;
1849 }
1850 return TRUE;
1851 }
1852 return FALSE;
1853 }
1854
1855 co_WinPosDoWinPosChanging(Window, &WinPos, &NewWindowRect, &NewClientRect);
1856
1857 /* Does the window still exist? */
1858 if (!IntIsWindow(WinPos.hwnd))
1859 {
1860 TRACE("WinPosSetWindowPos: Invalid handle 0x%p!\n",WinPos.hwnd);
1862 return FALSE;
1863 }
1864
1865 /* Fix up the flags. */
1866 if (!WinPosFixupFlags(&WinPos, Window))
1867 {
1868 // See Note.
1869 return TRUE;
1870 }
1871
1872 Ancestor = UserGetAncestor(Window, GA_PARENT);
1873 if ( (WinPos.flags & (SWP_NOZORDER | SWP_HIDEWINDOW | SWP_SHOWWINDOW)) != SWP_NOZORDER &&
1874 Ancestor && Ancestor->head.h == IntGetDesktopWindow() )
1875 {
1877 }
1878
1879 if (!(WinPos.flags & SWP_NOREDRAW))
1880 {
1881 /* Compute the visible region before the window position is changed */
1882 if (!(WinPos.flags & SWP_SHOWWINDOW) &&
1883 (WinPos.flags & (SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
1886 {
1888 (Window->style & WS_CLIPSIBLINGS) ? TRUE : FALSE);
1889
1890 if ( VisBefore != NULL &&
1891 REGION_Complexity(VisBefore) == NULLREGION )
1892 {
1893 REGION_Delete(VisBefore);
1894 VisBefore = NULL;
1895 }
1896 else if(VisBefore)
1897 {
1898 REGION_bOffsetRgn(VisBefore, -Window->rcWindow.left, -Window->rcWindow.top);
1899 }
1900
1901 /* Calculate the non client area for resizes, as this is used in the copy region */
1902 if ((WinPos.flags & (SWP_NOSIZE | SWP_FRAMECHANGED)) != SWP_NOSIZE)
1903 {
1904 VisBeforeJustClient = VIS_ComputeVisibleRegion(Window, TRUE, FALSE,
1905 (Window->style & WS_CLIPSIBLINGS) ? TRUE : FALSE);
1906
1907 if ( VisBeforeJustClient != NULL &&
1908 REGION_Complexity(VisBeforeJustClient) == NULLREGION )
1909 {
1910 REGION_Delete(VisBeforeJustClient);
1911 VisBeforeJustClient = NULL;
1912 }
1913 else if(VisBeforeJustClient)
1914 {
1915 REGION_bOffsetRgn(VisBeforeJustClient, -Window->rcWindow.left, -Window->rcWindow.top);
1916 }
1917 }
1918 }
1919 }
1920
1922 if (Window->hrgnNewFrame)
1923 {
1924 SelectWindowRgn( Window, Window->hrgnNewFrame ); // Should be PSMWP->acvr->hrgnClip
1925 Window->hrgnNewFrame = NULL;
1926 }
1927
1928 WvrFlags = co_WinPosDoNCCALCSize(Window, &WinPos, &NewWindowRect, &NewClientRect, valid_rects);
1929
1930// ERR("co_WinPosDoNCCALCSize returned 0x%x\n valid dest: %d %d %d %d\n valid src : %d %d %d %d\n", WvrFlags,
1931// valid_rects[0].left,valid_rects[0].top,valid_rects[0].right,valid_rects[0].bottom,
1932// valid_rects[1].left,valid_rects[1].top,valid_rects[1].right,valid_rects[1].bottom);
1933
1934 /* Validate link windows. (also take into account shell window in hwndShellWindow) */
1935 if (!(WinPos.flags & SWP_NOZORDER) && WinPos.hwnd != UserGetShellWindow())
1936 {
1938 }
1939
1940 OldWindowRect = Window->rcWindow;
1941 OldClientRect = Window->rcClient;
1942
1943 if (NewClientRect.left != OldClientRect.left ||
1944 NewClientRect.top != OldClientRect.top)
1945 {
1946 // Move child window if their parent is moved. Keep Child window relative to Parent...
1948 NewClientRect.left - OldClientRect.left,
1949 NewClientRect.top - OldClientRect.top);
1950 PosChanged = TRUE;
1951 }
1952
1953 Window->rcWindow = NewWindowRect;
1954 Window->rcClient = NewClientRect;
1955
1956 /* erase parent when hiding or resizing child */
1957 if (WinPos.flags & SWP_HIDEWINDOW)
1958 {
1959 /* Clear the update region */
1961 NULL,
1962 0,
1964
1965 if (UserIsDesktopWindow(Window->spwndParent))
1967
1968 Window->style &= ~WS_VISIBLE; //IntSetStyle( Window, 0, WS_VISIBLE );
1969 Window->head.pti->cVisWindows--;
1971 }
1972 else if (WinPos.flags & SWP_SHOWWINDOW)
1973 {
1974 if (Window->style & WS_CHILD)
1975 {
1976 if ((Window->style & WS_POPUP) && (Window->ExStyle & WS_EX_APPWINDOW))
1977 {
1979 if (!(WinPos.flags & SWP_NOACTIVATE))
1981 }
1982 }
1983 else if ((Window->ExStyle & WS_EX_APPWINDOW) ||
1984 (!(Window->ExStyle & WS_EX_TOOLWINDOW) && !Window->spwndOwner &&
1985 (!Window->spwndParent || UserIsDesktopWindow(Window->spwndParent))))
1986 {
1988 {
1990 if (!(WinPos.flags & SWP_NOACTIVATE))
1992 }
1993 }
1994
1995 Window->style |= WS_VISIBLE; //IntSetStyle( Window, WS_VISIBLE, 0 );
1996 Window->head.pti->cVisWindows++;
1998 }
1999 else
2000 {
2002 }
2003
2004 if (Window->hrgnUpdate != NULL && Window->hrgnUpdate != HRGN_WINDOW)
2005 {
2006 NtGdiOffsetRgn(Window->hrgnUpdate,
2007 NewWindowRect.left - OldWindowRect.left,
2008 NewWindowRect.top - OldWindowRect.top);
2009 }
2010
2011 DceResetActiveDCEs(Window); // For WS_VISIBLE changes.
2012
2013 // Change or update, set send non-client paint flag.
2014 if ( Window->style & WS_VISIBLE &&
2015 (WinPos.flags & SWP_STATECHANGED || (!(Window->state2 & WNDS2_WIN31COMPAT) && WinPos.flags & SWP_NOREDRAW ) ) )
2016 {
2017 TRACE("Set WNDS_SENDNCPAINT %p\n",Window);
2018 Window->state |= WNDS_SENDNCPAINT;
2019 }
2020
2021 if (!(WinPos.flags & SWP_NOREDRAW) && ((WinPos.flags & SWP_AGG_STATUSFLAGS) != SWP_AGG_NOPOSCHANGE))
2022 {
2023 /* Determine the new visible region */
2025 (Window->style & WS_CLIPSIBLINGS) ? TRUE : FALSE);
2026
2027 if ( VisAfter != NULL &&
2028 REGION_Complexity(VisAfter) == NULLREGION )
2029 {
2030 REGION_Delete(VisAfter);
2031 VisAfter = NULL;
2032 }
2033 else if(VisAfter)
2034 {
2035 REGION_bOffsetRgn(VisAfter, -Window->rcWindow.left, -Window->rcWindow.top);
2036 }
2037
2038 /*
2039 * Determine which pixels can be copied from the old window position
2040 * to the new. Those pixels must be visible in both the old and new
2041 * position. Also, check the class style to see if the windows of this
2042 * class need to be completely repainted on (horizontal/vertical) size
2043 * change.
2044 */
2045 if ( ( VisBefore != NULL &&
2046 VisAfter != NULL &&
2047 !(WinPos.flags & SWP_NOCOPYBITS) &&
2048 ((WinPos.flags & SWP_NOSIZE) || !(WvrFlags & WVR_REDRAW)) &&
2049 !(Window->ExStyle & WS_EX_TRANSPARENT) ) )
2050 {
2051
2052 /*
2053 * If this is (also) a window resize, the whole nonclient area
2054 * needs to be repainted. So we limit the copy to the client area,
2055 * 'cause there is no use in copying it (would possibly cause
2056 * "flashing" too). However, if the copy region is already empty,
2057 * we don't have to crop (can't take anything away from an empty
2058 * region...)
2059 */
2060
2061 CopyRgn = IntSysCreateRectpRgn(0, 0, 0, 0);
2062 if ((WinPos.flags & SWP_NOSIZE) && (WinPos.flags & SWP_NOCLIENTSIZE))
2063 RgnType = IntGdiCombineRgn(CopyRgn, VisAfter, VisBefore, RGN_AND);
2064 else if (VisBeforeJustClient != NULL)
2065 {
2066 RgnType = IntGdiCombineRgn(CopyRgn, VisAfter, VisBeforeJustClient, RGN_AND);
2067 }
2068
2069 if (VisBeforeJustClient != NULL)
2070 {
2071 REGION_Delete(VisBeforeJustClient);
2072 }
2073
2074 /* Now use in copying bits which are in the update region. */
2075 if (Window->hrgnUpdate != NULL)
2076 {
2077 PREGION RgnUpdate = REGION_LockRgn(Window->hrgnUpdate);
2078 if (RgnUpdate)
2079 {
2080 REGION_bOffsetRgn(CopyRgn, NewWindowRect.left, NewWindowRect.top);
2082 REGION_bOffsetRgn(CopyRgn, -NewWindowRect.left, -NewWindowRect.top);
2083 REGION_UnlockRgn(RgnUpdate);
2084 }
2085 }
2086
2087 /*
2088 * Now, get the bounding box of the copy region. If it's empty
2089 * there's nothing to copy. Also, it's no use copying bits onto
2090 * themselves.
2091 */
2093 {
2094 /* Nothing to copy, clean up */
2096 CopyRgn = NULL;
2097 }
2098 else if ( OldWindowRect.left != NewWindowRect.left ||
2099 OldWindowRect.top != NewWindowRect.top ||
2100 (WinPos.flags & SWP_FRAMECHANGED) )
2101 {
2102 HRGN DcRgn = NtGdiCreateRectRgn(0, 0, 0, 0);
2103 PREGION DcRgnObj = REGION_LockRgn(DcRgn);
2104
2105 /*
2106 * Small trick here: there is no function to bitblt a region. So
2107 * we set the region as the clipping region, take the bounding box
2108 * of the region and bitblt that. Since nothing outside the clipping
2109 * region is copied, this has the effect of bitblt'ing the region.
2110 *
2111 * Since NtUserGetDCEx takes ownership of the clip region, we need
2112 * to create a copy of CopyRgn and pass that. We need CopyRgn later
2113 */
2115 REGION_bOffsetRgn(DcRgnObj, NewWindowRect.left, NewWindowRect.top);
2116 REGION_UnlockRgn(DcRgnObj);
2117 Dc = UserGetDCEx( Window,
2118 DcRgn,
2119 DCX_WINDOW|DCX_CACHE|DCX_INTERSECTRGN|DCX_CLIPSIBLINGS|DCX_KEEPCLIPRGN); // DCX_WINDOW will set first, go read WinDC.c.
2120 NtGdiBitBlt( Dc,
2121 CopyRect.left, CopyRect.top,
2122 CopyRect.right - CopyRect.left,
2123 CopyRect.bottom - CopyRect.top,
2124 Dc,
2125 CopyRect.left + (OldWindowRect.left - NewWindowRect.left),
2126 CopyRect.top + (OldWindowRect.top - NewWindowRect.top),
2127 SRCCOPY,
2128 0,
2129 0);
2130
2133 GreDeleteObject(DcRgn);
2134 }
2135 }
2136 else
2137 {
2138 CopyRgn = NULL;
2139 }
2140
2141 /* We need to redraw what wasn't visible before or force a redraw */
2142 if (VisAfter != NULL)
2143 {
2144 PREGION DirtyRgn = IntSysCreateRectpRgn(0, 0, 0, 0);
2145 if (DirtyRgn)
2146 {
2147 if (CopyRgn != NULL)
2148 {
2149 RgnType = IntGdiCombineRgn(DirtyRgn, VisAfter, CopyRgn, RGN_DIFF);
2150 }
2151 else
2152 {
2153 RgnType = IntGdiCombineRgn(DirtyRgn, VisAfter, 0, RGN_COPY);
2154 }
2155
2156 if (RgnType != ERROR && RgnType != NULLREGION) // Regions moved.
2157 {
2158 /* old code
2159 NtGdiOffsetRgn(DirtyRgn, Window->rcWindow.left, Window->rcWindow.top);
2160 IntInvalidateWindows( Window,
2161 DirtyRgn,
2162 RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN);
2163 }
2164 GreDeleteObject(DirtyRgn);
2165 */
2166
2167 PWND Parent = Window->spwndParent;
2168
2169 REGION_bOffsetRgn( DirtyRgn, Window->rcWindow.left, Window->rcWindow.top);
2170
2171 if ( (Window->style & WS_CHILD) && (Parent) && !(Parent->style & WS_CLIPCHILDREN))
2172 {
2175 }
2177 }
2178 else if ( RgnType != ERROR && RgnType == NULLREGION ) // Must be the same. See CORE-7166 & CORE-15934, NC HACK fix.
2179 {
2180 if ( !PosChanged &&
2181 !(WinPos.flags & SWP_DEFERERASE) &&
2182 (WinPos.flags & SWP_FRAMECHANGED) )
2183 {
2184 PWND pwnd = Window;
2185 PWND Parent = Window->spwndParent;
2186
2187 if ( pwnd->style & WS_CHILD ) // Fix ProgMan menu bar drawing.
2188 {
2189 TRACE("SWP_FRAMECHANGED win child %p Parent %p\n",pwnd,Parent);
2190 pwnd = Parent ? Parent : pwnd;
2191 }
2192
2193 if ( !(pwnd->style & WS_CHILD) )
2194 {
2195 /*
2196 * Check if we have these specific windows style bits set/reset.
2197 * FIXME: There may be other combinations of styles that need this handling as well.
2198 * This fixes the ReactOS Calculator buttons disappearing in CORE-16827.
2199 */
2200 if ((Window->style & WS_CLIPSIBLINGS) && !(Window->style & (WS_POPUP | WS_CLIPCHILDREN | WS_SIZEBOX)))
2201 {
2202 IntSendNCPaint(pwnd, HRGN_WINDOW); // Paint the whole frame.
2203 }
2204 else // Use region handling
2205 {
2206 HRGN DcRgn = NtGdiCreateRectRgn(0, 0, 0, 0);
2207 PREGION DcRgnObj = REGION_LockRgn(DcRgn);
2208 TRACE("SWP_FRAMECHANGED win %p hRgn %p\n",pwnd, DcRgn);
2209 IntGdiCombineRgn(DcRgnObj, VisBefore, NULL, RGN_COPY);
2210 REGION_UnlockRgn(DcRgnObj);
2211 ForceNCPaintErase(pwnd, DcRgn, DcRgnObj);
2212 GreDeleteObject(DcRgn);
2213 }
2214 }
2215 }
2216 }
2217 REGION_Delete(DirtyRgn);
2218 }
2219 }
2220
2221 if (CopyRgn != NULL)
2222 {
2224 }
2225
2226 /* Expose what was covered before but not covered anymore */
2227 if ( VisBefore != NULL )
2228 {
2229 PREGION ExposedRgn = IntSysCreateRectpRgn(0, 0, 0, 0);
2230 if (ExposedRgn)
2231 {
2232 RgnType = IntGdiCombineRgn(ExposedRgn, VisBefore, NULL, RGN_COPY);
2233 REGION_bOffsetRgn(ExposedRgn,
2234 OldWindowRect.left - NewWindowRect.left,
2235 OldWindowRect.top - NewWindowRect.top);
2236
2237 if ( VisAfter != NULL )
2238 RgnType = IntGdiCombineRgn(ExposedRgn, ExposedRgn, VisAfter, RGN_DIFF);
2239
2240 if (RgnType != ERROR && RgnType != NULLREGION)
2241 {
2243 }
2244 REGION_Delete(ExposedRgn);
2245 }
2246 REGION_Delete(VisBefore);
2247 }
2248
2249 if (VisAfter != NULL)
2250 {
2251 REGION_Delete(VisAfter);
2252 }
2253 }
2254
2255 if (!(WinPos.flags & (SWP_NOACTIVATE|SWP_HIDEWINDOW)))
2256 {
2257 if ((Window->style & (WS_CHILD | WS_POPUP)) == WS_CHILD)
2258 {
2260 }
2261 else
2262 {
2263 //ERR("SetWindowPos Set FG Window!\n");
2264 if ( pti->MessageQueue->spwndActive != Window ||
2265 pti->MessageQueue != gpqForeground )
2266 {
2267 //ERR("WPSWP : set active window\n");
2268 if (!(Window->state & WNDS_BEINGACTIVATED)) // Inside SAW?
2269 {
2270 co_IntSetForegroundWindow(Window); // Fixes SW_HIDE issues. Wine win test_SetActiveWindow & test_SetForegroundWindow.
2271 }
2272 }
2273 }
2274 }
2275
2276 if ( !PosChanged &&
2277 (WinPos.flags & SWP_FRAMECHANGED) &&
2278 !(WinPos.flags & SWP_DEFERERASE) && // Prevent sending WM_SYNCPAINT message.
2279 VisAfter )
2280 {
2281 PWND Parent = Window->spwndParent;
2282 if ( !(Window->style & WS_CHILD) && (Parent) && (Parent->style & WS_CLIPCHILDREN))
2283 {
2284 TRACE("SWP_FRAMECHANGED Parent %p WS_CLIPCHILDREN %p\n",Parent,Window);
2285 UserSyncAndPaintWindows( Parent, RDW_CLIPCHILDREN); // NC should redraw here, see NC HACK fix.
2286 }
2287 }
2288
2289 // Fix wine msg test_SetFocus, prevents sending WM_WINDOWPOSCHANGED.
2290 if ( VisBefore == NULL &&
2291 VisBeforeJustClient == NULL &&
2292 !(Window->ExStyle & WS_EX_TOPMOST) &&
2294 {
2295 TRACE("No drawing, set no Z order and no redraw!\n");
2297 }
2298
2299 if(!(flags & SWP_DEFERERASE))
2300 {
2301 /* erase parent when hiding or resizing child */
2302 if ((flags & SWP_HIDEWINDOW) ||
2303 (!(flags & SWP_SHOWWINDOW) &&
2305 {
2306 PWND Parent = Window->spwndParent;
2309 }
2310
2311 /* Give newly shown windows a chance to redraw */
2314 {
2316 }
2317 }
2318
2319 /* And last, send the WM_WINDOWPOSCHANGED message */
2320
2321 TRACE("\tstatus hwnd %p flags = %04x\n",Window?Window->head.h:NULL,WinPos.flags & SWP_AGG_STATUSFLAGS);
2322
2325 {
2326 /* WM_WINDOWPOSCHANGED is sent even if SWP_NOSENDCHANGING is set
2327 and always contains final window position.
2328 */
2329 WinPos.x = NewWindowRect.left;
2330 WinPos.y = NewWindowRect.top;
2331 WinPos.cx = NewWindowRect.right - NewWindowRect.left;
2332 WinPos.cy = NewWindowRect.bottom - NewWindowRect.top;
2333 TRACE("WM_WINDOWPOSCHANGED hwnd %p Flags %04x\n",WinPos.hwnd,WinPos.flags);
2335 }
2336
2337 if ( WinPos.flags & SWP_FRAMECHANGED || WinPos.flags & SWP_STATECHANGED ||
2338 !(WinPos.flags & SWP_NOCLIENTSIZE) || !(WinPos.flags & SWP_NOCLIENTMOVE) )
2339 {
2340 PWND pWnd = ValidateHwndNoErr(WinPos.hwnd);
2341 if (pWnd)
2342 IntNotifyWinEvent(EVENT_OBJECT_LOCATIONCHANGE, pWnd, OBJID_WINDOW, CHILDID_SELF, WEF_SETBYWNDPTI);
2343 }
2344
2345 /* Send WM_IME_SYSTEM:IMS_UPDATEIMEUI to the IME windows if necessary */
2346 if ((WinPos.flags & (SWP_NOMOVE | SWP_NOSIZE)) != (SWP_NOMOVE | SWP_NOSIZE))
2347 {
2348 if (IS_IMM_MODE())
2350 }
2351
2352 if(bPointerInWindow != IntPtInWindow(Window, gpsi->ptCursor.x, gpsi->ptCursor.y))
2353 {
2354 /* Generate mouse move message */
2355 MSG msg;
2356 msg.message = WM_MOUSEMOVE;
2357 msg.wParam = UserGetMouseButtonsState();
2358 msg.lParam = MAKELPARAM(gpsi->ptCursor.x, gpsi->ptCursor.y);
2359 msg.pt = gpsi->ptCursor;
2361 }
2362
2363 return TRUE;
2364}
ACPI_PHYSICAL_ADDRESS ACPI_SIZE BOOLEAN Warn UINT32 *TableIdx UINT32 ACPI_TABLE_HEADER *OutTableHeader ACPI_TABLE_HEADER **OutTable ACPI_HANDLE UINT32 ACPI_WALK_CALLBACK ACPI_WALK_CALLBACK void void **ReturnValue UINT32 ACPI_BUFFER *RetPathPtr ACPI_OBJECT_HANDLER void *Data ACPI_OBJECT_HANDLER void **Data ACPI_STRING ACPI_OBJECT_LIST ACPI_BUFFER *ReturnObjectBuffer ACPI_DEVICE_INFO **ReturnBuffer ACPI_HANDLE Parent
Definition: acpixf.h:732
#define msg(x)
Definition: auth_time.c:54
#define SWP_NOCLIENTSIZE
Definition: msg.h:29
#define SWP_NOCLIENTMOVE
Definition: msg.h:30
VOID FASTCALL DceResetActiveDCEs(PWND Window)
Definition: windc.c:816
PSERVERINFO gpsi
Definition: imm.c:18
#define ValidateHwndNoErr(hwnd)
Definition: precomp.h:84
#define ExAllocatePoolWithTag(hernya, size, tag)
Definition: env_spec_w32.h:350
#define PagedPool
Definition: env_spec_w32.h:308
#define ERROR(name)
Definition: error_private.h:53
BOOL FASTCALL IntCheckFullscreen(PWND Window)
Definition: focus.c:79
VOID FASTCALL UpdateShellHook(PWND Window)
Definition: focus.c:99
GLbitfield flags
Definition: glext.h:7161
#define WNDS2_WIN31COMPAT
Definition: ntuser.h:644
#define WNDS_BEINGACTIVATED
Definition: ntuser.h:620
#define WNDS_SENDNCPAINT
Definition: ntuser.h:611
#define IS_IMM_MODE()
Definition: ntuser.h:1232
#define WEF_SETBYWNDPTI
Definition: ntuser.h:235
#define HRGN_WINDOW
Definition: ntuser.h:356
#define ExFreePoolWithTag(_P, _T)
Definition: module.h:1109
static HDC
Definition: imagelist.c:92
#define SWP_STATECHANGED
Definition: msg.c:42
VOID FASTCALL co_MsqInsertMouseMessage(MSG *Msg, DWORD flags, ULONG_PTR dwExtraInfo, BOOL Hook)
Definition: msgqueue.c:580
@ WM_ASYNC_SETWINDOWPOS
Definition: msgqueue.h:118
__kernel_entry W32KAPI BOOL APIENTRY NtGdiBitBlt(_In_ HDC hdcDst, _In_ INT x, _In_ INT y, _In_ INT cx, _In_ INT cy, _In_opt_ HDC hdcSrc, _In_ INT xSrc, _In_ INT ySrc, _In_ DWORD rop4, _In_ DWORD crBackColor, _In_ FLONG fl)
__kernel_entry W32KAPI HRGN APIENTRY NtGdiCreateRectRgn(_In_ INT xLeft, _In_ INT yTop, _In_ INT xRight, _In_ INT yBottom)
__kernel_entry W32KAPI INT APIENTRY NtGdiOffsetRgn(_In_ HRGN hrgn, _In_ INT cx, _In_ INT cy)
Definition: region.c:3980
PVOID NTAPI PsGetCurrentThreadWin32Thread(VOID)
Definition: thread.c:805
static BOOL FASTCALL co_WinPosDoWinPosChanging(PWND Window, PWINDOWPOS WinPos, PRECTL WindowRect, PRECTL ClientRect)
Definition: winpos.c:1268
static BOOL FASTCALL WinPosFixupFlags(WINDOWPOS *WinPos, PWND Wnd)
Definition: winpos.c:1552
VOID ForceNCPaintErase(PWND Wnd, HRGN hRgn, PREGION pRgn)
Definition: winpos.c:1692
#define SWP_AGG_STATUSFLAGS
Definition: winpos.c:25
static VOID FASTCALL WinPosInternalMoveWindow(PWND Window, INT MoveX, INT MoveY)
Definition: winpos.c:1522
static BOOL IntValidateParent(PWND Child, PREGION ValidateRgn)
Definition: winpos.c:1058
#define SWP_AGG_NOCLIENTCHANGE
Definition: winpos.c:27
static HWND FASTCALL WinPosDoOwnedPopups(PWND Window, HWND hWndInsertAfter)
Definition: winpos.c:1356
#define SWP_AGG_NOGEOMETRYCHANGE
Definition: winpos.c:21
#define SWP_AGG_NOPOSCHANGE
Definition: winpos.c:23
VOID SelectWindowRgn(PWND Window, HRGN hRgnClip)
Definition: winpos.c:260
static LONG FASTCALL co_WinPosDoNCCALCSize(PWND Window, PWINDOWPOS WinPos, RECTL *WindowRect, RECTL *ClientRect, RECTL *validRects)
Definition: winpos.c:1181
static VOID FASTCALL IntImeWindowPosChanged(VOID)
Definition: winpos.c:1748
#define RDW_CLIPCHILDREN
Definition: painting.h:15
#define WS_SIZEBOX
Definition: pedump.c:642
#define WS_EX_TOPMOST
Definition: pedump.c:647
#define WS_EX_TRANSPARENT
Definition: pedump.c:649
#define WS_CLIPSIBLINGS
Definition: pedump.c:618
#define WS_CLIPCHILDREN
Definition: pedump.c:619
_Out_opt_ int _Out_opt_ int * cy
Definition: commctrl.h:586
_Out_opt_ int * cx
Definition: commctrl.h:585
long top
Definition: polytest.cpp:53
Definition: region.h:8
HWND hwnd
Definition: winuser.h:3578
UINT flags
Definition: winuser.h:3584
HWND hwndInsertAfter
Definition: winuser.h:3579
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
uint32_t ULONG
Definition: typedefs.h:59
#define DCX_KEEPCLIPRGN
Definition: undocuser.h:68
VOID FASTCALL UserSyncAndPaintWindows(PWND pWnd, ULONG Flags)
Definition: painting.c:620
VOID FASTCALL IntSendNCPaint(PWND pWnd, HRGN hRgn)
Definition: painting.c:348
VOID FASTCALL co_IntPaintWindows(PWND Wnd, ULONG Flags, BOOL Recurse)
Definition: painting.c:403
BOOL FASTCALL co_UserRedrawWindow(PWND Window, const RECTL *UpdateRect, PREGION UpdateRgn, ULONG Flags)
Definition: painting.c:888
VOID FASTCALL IntInvalidateWindows(PWND Wnd, PREGION Rgn, ULONG Flags)
Definition: painting.c:642
HWND FASTCALL UserGetShellWindow(VOID)
Definition: window.c:3678
INT FASTCALL UserReleaseDC(PWND Window, HDC hDc, BOOL EndPaint)
Definition: windc.c:918
HDC FASTCALL UserGetDCEx(PWND Window OPTIONAL, HANDLE ClipRegion, ULONG Flags)
PREGION FASTCALL VIS_ComputeVisibleRegion(PWND Wnd, BOOLEAN ClientArea, BOOLEAN ClipChildren, BOOLEAN ClipSiblings)
Definition: vis.c:13
VOID FASTCALL co_VIS_WindowLayoutChanged(PWND Wnd, PREGION NewlyExposed)
Definition: vis.c:145
BOOL NTAPI GreDeleteObject(HGDIOBJ hobj)
Definition: gdiobj.c:1158
INT FASTCALL REGION_Complexity(PREGION prgn)
Definition: region.c:564
VOID FASTCALL REGION_Delete(PREGION pRgn)
Definition: region.c:2465
PREGION FASTCALL REGION_LockRgn(_In_ HRGN hrgn)
Definition: region.c:2374
VOID FASTCALL REGION_UnlockRgn(_In_ PREGION prgn)
Definition: region.c:2389
INT FASTCALL REGION_GetRgnBox(PREGION Rgn, PRECTL pRect)
Definition: region.c:2559
PREGION FASTCALL IntSysCreateRectpRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
Definition: region.c:2423
BOOL FASTCALL REGION_bOffsetRgn(_Inout_ PREGION prgn, _In_ INT cx, _In_ INT cy)
Definition: region.c:2724
INT FASTCALL IntGdiCombineRgn(PREGION prgnDest, PREGION prgnSrc1, PREGION prgnSrc2, INT iCombineMode)
Definition: region.c:2503
HWND FASTCALL IntGetDesktopWindow(VOID)
Definition: desktop.c:1374
VOID co_IntShellHookNotify(WPARAM Message, WPARAM wParam, LPARAM lParam)
Definition: desktop.c:1692
VOID FASTCALL IntNotifyWinEvent(DWORD Event, PWND pWnd, LONG idObject, LONG idChild, DWORD flags)
Definition: event.c:178
WORD FASTCALL UserGetMouseButtonsState(VOID)
Definition: mouse.c:22
#define USERTAG_SWP
Definition: tags.h:281
BOOL FASTCALL IntIsWindow(HWND hWnd)
Definition: window.c:176
VOID FASTCALL IntLinkHwnd(PWND Wnd, HWND hWndPrev)
Definition: window.c:977
#define OBJID_WINDOW
Definition: winable.h:15
#define CHILDID_SELF
Definition: winable.h:14
ENGAPI VOID APIENTRY EngSetLastError(_In_ ULONG iError)
Definition: error.c:28
LONG_PTR LRESULT
Definition: windef.h:209
#define CopyRgn(hrgnDst, hrgnSrc)
Definition: windowsx.h:73
#define ERROR_INVALID_WINDOW_HANDLE
Definition: winerror.h:881
#define RGN_DIFF
Definition: wingdi.h:358
#define NULLREGION
Definition: wingdi.h:361
#define RGN_COPY
Definition: wingdi.h:357
#define RGN_AND
Definition: wingdi.h:356
#define SRCCOPY
Definition: wingdi.h:333
FORCEINLINE BOOL IntPtInWindow(PWND pwnd, INT x, INT y)
Definition: winpos.h:30
BOOL WINAPI CopyRect(_Out_ LPRECT, _In_ LPCRECT)
#define SWP_NOREDRAW
Definition: winuser.h:1236
#define SWP_FRAMECHANGED
Definition: winuser.h:1230
#define MAKELPARAM(l, h)
Definition: winuser.h:3998
#define DCX_CACHE
Definition: winuser.h:2104
#define DCX_WINDOW
Definition: winuser.h:2103
#define HSHELL_WINDOWDESTROYED
Definition: winuser.h:1246
#define WM_CHILDACTIVATE
Definition: winuser.h:1628
#define WS_EX_APPWINDOW
Definition: winuser.h:383
#define HSHELL_WINDOWCREATED
Definition: winuser.h:1245
#define SWP_NOMOVE
Definition: winuser.h:1234
#define RDW_NOINTERNALPAINT
Definition: winuser.h:1207
#define GA_PARENT
Definition: winuser.h:2778
#define SWP_NOSIZE
Definition: winuser.h:1235
#define WM_MOUSEMOVE
Definition: winuser.h:1765
#define RDW_ERASE
Definition: winuser.h:1201
#define RDW_NOCHILDREN
Definition: winuser.h:1212
#define SWP_DEFERERASE
Definition: winuser.h:1242
#define DCX_CLIPSIBLINGS
Definition: winuser.h:2106
#define DCX_INTERSECTRGN
Definition: winuser.h:2112
#define WVR_REDRAW
Definition: winuser.h:2511
#define RDW_ALLCHILDREN
Definition: winuser.h:1211
#define RDW_ERASENOW
Definition: winuser.h:1209
#define RDW_FRAME
Definition: winuser.h:1202
#define SWP_SHOWWINDOW
Definition: winuser.h:1238
#define SWP_HIDEWINDOW
Definition: winuser.h:1231
#define RDW_NOFRAME
Definition: winuser.h:1206
#define RDW_NOERASE
Definition: winuser.h:1205
#define RDW_VALIDATE
Definition: winuser.h:1208
#define WM_WINDOWPOSCHANGED
Definition: winuser.h:1652
#define RDW_INVALIDATE
Definition: winuser.h:1204

Referenced by co_IntSendActivateMessages(), co_IntSetForegroundMessageQueue(), co_IntSetParent(), co_IntShowDesktop(), co_UserCreateWindowEx(), co_UserDestroyWindow(), co_UserShowScrollBar(), co_WinPosArrangeIconicWindows(), co_WinPosShowWindow(), DefWndDoSizeMove(), DefWndHandleSetCursor(), DesktopWindowProc(), handle_internal_message(), IntActivateWindow(), IntDefWindowProc(), IntEndDeferWindowPosEx(), IntSetWindowPlacement(), IntUpdateLayeredWindowI(), MENU_ShowPopup(), NC_HandleNCLButtonDblClk(), NtUserCallHwndLock(), NtUserCallTwoParam(), NtUserSetMenu(), NtUserSetShellWindowEx(), NtUserSetWindowPos(), NtUserSetWindowRgn(), SpiNotifyNCMetricsChanged(), and WinPosDoOwnedPopups().

◆ co_WinPosShowWindow()

BOOLEAN FASTCALL co_WinPosShowWindow ( PWND  Window,
INT  Cmd 
)

Definition at line 2567 of file winpos.c.

2568{
2569 BOOLEAN WasVisible;
2570 UINT Swp = 0, EventMsg = 0;
2571 RECTL NewPos = {0, 0, 0, 0};
2572 BOOLEAN ShowFlag;
2573 LONG style;
2574 PWND Parent;
2575 PTHREADINFO pti;
2576 //HRGN VisibleRgn;
2577 BOOL ShowOwned = FALSE;
2578 BOOL FirstTime = FALSE;
2579 ASSERT_REFS_CO(Wnd);
2580 //KeRosDumpStackFrames(NULL, 20);
2582 WasVisible = (Wnd->style & WS_VISIBLE) != 0;
2583 style = Wnd->style;
2584
2585 TRACE("co_WinPosShowWindow START hwnd %p Cmd %d usicmd %u\n",
2586 Wnd->head.h, Cmd, pti->ppi->usi.wShowWindow);
2587
2588 if ( pti->ppi->usi.dwFlags & STARTF_USESHOWWINDOW )
2589 {
2590 if ((Wnd->style & (WS_POPUP|WS_CHILD)) != WS_CHILD)
2591 {
2592 if ((Wnd->style & WS_CAPTION) == WS_CAPTION)
2593 {
2594 if (Wnd->spwndOwner == NULL)
2595 {
2596 if ( Cmd == SW_SHOWNORMAL || Cmd == SW_SHOW)
2597 {
2599 }
2600 FirstTime = TRUE;
2601 TRACE("co_WPSW FT 1\n");
2602 }
2603 }
2604 }
2605 }
2606
2607 if ( Cmd == SW_SHOWDEFAULT )
2608 {
2609 if ( pti->ppi->usi.dwFlags & STARTF_USESHOWWINDOW )
2610 {
2611 Cmd = pti->ppi->usi.wShowWindow;
2612 FirstTime = TRUE;
2613 TRACE("co_WPSW FT 2\n");
2614 }
2615 }
2616
2617 if (FirstTime)
2618 {
2620 }
2621
2622 switch (Cmd)
2623 {
2624 case SW_HIDE:
2625 {
2626 if (!WasVisible)
2627 {
2628 //ERR("co_WinPosShowWindow Exit Bad\n");
2629 return FALSE;
2630 }
2632 if (Wnd != pti->MessageQueue->spwndActive)
2634 break;
2635 }
2636
2637 case SW_FORCEMINIMIZE: /* FIXME: Does not work if thread is hung. */
2638 case SW_SHOWMINNOACTIVE:
2640 /* Fall through. */
2641 case SW_SHOWMINIMIZED:
2642 case SW_MINIMIZE: /* CORE-15669: SW_MINIMIZE also shows */
2643 Swp |= SWP_SHOWWINDOW;
2644 {
2645 Swp |= SWP_NOACTIVATE;
2646 if (!(style & WS_MINIMIZE))
2647 {
2649 // Fix wine Win test_SetFocus todo #1 & #2,
2650 if (Cmd == SW_SHOWMINIMIZED)
2651 {
2652 //ERR("co_WinPosShowWindow Set focus 1\n");
2653 if ((style & (WS_CHILD | WS_POPUP)) == WS_CHILD)
2654 co_UserSetFocus(Wnd->spwndParent);
2655 else
2656 co_UserSetFocus(0);
2657 }
2658
2659 Swp |= co_WinPosMinMaximize(Wnd, Cmd, &NewPos);
2660
2661 EventMsg = EVENT_SYSTEM_MINIMIZESTART;
2662 }
2663 else
2664 {
2665 if (WasVisible)
2666 {
2667 //ERR("co_WinPosShowWindow Exit Good\n");
2668 return TRUE;
2669 }
2670 Swp |= SWP_NOSIZE | SWP_NOMOVE;
2671 }
2672 break;
2673 }
2674
2675 case SW_SHOWMAXIMIZED:
2676 {
2677 Swp |= SWP_SHOWWINDOW;
2678 if (!(style & WS_MAXIMIZE))
2679 {
2680 ShowOwned = TRUE;
2681
2682 Swp |= co_WinPosMinMaximize(Wnd, SW_MAXIMIZE, &NewPos);
2683
2684 EventMsg = EVENT_SYSTEM_MINIMIZEEND;
2685 }
2686 else
2687 {
2688 if (WasVisible)
2689 {
2690 //ERR("co_WinPosShowWindow Exit Good 1\n");
2691 return TRUE;
2692 }
2693 Swp |= SWP_NOSIZE | SWP_NOMOVE;
2694 }
2695 break;
2696 }
2697
2698 case SW_SHOWNA:
2700 if (style & WS_CHILD && !(Wnd->ExStyle & WS_EX_MDICHILD)) Swp |= SWP_NOZORDER;
2701 break;
2702 case SW_SHOW:
2703 if (WasVisible) return(TRUE); // Nothing to do!
2705 /* Don't activate the topmost window. */
2706 if (style & WS_CHILD && !(Wnd->ExStyle & WS_EX_MDICHILD)) Swp |= SWP_NOACTIVATE | SWP_NOZORDER;
2707 break;
2708
2709 case SW_SHOWNOACTIVATE:
2711 /* Fall through. */
2712 case SW_SHOWNORMAL:
2713 case SW_SHOWDEFAULT:
2714 case SW_RESTORE:
2715 if (!WasVisible) Swp |= SWP_SHOWWINDOW;
2716 if (style & (WS_MINIMIZE | WS_MAXIMIZE))
2717 {
2718 Swp |= co_WinPosMinMaximize(Wnd, Cmd, &NewPos);
2719 if (style & WS_MINIMIZE) EventMsg = EVENT_SYSTEM_MINIMIZEEND;
2720 }
2721 else
2722 {
2723 if (WasVisible)
2724 {
2725 //ERR("co_WinPosShowWindow Exit Good 3\n");
2726 return TRUE;
2727 }
2728 Swp |= SWP_NOSIZE | SWP_NOMOVE;
2729 }
2730 if ( style & WS_CHILD &&
2731 !(Wnd->ExStyle & WS_EX_MDICHILD) &&
2732 !(Swp & SWP_STATECHANGED))
2734 break;
2735
2736 default:
2737 //ERR("co_WinPosShowWindow Exit Good 4\n");
2738 return FALSE;
2739 }
2740
2741 ShowFlag = (Cmd != SW_HIDE);
2742
2743 if ((ShowFlag != WasVisible || Cmd == SW_SHOWNA) && Cmd != SW_SHOWMAXIMIZED && !(Swp & SWP_STATECHANGED))
2744 {
2745 co_IntSendMessageNoWait(Wnd->head.h, WM_SHOWWINDOW, ShowFlag, 0);
2746#if 0 // Fix wine msg test_SetParent:WmSetParentSeq_1:2
2747 if (!(Wnd->state2 & WNDS2_WIN31COMPAT)) // <------------- XP sets this bit!
2748 co_IntSendMessageNoWait(Wnd->head.h, WM_SETVISIBLE, ShowFlag, 0);
2749#endif
2750 if (!VerifyWnd(Wnd)) return WasVisible;
2751 }
2752
2753 /* We can't activate a child window */
2754 if ((Wnd->style & WS_CHILD) &&
2755 !(Wnd->ExStyle & WS_EX_MDICHILD) &&
2756 Cmd != SW_SHOWNA)
2757 {
2758 //ERR("SWP Child No active and ZOrder\n");
2760 }
2761
2762#if 0 // Explorer issues with common controls? Someone does not know how CS_SAVEBITS works.
2763 // Breaks startup and shutdown active window...
2764 if ((Wnd->style & (WS_POPUP|WS_CHILD)) != WS_CHILD &&
2765 Wnd->pcls->style & CS_SAVEBITS &&
2766 ((Cmd == SW_SHOW) || (Cmd == SW_NORMAL)))
2767 {
2768 ERR("WinPosShowWindow Set active\n");
2769 //UserSetActiveWindow(Wnd);
2770 co_IntSetForegroundWindow(Wnd); // HACK
2772 }
2773#endif
2774
2775 if (IsChildVisible(Wnd) || Swp & SWP_STATECHANGED)
2776 {
2777 TRACE("Child is Vis %s or State changed %s. ShowFlag %s Swp %04x\n",
2778 (IsChildVisible(Wnd) ? "TRUE" : "FALSE"), (Swp & SWP_STATECHANGED ? "TRUE" : "FALSE"),
2779 (ShowFlag ? "TRUE" : "FALSE"),LOWORD(Swp));
2781 0 != (Wnd->ExStyle & WS_EX_TOPMOST) ? HWND_TOPMOST : HWND_TOP,
2782 NewPos.left,
2783 NewPos.top,
2784 NewPos.right, // NewPos.right - NewPos.left, when minimized and restore, the window becomes smaller.
2785 NewPos.bottom,// NewPos.bottom - NewPos.top,
2786 LOWORD(Swp));
2787 }
2788 else
2789 {
2790 TRACE("Parent Vis?\n");
2791 /* if parent is not visible simply toggle WS_VISIBLE and return */
2792 if (ShowFlag) IntSetStyle( Wnd, WS_VISIBLE, 0 );
2793 else IntSetStyle( Wnd, 0, WS_VISIBLE );
2794 }
2795
2796 if ( EventMsg ) IntNotifyWinEvent(EventMsg, Wnd, OBJID_WINDOW, CHILDID_SELF, WEF_SETBYWNDPTI);
2797
2798 if ( ShowOwned ) IntShowOwnedPopups(Wnd, TRUE );
2799
2800 if ((Cmd == SW_HIDE) || (Cmd == SW_MINIMIZE))
2801 {
2802 if ( Wnd == pti->MessageQueue->spwndActive && pti->MessageQueue == IntGetFocusMessageQueue() )
2803 {
2804 if (UserIsDesktopWindow(Wnd->spwndParent))
2805 {
2806 if (!ActivateOtherWindowMin(Wnd))
2807 {
2809 }
2810 }
2811 else
2812 {
2814 }
2815 }
2816
2817 /* Revert focus to parent */
2818 if (Wnd == pti->MessageQueue->spwndFocus)
2819 {
2820 Parent = Wnd->spwndParent;
2821 if (UserIsDesktopWindow(Wnd->spwndParent))
2822 Parent = 0;
2824 }
2825 // Hide, just return.
2826 if (Cmd == SW_HIDE) return WasVisible;
2827 }
2828
2829 /* FIXME: Check for window destruction. */
2830
2831 if ((Wnd->state & WNDS_SENDSIZEMOVEMSGS) &&
2832 !(Wnd->state2 & WNDS2_INDESTROY))
2833 {
2835 }
2836
2837 /* if previous state was minimized Windows sets focus to the window */
2838 if (style & WS_MINIMIZE)
2839 {
2840 co_UserSetFocus(Wnd);
2841 // Fix wine Win test_SetFocus todo #3,
2843 }
2844 //ERR("co_WinPosShowWindow EXIT\n");
2845 return WasVisible;
2846}
unsigned char BOOLEAN
#define ERR(fmt,...)
Definition: debug.h:110
HWND FASTCALL co_UserSetFocus(PWND Window)
Definition: focus.c:1314
#define WNDS2_INDESTROY
Definition: ntuser.h:643
#define WNDS_SENDSIZEMOVEMSGS
Definition: ntuser.h:604
unsigned int UINT
Definition: ndis.h:50
UINT FASTCALL co_WinPosMinMaximize(PWND Wnd, UINT ShowFlag, RECT *NewPos)
Definition: winpos.c:2416
VOID FASTCALL co_WinPosActivateOtherWindow(PWND Wnd)
Definition: winpos.c:398
BOOL FASTCALL IsChildVisible(PWND pWnd)
Definition: winpos.c:227
BOOL FASTCALL ActivateOtherWindowMin(PWND Wnd)
Definition: winpos.c:286
void FASTCALL co_WinPosSendSizeMove(PWND Wnd)
Definition: winpos.c:2382
#define LOWORD(l)
Definition: pedump.c:82
@ Cmd
Definition: sacdrv.h:278
USERSTARTUPINFO usi
Definition: win32.h:278
PPROCESSINFO ppi
Definition: win32.h:88
WORD wShowWindow
Definition: win32.h:219
#define WM_SETVISIBLE
Definition: undocuser.h:31
PUSER_MESSAGE_QUEUE FASTCALL IntGetFocusMessageQueue(VOID)
Definition: desktop.c:1307
ULONG FASTCALL IntSetStyle(PWND pwnd, ULONG set_bits, ULONG clear_bits)
Definition: window.c:143
BOOL FASTCALL IntShowOwnedPopups(PWND OwnerWnd, BOOL fShow)
Definition: window.c:4659
#define STARTF_USEPOSITION
Definition: winbase.h:493
#define STARTF_USESHOWWINDOW
Definition: winbase.h:491
#define STARTF_USESIZE
Definition: winbase.h:492
#define SW_SHOWNORMAL
Definition: winuser.h:764
#define SW_SHOWMAXIMIZED
Definition: winuser.h:767
#define SW_HIDE
Definition: winuser.h:762
#define HWND_TOPMOST
Definition: winuser.h:1198
#define SW_MINIMIZE
Definition: winuser.h:770
#define SW_SHOWNOACTIVATE
Definition: winuser.h:768
#define WM_ACTIVATE
Definition: winuser.h:1602
#define WM_SHOWWINDOW
Definition: winuser.h:1618
#define SW_SHOWDEFAULT
Definition: winuser.h:774
#define SW_SHOWMINIMIZED
Definition: winuser.h:765
#define SW_FORCEMINIMIZE
Definition: winuser.h:775
#define HWND_TOP
Definition: winuser.h:1197
#define WS_EX_MDICHILD
Definition: winuser.h:394
#define SW_SHOWNA
Definition: winuser.h:772
#define WA_ACTIVE
Definition: winuser.h:2613
#define CS_SAVEBITS
Definition: winuser.h:652
#define SW_RESTORE
Definition: winuser.h:773
#define SW_SHOW
Definition: winuser.h:769
#define SW_MAXIMIZE
Definition: winuser.h:766
#define SW_NORMAL
Definition: winuser.h:763
#define SW_SHOWMINNOACTIVE
Definition: winuser.h:771

Referenced by co_IntSetParent(), co_UserCreateWindowEx(), co_UserDestroyWindow(), co_UserShowScrollBar(), DefWndHandleSysCommand(), handle_internal_message(), IntDefWindowProc(), IntSetWindowPlacement(), NtUserMinMaximize(), and NtUserShowWindow().

◆ co_WinPosWindowFromPoint()

PWND APIENTRY co_WinPosWindowFromPoint ( IN PWND  ScopeWin,
IN POINT WinPoint,
IN OUT USHORT HitTest,
IN BOOL  Ignore 
)

Definition at line 2934 of file winpos.c.

2939{
2940 PWND Window;
2941 POINT Point = *WinPoint;
2943
2944 if( ScopeWin == NULL )
2945 {
2946 ScopeWin = UserGetDesktopWindow();
2947 if(ScopeWin == NULL)
2948 return NULL;
2949 }
2950
2951 *HitTest = HTNOWHERE;
2952
2953 ASSERT_REFS_CO(ScopeWin);
2954 UserRefObjectCo(ScopeWin, &Ref);
2955
2956 Window = co_WinPosSearchChildren(ScopeWin, &Point, HitTest, Ignore);
2957
2958 UserDerefObjectCo(ScopeWin);
2959 if (Window)
2961 ASSERT_REFS_CO(ScopeWin);
2962
2963 return Window;
2964}
static PWND co_WinPosSearchChildren(IN PWND ScopeWin, IN POINT *Point, IN OUT USHORT *HitTest, IN BOOL Ignore)
Definition: winpos.c:2849
#define HTNOWHERE
Definition: winuser.h:2464

Referenced by co_IntProcessMouseMessage(), and NtUserWindowFromPoint().

◆ IntClientToScreen()

BOOL FASTCALL IntClientToScreen ( PWND  Wnd,
LPPOINT  lpPoint 
)

Definition at line 200 of file winpos.c.

201{
202 if (Wnd && Wnd->fnid != FNID_DESKTOP )
203 {
204 if (Wnd->ExStyle & WS_EX_LAYOUTRTL)
205 lpPoint->x = Wnd->rcClient.right - lpPoint->x;
206 else
207 lpPoint->x += Wnd->rcClient.left;
208 lpPoint->y += Wnd->rcClient.top;
209 }
210 return TRUE;
211}
#define FNID_DESKTOP
Definition: ntuser.h:857
DWORD fnid
Definition: ntuser.h:704
RECT rcClient
Definition: ntuser.h:712
#define WS_EX_LAYOUTRTL
Definition: winuser.h:390

Referenced by IntDefWindowProc(), NC_GetSysPopupPos(), and WinPosFixupFlags().

◆ IntEqualRect()

FORCEINLINE BOOL IntEqualRect ( RECTL lprc1,
RECTL lprc2 
)

Definition at line 48 of file winpos.h.

49{
50 if (lprc1 == NULL || lprc2 == NULL)
51 return FALSE;
52
53 return (lprc1->left == lprc2->left) && (lprc1->top == lprc2->top) &&
54 (lprc1->right == lprc2->right) && (lprc1->bottom == lprc2->bottom);
55}

Referenced by DefWndDoSizeMove(), IntDefWindowProc(), IntGetNCUpdateRgn(), and NC_DoNCPaint().

◆ IntGetClientOrigin()

BOOL FASTCALL IntGetClientOrigin ( PWND  Window,
LPPOINT  Point 
)

Definition at line 72 of file winpos.c.

73{
75 if (Window == NULL)
76 {
77 Point->x = Point->y = 0;
78 return FALSE;
79 }
80 Point->x = Window->rcClient.left;
81 Point->y = Window->rcClient.top;
82
83 return TRUE;
84}

Referenced by co_IntFixCaret(), and IntScrollWindowEx().

◆ IntGetWindowRect()

BOOL FASTCALL IntGetWindowRect ( PWND  Wnd,
RECTL Rect 
)

Definition at line 122 of file winpos.c.

123{
124 ASSERT( Wnd );
125 ASSERT( Rect );
126 if (!Wnd) return FALSE;
127 if (!UserIsDesktopWindow(Wnd))
128 {
129 *Rect = Wnd->rcWindow;
130 }
131 else
132 {
133 Rect->left = Rect->top = 0;
134 Rect->right = Wnd->rcWindow.right;
135 Rect->bottom = Wnd->rcWindow.bottom;
136/* Do this until Init bug is fixed. This sets 640x480, see InitMetrics.
137 Rect->right = GetSystemMetrics(SM_CXSCREEN);
138 Rect->bottom = GetSystemMetrics(SM_CYSCREEN);
139*/ }
140 return TRUE;
141}
#define ASSERT(a)
Definition: mode.c:44
RECT rcWindow
Definition: ntuser.h:711

Referenced by DefWndScreenshot(), IntGetNCUpdateRgn(), IntIsWindowFullscreen(), MENU_FindItemByCoords(), MENU_ShowSubPopup(), NC_DoNCPaint(), NC_GetSysPopupPos(), UserDrawCaptionBar(), and UserDrawCaptionButtonWnd().

◆ IntPtInWindow()

FORCEINLINE BOOL IntPtInWindow ( PWND  pwnd,
INT  x,
INT  y 
)

Definition at line 30 of file winpos.h.

31{
32 if(!RECTL_bPointInRect(&pwnd->rcWindow, x, y))
33 {
34 return FALSE;
35 }
36
37 if(!pwnd->hrgnClip || pwnd->style & WS_MINIMIZE)
38 {
39 return TRUE;
40 }
41
42 return NtGdiPtInRegion(pwnd->hrgnClip,
43 x - pwnd->rcWindow.left,
44 y - pwnd->rcWindow.top);
45}
__kernel_entry W32KAPI BOOL APIENTRY NtGdiPtInRegion(_In_ HRGN hrgn, _In_ INT x, _In_ INT y)
Definition: region.c:4015
HRGN hrgnClip
Definition: ntuser.h:728
FORCEINLINE BOOL RECTL_bPointInRect(_In_ const RECTL *prcl, _In_ INT x, _In_ INT y)
Definition: rect.h:52

Referenced by co_WinPosSearchChildren(), co_WinPosSetWindowPos(), IntChildWindowFromPointEx(), IntRealChildWindowFromPoint(), and IntTopLevelWindowFromPoint().

◆ IntRealChildWindowFromPoint()

PWND FASTCALL IntRealChildWindowFromPoint ( PWND  Parent,
LONG  x,
LONG  y 
)

Definition at line 2968 of file winpos.c.

2969{
2970 POINTL Pt;
2971 HWND *List, *phWnd;
2972 PWND pwndHit = NULL;
2973
2974 Pt.x = x;
2975 Pt.y = y;
2976
2978 {
2979 Pt.x += Parent->rcClient.left;
2980 Pt.y += Parent->rcClient.top;
2981 }
2982
2983 if (!IntPtInWindow(Parent, Pt.x, Pt.y)) return NULL;
2984
2986 {
2987 for (phWnd = List; *phWnd; phWnd++)
2988 {
2989 PWND Child;
2990 if ((Child = ValidateHwndNoErr(*phWnd)))
2991 {
2992 if ( Child->style & WS_VISIBLE && IntPtInWindow(Child, Pt.x, Pt.y) )
2993 {
2994 if ( Child->pcls->atomClassName != gpsi->atomSysClass[ICLS_BUTTON] ||
2995 (Child->style & BS_TYPEMASK) != BS_GROUPBOX )
2996 {
2998 return Child;
2999 }
3000 pwndHit = Child;
3001 }
3002 }
3003 }
3005 }
3006 return pwndHit ? pwndHit : Parent;
3007}
#define ICLS_BUTTON
Definition: ntuser.h:907
#define BS_GROUPBOX
Definition: pedump.c:658
LONG y
Definition: windef.h:330
LONG x
Definition: windef.h:329
ATOM atomSysClass[ICLS_NOTUSED+1]
Definition: ntuser.h:1055
_Must_inspect_result_ _In_ WDFCMRESLIST List
Definition: wdfresource.h:550
#define USERTAG_WINDOWLIST
Definition: tags.h:298
HWND *FASTCALL IntWinListChildren(PWND Window)
Definition: window.c:274
#define BS_TYPEMASK
Definition: winuser.h:270

Referenced by NtUserRealChildWindowFromPoint().

◆ IntScreenToClient()

BOOL FASTCALL IntScreenToClient ( PWND  Wnd,
LPPOINT  lpPoint 
)

Definition at line 214 of file winpos.c.

215{
216 if (Wnd && Wnd->fnid != FNID_DESKTOP )
217 {
218 if (Wnd->ExStyle & WS_EX_LAYOUTRTL)
219 lpPoint->x = Wnd->rcClient.right - lpPoint->x;
220 else
221 lpPoint->x -= Wnd->rcClient.left;
222 lpPoint->y -= Wnd->rcClient.top;
223 }
224 return TRUE;
225}

Referenced by co_IntSetParent(), IntDefWindowProc(), and MENU_TrackMouseMenuBar().

◆ UserGetWindowBorders()

VOID UserGetWindowBorders ( DWORD  Style,
DWORD  ExStyle,
SIZE Size,
BOOL  WithClient 
)

Definition at line 889 of file winpos.c.

890{
891 DWORD Border = 0;
892
894 Border += 2;
896 Border += 1; /* for the outer frame always present */
897 if ((ExStyle & WS_EX_CLIENTEDGE) && WithClient)
898 Border += 2;
900 Border ++; /* The other border */
901 Size->cx = Size->cy = Border;
902 if ((Style & WS_THICKFRAME) && !(Style & WS_MINIMIZE)) /* The resize border */
903 {
906 }
909}
const DWORD Style
Definition: appswitch.c:71
const DWORD ExStyle
Definition: appswitch.c:72
BOOL UserHasWindowEdge(DWORD Style, DWORD ExStyle)
Definition: winpos.c:845
#define WS_EX_DLGMODALFRAME
Definition: pedump.c:645
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Definition: wdfdevice.h:4533
#define WS_EX_STATICEDGE
Definition: winuser.h:403
#define WS_EX_CLIENTEDGE
Definition: winuser.h:384

◆ UserHasWindowEdge()

BOOL UserHasWindowEdge ( DWORD  Style,
DWORD  ExStyle 
)

Definition at line 845 of file winpos.c.

846{
847 if (Style & WS_MINIMIZE)
848 return TRUE;
850 return TRUE;
852 return FALSE;
853 if (Style & WS_THICKFRAME)
854 return TRUE;
855 Style &= WS_CAPTION;
856 if (Style == WS_DLGFRAME || Style == WS_CAPTION)
857 return TRUE;
858 return FALSE;
859}

Referenced by UserGetWindowBorders().