2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
5 * FILE: subsystems/win32/win32k/ntuser/window.c
6 * PROGRAMER: Casper S. Hornstrup (chorns@users.sourceforge.net)
8 * 06-06-2001 CSH Created
11 /* INCLUDES ******************************************************************/
19 /* dialog resources appear to pass this in 16 bits, handle them properly */
20 #define CW_USEDEFAULT16 (0x8000)
22 #define POINT_IN_RECT(p, r) (((r.bottom >= p.y) && (r.top <= p.y))&&((r.left <= p.x )&&( r.right >= p.x )))
24 /* PRIVATE FUNCTIONS **********************************************************/
29 * Initialize windowing implementation.
35 return STATUS_SUCCESS
;
41 * Cleanup windowing implementation.
45 CleanupWindowImpl(VOID
)
47 return STATUS_SUCCESS
;
50 /* HELPER FUNCTIONS ***********************************************************/
52 BOOL FASTCALL
UserUpdateUiState(PWND Wnd
, WPARAM wParam
)
54 WORD Action
= LOWORD(wParam
);
55 WORD Flags
= HIWORD(wParam
);
57 if (Flags
& ~(UISF_HIDEFOCUS
| UISF_HIDEACCEL
| UISF_ACTIVE
))
59 SetLastWin32Error(ERROR_INVALID_PARAMETER
);
66 SetLastWin32Error(ERROR_INVALID_PARAMETER
);
70 if (Flags
& UISF_HIDEFOCUS
)
71 Wnd
->HideFocus
= TRUE
;
72 if (Flags
& UISF_HIDEACCEL
)
73 Wnd
->HideAccel
= TRUE
;
77 if (Flags
& UISF_HIDEFOCUS
)
78 Wnd
->HideFocus
= FALSE
;
79 if (Flags
& UISF_HIDEACCEL
)
80 Wnd
->HideAccel
= FALSE
;
87 PWINDOW_OBJECT FASTCALL
IntGetWindowObject(HWND hWnd
)
89 PWINDOW_OBJECT Window
;
91 if (!hWnd
) return NULL
;
93 Window
= UserGetWindowObject(hWnd
);
96 ASSERT(Window
->head
.cLockObj
>= 0);
98 Window
->head
.cLockObj
++;
104 PWINDOW_OBJECT FASTCALL
UserGetWindowObject(HWND hWnd
)
107 PWINDOW_OBJECT Window
;
109 if (PsGetCurrentProcess() != PsInitialSystemProcess
)
111 ti
= GetW32ThreadInfo();
114 SetLastWin32Error(ERROR_ACCESS_DENIED
);
121 SetLastWin32Error(ERROR_INVALID_WINDOW_HANDLE
);
125 Window
= (PWINDOW_OBJECT
)UserGetObject(gHandleTable
, hWnd
, otWindow
);
126 if (!Window
|| 0 != (Window
->state
& WINDOWSTATUS_DESTROYED
))
128 SetLastWin32Error(ERROR_INVALID_WINDOW_HANDLE
);
132 ASSERT(Window
->head
.cLockObj
>= 0);
140 * The function determines whether the specified window handle identifies
141 * an existing window.
145 * Handle to the window to test.
148 * If the window handle identifies an existing window, the return value
149 * is TRUE. If the window handle does not identify an existing window,
150 * the return value is FALSE.
154 IntIsWindow(HWND hWnd
)
156 PWINDOW_OBJECT Window
;
158 if (!(Window
= UserGetWindowObject(hWnd
)))
167 Caller must NOT dereference retval!
168 But if caller want the returned value to persist spanning a co_ call,
169 it must reference the value (because the owner is not garanteed to
170 exist just because the owned window exist)!
172 PWINDOW_OBJECT FASTCALL
173 IntGetParent(PWINDOW_OBJECT Wnd
)
175 if (!Wnd
->Wnd
) return NULL
;
177 if (Wnd
->Wnd
->style
& WS_POPUP
)
179 return UserGetWindowObject(Wnd
->hOwner
);
181 else if (Wnd
->Wnd
->style
& WS_CHILD
)
183 return Wnd
->spwndParent
;
191 Caller must NOT dereference retval!
192 But if caller want the returned value to persist spanning a co_ call,
193 it must reference the value (because the owner is not garanteed to
194 exist just because the owned window exist)!
196 PWINDOW_OBJECT FASTCALL
197 IntGetOwner(PWINDOW_OBJECT Wnd
)
199 return UserGetWindowObject(Wnd
->hOwner
);
207 * Compile a list of all child window handles from given window.
210 * This function is similar to Wine WIN_ListChildren. The caller
211 * must free the returned list with ExFreePool.
215 IntWinListChildren(PWINDOW_OBJECT Window
)
217 PWINDOW_OBJECT Child
;
219 UINT Index
, NumChildren
= 0;
221 if (!Window
) return NULL
;
223 for (Child
= Window
->spwndChild
; Child
; Child
= Child
->spwndNext
)
226 List
= ExAllocatePoolWithTag(PagedPool
, (NumChildren
+ 1) * sizeof(HWND
), TAG_WINLIST
);
229 DPRINT1("Failed to allocate memory for children array\n");
230 SetLastWin32Error(ERROR_NOT_ENOUGH_MEMORY
);
233 for (Child
= Window
->spwndChild
, Index
= 0;
235 Child
= Child
->spwndNext
, ++Index
)
236 List
[Index
] = Child
->hSelf
;
242 /***********************************************************************
245 static void IntSendDestroyMsg(HWND hWnd
)
248 PWINDOW_OBJECT Window
;
253 if (GetGUIThreadInfo(GetCurrentThreadId(), &info
))
255 if (hWnd
== info
.hwndCaret
)
262 Window
= UserGetWindowObject(hWnd
);
265 // USER_REFERENCE_ENTRY Ref;
266 // UserRefObjectCo(Window, &Ref);
268 if (!IntGetOwner(Window
) && !IntGetParent(Window
))
270 co_IntShellHookNotify(HSHELL_WINDOWDESTROYED
, (LPARAM
) hWnd
);
273 // UserDerefObjectCo(Window);
276 /* The window could already be destroyed here */
279 * Send the WM_DESTROY to the window.
282 co_IntSendMessage(hWnd
, WM_DESTROY
, 0, 0);
285 * This WM_DESTROY message can trigger re-entrant calls to DestroyWindow
286 * make sure that the window still exists when we come back.
295 if (!(pWndArray
= WIN_ListChildren( hwnd
)))
298 /* start from the end (FIXME: is this needed?) */
299 for (i
= 0; pWndArray
[i
]; i
++)
304 if (IsWindow( pWndArray
[i
] ))
305 WIN_SendDestroyMsg( pWndArray
[i
] );
307 HeapFree(GetProcessHeap(), 0, pWndArray
);
311 DPRINT("destroyed itself while in WM_DESTROY!\n");
317 UserFreeWindowInfo(PTHREADINFO ti
, PWINDOW_OBJECT WindowObject
)
319 PCLIENTINFO ClientInfo
= GetWin32ClientInfo();
320 PWND Wnd
= WindowObject
->Wnd
;
324 if (ClientInfo
->CallbackWnd
.pvWnd
== DesktopHeapAddressToUser(WindowObject
->Wnd
))
326 ClientInfo
->CallbackWnd
.hWnd
= NULL
;
327 ClientInfo
->CallbackWnd
.pvWnd
= NULL
;
330 if (Wnd
->strName
.Buffer
!= NULL
)
332 Wnd
->strName
.Length
= 0;
333 Wnd
->strName
.MaximumLength
= 0;
334 DesktopHeapFree(Wnd
->head
.rpdesk
,
335 Wnd
->strName
.Buffer
);
336 Wnd
->strName
.Buffer
= NULL
;
339 DesktopHeapFree(Wnd
->head
.rpdesk
, Wnd
);
340 WindowObject
->Wnd
= NULL
;
343 /***********************************************************************
346 * Destroy storage associated to a window. "Internals" p.358
348 * This is the "functional" DestroyWindows function ei. all stuff
349 * done in CreateWindow is undone here and not in DestroyWindow:-P
352 static LRESULT
co_UserFreeWindow(PWINDOW_OBJECT Window
,
353 PPROCESSINFO ProcessData
,
354 PTHREADINFO ThreadData
,
355 BOOLEAN SendMessages
)
359 PWINDOW_OBJECT Child
;
361 BOOLEAN BelongsToThreadData
;
368 if(Window
->state
& WINDOWSTATUS_DESTROYING
)
370 DPRINT("Tried to call IntDestroyWindow() twice\n");
373 Window
->state
|= WINDOWSTATUS_DESTROYING
;
374 Wnd
->style
&= ~WS_VISIBLE
;
376 IntNotifyWinEvent(EVENT_OBJECT_DESTROY
, Wnd
, OBJID_WINDOW
, 0);
378 /* remove the window already at this point from the thread window list so we
379 don't get into trouble when destroying the thread windows while we're still
380 in IntDestroyWindow() */
381 RemoveEntryList(&Window
->ThreadListEntry
);
383 BelongsToThreadData
= IntWndBelongsToThread(Window
, ThreadData
);
385 IntDeRegisterShellHookWindow(Window
->hSelf
);
389 /* Send destroy messages */
390 IntSendDestroyMsg(Window
->hSelf
);
393 /* free child windows */
394 Children
= IntWinListChildren(Window
);
397 for (ChildHandle
= Children
; *ChildHandle
; ++ChildHandle
)
399 if ((Child
= IntGetWindowObject(*ChildHandle
)))
401 if(!IntWndBelongsToThread(Child
, ThreadData
))
403 /* send WM_DESTROY messages to windows not belonging to the same thread */
404 IntSendDestroyMsg(Child
->hSelf
);
407 co_UserFreeWindow(Child
, ProcessData
, ThreadData
, SendMessages
);
409 UserDereferenceObject(Child
);
412 ExFreePool(Children
);
418 * Clear the update region to make sure no WM_PAINT messages will be
419 * generated for this window while processing the WM_NCDESTROY.
421 co_UserRedrawWindow(Window
, NULL
, 0,
422 RDW_VALIDATE
| RDW_NOFRAME
| RDW_NOERASE
|
423 RDW_NOINTERNALPAINT
| RDW_NOCHILDREN
);
424 if(BelongsToThreadData
)
425 co_IntSendMessage(Window
->hSelf
, WM_NCDESTROY
, 0, 0);
427 MsqRemoveTimersWindow(ThreadData
->MessageQueue
, Window
->hSelf
);
428 HOOK_DestroyThreadHooks(ThreadData
->pEThread
); // This is needed here too!
430 /* flush the message queue */
431 MsqRemoveWindowMessagesFromQueue(Window
);
433 /* from now on no messages can be sent to this window anymore */
434 Window
->state
|= WINDOWSTATUS_DESTROYED
;
435 Wnd
->state
|= WNDS_DESTROYED
;
436 Wnd
->fnid
|= FNID_FREED
;
438 /* don't remove the WINDOWSTATUS_DESTROYING bit */
440 /* reset shell window handles */
441 if(ThreadData
->rpdesk
)
443 if (Window
->hSelf
== ThreadData
->rpdesk
->rpwinstaParent
->ShellWindow
)
444 ThreadData
->rpdesk
->rpwinstaParent
->ShellWindow
= NULL
;
446 if (Window
->hSelf
== ThreadData
->rpdesk
->rpwinstaParent
->ShellListView
)
447 ThreadData
->rpdesk
->rpwinstaParent
->ShellListView
= NULL
;
450 /* Unregister hot keys */
451 UnregisterWindowHotKeys (Window
);
453 /* FIXME: do we need to fake QS_MOUSEMOVE wakebit? */
457 WinPosCheckInternalPos(Window
->hSelf
);
458 if (Window
->hSelf
== GetCapture())
463 /* free resources associated with the window */
464 TIMER_RemoveWindowTimers(Window
->hSelf
);
467 if (!(Wnd
->style
& WS_CHILD
) && Wnd
->IDMenu
468 && (Menu
= UserGetMenuObject((HMENU
)Wnd
->IDMenu
)))
470 IntDestroyMenuObject(Menu
, TRUE
, TRUE
);
474 if(Window
->SystemMenu
475 && (Menu
= UserGetMenuObject(Window
->SystemMenu
)))
477 IntDestroyMenuObject(Menu
, TRUE
, TRUE
);
478 Window
->SystemMenu
= (HMENU
)0;
481 DceFreeWindowDCE(Window
); /* Always do this to catch orphaned DCs */
484 WINPROC_FreeProc(Window
->winproc
, WIN_PROC_WINDOW
);
485 CLASS_RemoveWindow(Window
->Class
);
488 IntUnlinkWindow(Window
);
490 UserReferenceObject(Window
);
491 UserDeleteObject(Window
->hSelf
, otWindow
);
493 IntDestroyScrollBars(Window
);
495 /* dereference the class */
496 IntDereferenceClass(Wnd
->pcls
,
497 Window
->pti
->pDeskInfo
,
503 GreDeleteObject(Window
->hrgnClip
);
506 ASSERT(Window
->Wnd
!= NULL
);
507 UserFreeWindowInfo(Window
->pti
, Window
);
509 UserDereferenceObject(Window
);
511 IntClipboardFreeWindow(Window
);
517 IntGetWindowBorderMeasures(PWINDOW_OBJECT Window
, UINT
*cx
, UINT
*cy
)
519 PWND Wnd
= Window
->Wnd
;
520 if(HAS_DLGFRAME(Wnd
->style
, Wnd
->ExStyle
) && !(Wnd
->style
& WS_MINIMIZE
))
522 *cx
= UserGetSystemMetrics(SM_CXDLGFRAME
);
523 *cy
= UserGetSystemMetrics(SM_CYDLGFRAME
);
527 if(HAS_THICKFRAME(Wnd
->style
, Wnd
->ExStyle
)&& !(Wnd
->style
& WS_MINIMIZE
))
529 *cx
= UserGetSystemMetrics(SM_CXFRAME
);
530 *cy
= UserGetSystemMetrics(SM_CYFRAME
);
532 else if(HAS_THINFRAME(Wnd
->style
, Wnd
->ExStyle
))
534 *cx
= UserGetSystemMetrics(SM_CXBORDER
);
535 *cy
= UserGetSystemMetrics(SM_CYBORDER
);
545 // Same as User32:IntGetWndProc.
548 IntGetWindowProc(PWND pWnd
,
553 WNDPROC gcpd
, Ret
= 0;
555 ASSERT(UserIsEnteredExclusive() == TRUE
);
559 if (pWnd
->state
& WNDS_SERVERSIDEWINDOWPROC
)
561 for ( i
= FNID_FIRST
; i
<= FNID_SWITCH
; i
++)
563 if (GETPFNSERVER(i
) == pWnd
->lpfnWndProc
)
566 Ret
= GETPFNCLIENTA(i
);
568 Ret
= GETPFNCLIENTW(i
);
574 if (Class
->fnid
== FNID_EDIT
)
575 Ret
= pWnd
->lpfnWndProc
;
578 Ret
= pWnd
->lpfnWndProc
;
580 if (Class
->fnid
<= FNID_GHOST
&& Class
->fnid
>= FNID_BUTTON
)
584 if (GETPFNCLIENTW(Class
->fnid
) == pWnd
->lpfnWndProc
)
585 Ret
= GETPFNCLIENTA(Class
->fnid
);
589 if (GETPFNCLIENTA(Class
->fnid
) == pWnd
->lpfnWndProc
)
590 Ret
= GETPFNCLIENTW(Class
->fnid
);
593 if ( Ret
!= pWnd
->lpfnWndProc
)
596 if ( Ansi
== !!(pWnd
->state
& WNDS_ANSIWINDOWPROC
) )
599 gcpd
= (WNDPROC
)UserGetCPD(
601 (Ansi
? UserGetCPDA2U
: UserGetCPDU2A
)|UserGetCPDWindow
,
604 return (gcpd
? gcpd
: Ret
);
608 IntSetWindowProc(PWND pWnd
,
613 PCALLPROCDATA CallProc
;
615 WNDPROC Ret
, chWndProc
= NULL
;
617 // Retrieve previous window proc.
618 Ret
= IntGetWindowProc(pWnd
, Ansi
);
622 if (IsCallProcHandle(NewWndProc
))
624 CallProc
= UserGetObject(gHandleTable
, NewWndProc
, otCallProc
);
626 { // Reset new WndProc.
627 NewWndProc
= CallProc
->pfnClientPrevious
;
628 // Reset Ansi from CallProc handle. This is expected with wine "deftest".
629 Ansi
= !!(CallProc
->wType
& UserGetCPDU2A
);
632 // Switch from Client Side call to Server Side call if match. Ref: "deftest".
633 for ( i
= FNID_FIRST
; i
<= FNID_SWITCH
; i
++)
635 if (GETPFNCLIENTW(i
) == NewWndProc
)
637 chWndProc
= GETPFNSERVER(i
);
640 if (GETPFNCLIENTA(i
) == NewWndProc
)
642 chWndProc
= GETPFNSERVER(i
);
646 // If match, set/reset to Server Side and clear ansi.
649 pWnd
->lpfnWndProc
= chWndProc
;
650 pWnd
->Unicode
= TRUE
;
651 pWnd
->state
&= ~WNDS_ANSIWINDOWPROC
;
652 pWnd
->state
|= WNDS_SERVERSIDEWINDOWPROC
;
656 pWnd
->Unicode
= !Ansi
;
657 // Handle the state change in here.
659 pWnd
->state
|= WNDS_ANSIWINDOWPROC
;
661 pWnd
->state
&= ~WNDS_ANSIWINDOWPROC
;
663 if (pWnd
->state
& WNDS_SERVERSIDEWINDOWPROC
)
664 pWnd
->state
&= ~WNDS_SERVERSIDEWINDOWPROC
;
666 if (!NewWndProc
) NewWndProc
= pWnd
->lpfnWndProc
;
668 if (Class
->fnid
<= FNID_GHOST
&& Class
->fnid
>= FNID_BUTTON
)
672 if (GETPFNCLIENTW(Class
->fnid
) == NewWndProc
)
673 chWndProc
= GETPFNCLIENTA(Class
->fnid
);
677 if (GETPFNCLIENTA(Class
->fnid
) == NewWndProc
)
678 chWndProc
= GETPFNCLIENTW(Class
->fnid
);
681 // Now set the new window proc.
682 pWnd
->lpfnWndProc
= (chWndProc
? chWndProc
: NewWndProc
);
687 // Move this to user space!
689 IntGetWindowInfo(PWINDOW_OBJECT Window
, PWINDOWINFO pwi
)
691 PWND Wnd
= Window
->Wnd
;
693 pwi
->cbSize
= sizeof(WINDOWINFO
);
694 pwi
->rcWindow
= Window
->Wnd
->rcWindow
;
695 pwi
->rcClient
= Window
->Wnd
->rcClient
;
696 pwi
->dwStyle
= Wnd
->style
;
697 pwi
->dwExStyle
= Wnd
->ExStyle
;
698 pwi
->dwWindowStatus
= (UserGetForegroundWindow() == Window
->hSelf
); /* WS_ACTIVECAPTION */
699 IntGetWindowBorderMeasures(Window
, &pwi
->cxWindowBorders
, &pwi
->cyWindowBorders
);
700 pwi
->atomWindowType
= (Wnd
->pcls
? Wnd
->pcls
->atomClassName
: 0);
701 pwi
->wCreatorVersion
= 0x400; /* FIXME - return a real version number */
707 PWINDOW_OBJECT Window
,
711 PMENU_OBJECT OldMenu
, NewMenu
= NULL
;
712 PWND Wnd
= Window
->Wnd
;
714 if ((Wnd
->style
& (WS_CHILD
| WS_POPUP
)) == WS_CHILD
)
716 SetLastWin32Error(ERROR_INVALID_WINDOW_HANDLE
);
720 *Changed
= (Wnd
->IDMenu
!= (UINT
) Menu
);
728 OldMenu
= IntGetMenuObject((HMENU
) Wnd
->IDMenu
);
729 ASSERT(NULL
== OldMenu
|| OldMenu
->MenuInfo
.Wnd
== Window
->hSelf
);
738 NewMenu
= IntGetMenuObject(Menu
);
743 IntReleaseMenuObject(OldMenu
);
745 SetLastWin32Error(ERROR_INVALID_MENU_HANDLE
);
748 if (NULL
!= NewMenu
->MenuInfo
.Wnd
)
750 /* Can't use the same menu for two windows */
753 IntReleaseMenuObject(OldMenu
);
755 SetLastWin32Error(ERROR_INVALID_MENU_HANDLE
);
761 Wnd
->IDMenu
= (UINT
) Menu
;
764 NewMenu
->MenuInfo
.Wnd
= Window
->hSelf
;
765 IntReleaseMenuObject(NewMenu
);
769 OldMenu
->MenuInfo
.Wnd
= NULL
;
770 IntReleaseMenuObject(OldMenu
);
777 /* INTERNAL ******************************************************************/
781 co_DestroyThreadWindows(struct _ETHREAD
*Thread
)
786 USER_REFERENCE_ENTRY Ref
;
787 WThread
= (PTHREADINFO
)Thread
->Tcb
.Win32Thread
;
789 while (!IsListEmpty(&WThread
->WindowListHead
))
791 Current
= WThread
->WindowListHead
.Flink
;
792 Wnd
= CONTAINING_RECORD(Current
, WINDOW_OBJECT
, ThreadListEntry
);
794 DPRINT("thread cleanup: while destroy wnds, wnd=0x%x\n",Wnd
);
796 /* window removes itself from the list */
799 fixme: it is critical that the window removes itself! if now, we will loop
803 //ASSERT(co_UserDestroyWindow(Wnd));
805 UserRefObjectCo(Wnd
, &Ref
);//faxme: temp hack??
806 if (!co_UserDestroyWindow(Wnd
))
808 DPRINT1("Unable to destroy window 0x%x at thread cleanup... This is _VERY_ bad!\n", Wnd
);
810 UserDerefObjectCo(Wnd
);//faxme: temp hack??
818 * Returns client window rectangle relative to the upper-left corner of client area.
820 * \note Does not check the validity of the parameters
823 IntGetClientRect(PWINDOW_OBJECT Window
, RECTL
*Rect
)
828 Rect
->left
= Rect
->top
= 0;
829 Rect
->right
= Window
->Wnd
->rcClient
.right
- Window
->Wnd
->rcClient
.left
;
830 Rect
->bottom
= Window
->Wnd
->rcClient
.bottom
- Window
->Wnd
->rcClient
.top
;
836 IntGetFocusWindow(VOID
)
838 PUSER_MESSAGE_QUEUE Queue
;
839 PDESKTOP pdo
= IntGetActiveDesktop();
844 Queue
= (PUSER_MESSAGE_QUEUE
)pdo
->ActiveMessageQueue
;
849 return(Queue
->FocusWindow
);
853 PMENU_OBJECT FASTCALL
854 IntGetSystemMenu(PWINDOW_OBJECT Window
, BOOL bRevert
, BOOL RetMenu
)
856 PMENU_OBJECT Menu
, NewMenu
= NULL
, SysMenu
= NULL
, ret
= NULL
;
857 PTHREADINFO W32Thread
;
858 HMENU hNewMenu
, hSysMenu
;
859 ROSMENUITEMINFO ItemInfo
;
863 W32Thread
= PsGetCurrentThreadWin32Thread();
865 if(!W32Thread
->rpdesk
)
868 if(Window
->SystemMenu
)
870 Menu
= UserGetMenuObject(Window
->SystemMenu
);
873 IntDestroyMenuObject(Menu
, TRUE
, TRUE
);
874 Window
->SystemMenu
= (HMENU
)0;
878 if(W32Thread
->rpdesk
->rpwinstaParent
->SystemMenuTemplate
)
880 /* clone system menu */
881 Menu
= UserGetMenuObject(W32Thread
->rpdesk
->rpwinstaParent
->SystemMenuTemplate
);
885 NewMenu
= IntCloneMenu(Menu
);
888 Window
->SystemMenu
= NewMenu
->MenuInfo
.Self
;
889 NewMenu
->MenuInfo
.Flags
|= MF_SYSMENU
;
890 NewMenu
->MenuInfo
.Wnd
= Window
->hSelf
;
892 //IntReleaseMenuObject(NewMenu);
897 hSysMenu
= UserCreateMenu(FALSE
);
898 if (NULL
== hSysMenu
)
902 SysMenu
= IntGetMenuObject(hSysMenu
);
905 UserDestroyMenu(hSysMenu
);
908 SysMenu
->MenuInfo
.Flags
|= MF_SYSMENU
;
909 SysMenu
->MenuInfo
.Wnd
= Window
->hSelf
;
910 hNewMenu
= co_IntLoadSysMenuTemplate();
913 IntReleaseMenuObject(SysMenu
);
914 UserDestroyMenu(hSysMenu
);
917 Menu
= IntGetMenuObject(hNewMenu
);
920 IntReleaseMenuObject(SysMenu
);
921 UserDestroyMenu(hSysMenu
);
925 NewMenu
= IntCloneMenu(Menu
);
928 NewMenu
->MenuInfo
.Flags
|= MF_SYSMENU
| MF_POPUP
;
929 IntReleaseMenuObject(NewMenu
);
930 UserSetMenuDefaultItem(NewMenu
, SC_CLOSE
, FALSE
);
932 ItemInfo
.cbSize
= sizeof(MENUITEMINFOW
);
933 ItemInfo
.fMask
= MIIM_FTYPE
| MIIM_STRING
| MIIM_STATE
| MIIM_SUBMENU
;
934 ItemInfo
.fType
= MF_POPUP
;
935 ItemInfo
.fState
= MFS_ENABLED
;
936 ItemInfo
.dwTypeData
= NULL
;
938 ItemInfo
.hSubMenu
= NewMenu
->MenuInfo
.Self
;
939 IntInsertMenuItem(SysMenu
, (UINT
) -1, TRUE
, &ItemInfo
);
941 Window
->SystemMenu
= SysMenu
->MenuInfo
.Self
;
945 IntDestroyMenuObject(Menu
, FALSE
, TRUE
);
954 if(Window
->SystemMenu
)
955 return IntGetMenuObject((HMENU
)Window
->SystemMenu
);
963 IntIsChildWindow(PWINDOW_OBJECT Parent
, PWINDOW_OBJECT BaseWindow
)
965 PWINDOW_OBJECT Window
;
972 if (Window
== Parent
)
976 if(!(Wnd
->style
& WS_CHILD
))
981 Window
= Window
->spwndParent
;
988 IntIsWindowVisible(PWINDOW_OBJECT BaseWindow
)
990 PWINDOW_OBJECT Window
;
997 if(!(Wnd
->style
& WS_CHILD
))
1001 if(!(Wnd
->style
& WS_VISIBLE
))
1006 Window
= Window
->spwndParent
;
1009 if(Window
&& Wnd
->style
& WS_VISIBLE
)
1021 PWND WndPrevSibling
) /* set to NULL if top sibling */
1023 Wnd
->spwndParent
= WndParent
;
1024 if ((Wnd
->spwndPrev
= WndPrevSibling
))
1026 /* link after WndPrevSibling */
1027 if ((Wnd
->spwndNext
= WndPrevSibling
->spwndNext
))
1028 Wnd
->spwndNext
->spwndPrev
= Wnd
;
1030 Wnd
->spwndPrev
->spwndNext
= Wnd
;
1035 if ((Wnd
->spwndNext
= WndParent
->spwndChild
))
1036 Wnd
->spwndNext
->spwndPrev
= Wnd
;
1038 WndParent
->spwndChild
= Wnd
;
1043 /* link the window into siblings and parent. children are kept in place. */
1047 PWINDOW_OBJECT WndParent
,
1048 PWINDOW_OBJECT WndPrevSibling
/* set to NULL if top sibling */
1051 PWINDOW_OBJECT Parent
;
1053 IntLinkWnd(Wnd
->Wnd
,
1055 WndPrevSibling
? WndPrevSibling
->Wnd
: NULL
);
1057 Wnd
->spwndParent
= WndParent
;
1058 if ((Wnd
->spwndPrev
= WndPrevSibling
))
1060 /* link after WndPrevSibling */
1061 if ((Wnd
->spwndNext
= WndPrevSibling
->spwndNext
))
1062 Wnd
->spwndNext
->spwndPrev
= Wnd
;
1063 Wnd
->spwndPrev
->spwndNext
= Wnd
;
1068 Parent
= Wnd
->spwndParent
;
1069 if ((Wnd
->spwndNext
= WndParent
->spwndChild
))
1070 Wnd
->spwndNext
->spwndPrev
= Wnd
;
1073 Parent
->spwndChild
= Wnd
;
1078 Parent
->spwndChild
= Wnd
;
1085 IntSetOwner(HWND hWnd
, HWND hWndNewOwner
)
1087 PWINDOW_OBJECT Wnd
, WndOldOwner
, WndNewOwner
;
1090 Wnd
= IntGetWindowObject(hWnd
);
1094 WndOldOwner
= IntGetWindowObject(Wnd
->hOwner
);
1097 ret
= WndOldOwner
->hSelf
;
1098 UserDereferenceObject(WndOldOwner
);
1105 if((WndNewOwner
= UserGetWindowObject(hWndNewOwner
)))
1107 Wnd
->hOwner
= hWndNewOwner
;
1108 Wnd
->Wnd
->spwndOwner
= WndNewOwner
->Wnd
;
1113 Wnd
->Wnd
->spwndOwner
= NULL
;
1116 UserDereferenceObject(Wnd
);
1120 PWINDOW_OBJECT FASTCALL
1121 co_IntSetParent(PWINDOW_OBJECT Wnd
, PWINDOW_OBJECT WndNewParent
)
1123 PWINDOW_OBJECT WndOldParent
, Sibling
, InsertAfter
;
1124 // HWND hWnd, hWndNewParent;
1128 ASSERT(WndNewParent
);
1129 ASSERT_REFS_CO(Wnd
);
1130 ASSERT_REFS_CO(WndNewParent
);
1132 // hWnd = Wnd->hSelf;
1133 // hWndNewParent = WndNewParent->hSelf;
1135 /* Some applications try to set a child as a parent */
1136 if (IntIsChildWindow(Wnd
, WndNewParent
))
1138 SetLastWin32Error( ERROR_INVALID_PARAMETER
);
1143 * Windows hides the window first, then shows it again
1144 * including the WM_SHOWWINDOW messages and all
1146 WasVisible
= co_WinPosShowWindow(Wnd
, SW_HIDE
);
1148 // /* Validate that window and parent still exist */
1149 // if (!IntIsWindow(hWnd) || !IntIsWindow(hWndNewParent))
1152 /* Window must belong to current process */
1153 if (Wnd
->pti
->pEThread
->ThreadsProcess
!= PsGetCurrentProcess())
1156 WndOldParent
= Wnd
->spwndParent
;
1158 if (WndOldParent
) UserReferenceObject(WndOldParent
); /* caller must deref */
1160 if (WndNewParent
!= WndOldParent
)
1162 IntUnlinkWindow(Wnd
);
1164 if (0 == (Wnd
->Wnd
->ExStyle
& WS_EX_TOPMOST
))
1166 /* Not a TOPMOST window, put after TOPMOSTs of new parent */
1167 Sibling
= WndNewParent
->spwndChild
;
1168 while (NULL
!= Sibling
&& 0 != (Sibling
->Wnd
->ExStyle
& WS_EX_TOPMOST
))
1170 InsertAfter
= Sibling
;
1171 Sibling
= Sibling
->spwndNext
;
1174 if (NULL
== InsertAfter
)
1176 IntLinkWindow(Wnd
, WndNewParent
, InsertAfter
/*prev sibling*/);
1180 // UserReferenceObject(InsertAfter);
1181 IntLinkWindow(Wnd
, WndNewParent
, InsertAfter
/*prev sibling*/);
1182 // UserDereferenceObject(InsertAfter);
1187 * SetParent additionally needs to make hwnd the top window
1188 * in the z-order and send the expected WM_WINDOWPOSCHANGING and
1189 * WM_WINDOWPOSCHANGED notification messages.
1191 co_WinPosSetWindowPos(Wnd
, (0 == (Wnd
->Wnd
->ExStyle
& WS_EX_TOPMOST
) ? HWND_TOP
: HWND_TOPMOST
),
1192 0, 0, 0, 0, SWP_NOACTIVATE
| SWP_NOMOVE
| SWP_NOSIZE
1193 | (WasVisible
? SWP_SHOWWINDOW
: 0));
1196 * FIXME: a WM_MOVE is also generated (in the DefWindowProc handler
1197 * for WM_WINDOWPOSCHANGED) in Windows, should probably remove SWP_NOMOVE
1201 * Validate that the old parent still exist, since it migth have been
1202 * destroyed during the last callbacks to user-mode
1206 // if(!IntIsWindow(WndOldParent->hSelf))
1208 // UserDereferenceObject(WndOldParent);
1212 /* don't dereference the window object here, it must be done by the caller
1213 of IntSetParent() */
1214 // return WndOldParent;
1217 return WndOldParent
;//NULL;
1221 IntSetSystemMenu(PWINDOW_OBJECT Window
, PMENU_OBJECT Menu
)
1223 PMENU_OBJECT OldMenu
;
1224 if(Window
->SystemMenu
)
1226 OldMenu
= IntGetMenuObject(Window
->SystemMenu
);
1229 OldMenu
->MenuInfo
.Flags
&= ~ MF_SYSMENU
;
1230 IntReleaseMenuObject(OldMenu
);
1236 /* FIXME check window style, propably return FALSE ? */
1237 Window
->SystemMenu
= Menu
->MenuInfo
.Self
;
1238 Menu
->MenuInfo
.Flags
|= MF_SYSMENU
;
1241 Window
->SystemMenu
= (HMENU
)0;
1246 /* unlink the window from siblings and parent. children are kept in place. */
1248 IntUnlinkWnd(PWND Wnd
)
1251 Wnd
->spwndNext
->spwndPrev
= Wnd
->spwndPrev
;
1254 Wnd
->spwndPrev
->spwndNext
= Wnd
->spwndNext
;
1256 if (Wnd
->spwndParent
&& Wnd
->spwndParent
->spwndChild
== Wnd
)
1257 Wnd
->spwndParent
->spwndChild
= Wnd
->spwndNext
;
1259 Wnd
->spwndPrev
= Wnd
->spwndNext
= Wnd
->spwndParent
= NULL
;
1263 /* unlink the window from siblings and parent. children are kept in place. */
1265 IntUnlinkWindow(PWINDOW_OBJECT Wnd
)
1267 PWINDOW_OBJECT WndParent
= Wnd
->spwndParent
;
1269 IntUnlinkWnd(Wnd
->Wnd
);
1272 Wnd
->spwndNext
->spwndPrev
= Wnd
->spwndPrev
;
1275 Wnd
->spwndPrev
->spwndNext
= Wnd
->spwndNext
;
1276 else if (WndParent
&& WndParent
->spwndChild
== Wnd
)
1277 WndParent
->spwndChild
= Wnd
->spwndNext
;
1279 Wnd
->spwndPrev
= Wnd
->spwndNext
= Wnd
->spwndParent
= NULL
;
1285 PWINDOW_OBJECT Window
, Child
;
1287 if(!(Window
= UserGetWindowObject(IntGetDesktopWindow())))
1292 for(Child
= Window
->spwndChild
; Child
; Child
= Child
->spwndNext
)
1294 if(Child
->hOwner
&& Child
->Wnd
->style
& WS_VISIBLE
)
1297 * The desktop has a popup window if one of them has
1298 * an owner window and is visible
1308 IntIsWindowInDestroy(PWINDOW_OBJECT Window
)
1310 return ((Window
->state
& WINDOWSTATUS_DESTROYING
) == WINDOWSTATUS_DESTROYING
);
1316 IntGetWindowPlacement(PWINDOW_OBJECT Window
, WINDOWPLACEMENT
*lpwndpl
)
1322 if (!Wnd
) return FALSE
;
1324 if(lpwndpl
->length
!= sizeof(WINDOWPLACEMENT
))
1330 if (0 == (Wnd
->style
& WS_VISIBLE
))
1332 lpwndpl
->showCmd
= SW_HIDE
;
1334 else if (0 != (Window
->state
& WINDOWOBJECT_RESTOREMAX
) ||
1335 0 != (Wnd
->style
& WS_MAXIMIZE
))
1337 lpwndpl
->showCmd
= SW_MAXIMIZE
;
1339 else if (0 != (Wnd
->style
& WS_MINIMIZE
))
1341 lpwndpl
->showCmd
= SW_MINIMIZE
;
1343 else if (0 != (Wnd
->style
& WS_VISIBLE
))
1345 lpwndpl
->showCmd
= SW_SHOWNORMAL
;
1348 Size
.x
= Wnd
->rcWindow
.left
;
1349 Size
.y
= Wnd
->rcWindow
.top
;
1350 WinPosInitInternalPos(Window
, &Size
,
1353 lpwndpl
->rcNormalPosition
= Wnd
->InternalPos
.NormalRect
;
1354 lpwndpl
->ptMinPosition
= Wnd
->InternalPos
.IconPos
;
1355 lpwndpl
->ptMaxPosition
= Wnd
->InternalPos
.MaxPos
;
1361 /* FUNCTIONS *****************************************************************/
1367 NtUserAlterWindowStyle(DWORD Unknown0
,
1377 * As best as I can figure, this function is used by EnumWindows,
1378 * EnumChildWindows, EnumDesktopWindows, & EnumThreadWindows.
1380 * It's supposed to build a list of HWNDs to return to the caller.
1381 * We can figure out what kind of list by what parameters are
1389 NtUserBuildHwndList(
1402 return ERROR_INVALID_PARAMETER
;
1404 if (hwndParent
|| !dwThreadId
)
1407 PWINDOW_OBJECT Parent
, Window
;
1411 if(hDesktop
== NULL
&& !(Desktop
= IntGetActiveDesktop()))
1413 return ERROR_INVALID_HANDLE
;
1418 Status
= IntValidateDesktopHandle(hDesktop
,
1422 if(!NT_SUCCESS(Status
))
1424 return ERROR_INVALID_HANDLE
;
1427 hwndParent
= Desktop
->DesktopWindow
;
1434 if((Parent
= UserGetWindowObject(hwndParent
)) &&
1435 (Window
= Parent
->spwndChild
))
1437 BOOL bGoDown
= TRUE
;
1439 Status
= STATUS_SUCCESS
;
1444 if(dwCount
++ < *pBufSize
&& pWnd
)
1448 ProbeForWrite(pWnd
, sizeof(HWND
), 1);
1449 *pWnd
= Window
->hSelf
;
1452 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1454 Status
= _SEH2_GetExceptionCode();
1457 if(!NT_SUCCESS(Status
))
1459 SetLastNtError(Status
);
1463 if (Window
->spwndChild
&& bChildren
)
1465 Window
= Window
->spwndChild
;
1470 if (Window
->spwndNext
)
1472 Window
= Window
->spwndNext
;
1476 Window
= Window
->spwndParent
;
1477 if (Window
== Parent
)
1486 ObDereferenceObject(Desktop
);
1492 PTHREADINFO W32Thread
;
1493 PLIST_ENTRY Current
;
1494 PWINDOW_OBJECT Window
;
1496 Status
= PsLookupThreadByThreadId((HANDLE
)dwThreadId
, &Thread
);
1497 if(!NT_SUCCESS(Status
))
1499 return ERROR_INVALID_PARAMETER
;
1501 if(!(W32Thread
= (PTHREADINFO
)Thread
->Tcb
.Win32Thread
))
1503 ObDereferenceObject(Thread
);
1504 DPRINT("Thread is not a GUI Thread!\n");
1505 return ERROR_INVALID_PARAMETER
;
1508 Current
= W32Thread
->WindowListHead
.Flink
;
1509 while(Current
!= &(W32Thread
->WindowListHead
))
1511 Window
= CONTAINING_RECORD(Current
, WINDOW_OBJECT
, ThreadListEntry
);
1514 if(bChildren
|| Window
->hOwner
!= NULL
)
1516 if(dwCount
< *pBufSize
&& pWnd
)
1518 Status
= MmCopyToCaller(pWnd
++, &Window
->hSelf
, sizeof(HWND
));
1519 if(!NT_SUCCESS(Status
))
1521 SetLastNtError(Status
);
1527 Current
= Current
->Flink
;
1530 ObDereferenceObject(Thread
);
1533 *pBufSize
= dwCount
;
1534 return STATUS_SUCCESS
;
1542 NtUserChildWindowFromPointEx(HWND hwndParent
,
1547 PWINDOW_OBJECT Parent
;
1552 if(!(Parent
= UserGetWindowObject(hwndParent
)))
1560 if(Parent
->hSelf
!= IntGetDesktopWindow())
1562 Pt
.x
+= Parent
->Wnd
->rcClient
.left
;
1563 Pt
.y
+= Parent
->Wnd
->rcClient
.top
;
1566 if(!IntPtInWindow(Parent
, Pt
.x
, Pt
.y
))
1571 Ret
= Parent
->hSelf
;
1572 if((List
= IntWinListChildren(Parent
)))
1574 for(phWnd
= List
; *phWnd
; phWnd
++)
1576 PWINDOW_OBJECT Child
;
1578 if((Child
= UserGetWindowObject(*phWnd
)))
1580 ChildWnd
= Child
->Wnd
;
1581 if(!(ChildWnd
->style
& WS_VISIBLE
) && (uiFlags
& CWP_SKIPINVISIBLE
))
1585 if((ChildWnd
->style
& WS_DISABLED
) && (uiFlags
& CWP_SKIPDISABLED
))
1589 if((ChildWnd
->ExStyle
& WS_EX_TRANSPARENT
) && (uiFlags
& CWP_SKIPTRANSPARENT
))
1593 if(IntPtInWindow(Child
, Pt
.x
, Pt
.y
))
1608 * calculates the default position of a window
1611 IntCalcDefPosSize(PWINDOW_OBJECT Parent
, RECTL
*rc
, BOOL IncPos
)
1617 pMonitor
= IntGetPrimaryMonitor();
1621 RECTL_bIntersectRect(rc
, rc
, &pMonitor
->rcMonitor
);
1625 Pos
.x
= pMonitor
->cWndStack
* (UserGetSystemMetrics(SM_CXSIZE
) + UserGetSystemMetrics(SM_CXFRAME
));
1626 Pos
.y
= pMonitor
->cWndStack
* (UserGetSystemMetrics(SM_CYSIZE
) + UserGetSystemMetrics(SM_CYFRAME
));
1627 if (Pos
.x
> ((rc
->right
- rc
->left
) / 4) ||
1628 Pos
.y
> ((rc
->bottom
- rc
->top
) / 4))
1630 /* reset counter and position */
1633 pMonitor
->cWndStack
= 0;
1635 pMonitor
->cWndStack
++;
1646 Sz
.cx
= EngMulDiv(rc
->right
- rc
->left
, 3, 4);
1647 Sz
.cy
= EngMulDiv(rc
->bottom
- rc
->top
, 3, 4);
1651 rc
->right
= rc
->left
+ Sz
.cx
;
1652 rc
->bottom
= rc
->top
+ Sz
.cy
;
1661 co_IntCreateWindowEx(DWORD dwExStyle
,
1662 PUNICODE_STRING ClassName
,
1663 PUNICODE_STRING WindowName
,
1671 HINSTANCE hInstance
,
1674 BOOL bUnicodeWindow
)
1676 PWINSTATION_OBJECT WinSta
;
1678 PCLS
*ClassLink
, Class
= NULL
;
1680 PWINDOW_OBJECT Window
= NULL
;
1681 PWINDOW_OBJECT ParentWindow
= NULL
, OwnerWindow
;
1682 HWND ParentWindowHandle
= NULL
;
1683 HWND OwnerWindowHandle
;
1684 PMENU_OBJECT SystemMenu
;
1688 PTHREADINFO ti
= NULL
;
1691 POINT MaxSize
, MaxPos
, MinTrack
, MaxTrack
;
1697 CBT_CREATEWNDW CbtCreate
;
1700 DECLARE_RETURN(PWND
);
1702 USER_REFERENCE_ENTRY ParentRef
, Ref
;
1705 pti
= PsGetCurrentThreadWin32Thread();
1709 ParentWindowHandle
= pti
->rpdesk
->DesktopWindow
;
1713 if ( !(pti
->ppi
->W32PF_flags
& W32PF_CLASSESREGISTERED
))
1715 UserRegisterSystemClasses();
1718 OwnerWindowHandle
= NULL
;
1720 DPRINT("co_IntCreateWindowEx %wZ\n", ClassName
);
1722 if (hWndParent
== HWND_MESSAGE
)
1725 * native ole32.OleInitialize uses HWND_MESSAGE to create the
1726 * message window (style: WS_POPUP|WS_DISABLED)
1728 ParentWindowHandle
= IntGetMessageWindow();
1729 DPRINT("Parent is HWND_MESSAGE 0x%x\n", ParentWindowHandle
);
1731 else if (hWndParent
)
1733 if ((dwStyle
& (WS_CHILD
| WS_POPUP
)) != WS_CHILD
)
1735 PWINDOW_OBJECT Par
= UserGetWindowObject(hWndParent
), Root
;
1736 if (Par
&& (Root
= UserGetAncestor(Par
, GA_ROOT
)))
1737 OwnerWindowHandle
= Root
->hSelf
;
1740 ParentWindowHandle
= hWndParent
;
1742 else if ((dwStyle
& (WS_CHILD
| WS_POPUP
)) == WS_CHILD
)
1744 SetLastWin32Error(ERROR_TLW_WITH_WSCHILD
);
1745 RETURN( (PWND
)0); /* WS_CHILD needs a parent, but WS_POPUP doesn't */
1748 if (ParentWindowHandle
)
1750 ParentWindow
= UserGetWindowObject(ParentWindowHandle
);
1752 if (ParentWindow
) UserRefObjectCo(ParentWindow
, &ParentRef
);
1756 ParentWindow
= NULL
;
1759 /* FIXME: parent must belong to the current process */
1761 /* Check the window station. */
1762 ti
= GetW32ThreadInfo();
1763 if (ti
== NULL
|| pti
->rpdesk
== NULL
)
1765 DPRINT1("Thread is not attached to a desktop! Cannot create window!\n");
1769 /* Check the class. */
1771 DPRINT("Class %wZ\n", ClassName
);
1773 ClassAtom
= IntGetClassAtom(ClassName
,
1779 if (ClassAtom
== (RTL_ATOM
)0)
1781 if (IS_ATOM(ClassName
->Buffer
))
1783 DPRINT1("Class 0x%p not found\n", (DWORD_PTR
) ClassName
->Buffer
);
1787 DPRINT1("Class \"%wZ\" not found\n", ClassName
);
1790 SetLastWin32Error(ERROR_CANNOT_FIND_WND_CLASS
);
1793 DPRINT("ClassAtom %x\n", ClassAtom
);
1794 Class
= IntReferenceClass(Class
,
1799 DPRINT1("Failed to reference window class!\n");
1803 WinSta
= pti
->rpdesk
->rpwinstaParent
;
1805 //FIXME: Reference thread/desktop instead
1806 ObReferenceObjectByPointer(WinSta
, KernelMode
, ExWindowStationObjectType
, 0);
1808 /* Create the window object. */
1809 Window
= (PWINDOW_OBJECT
) UserCreateObject( gHandleTable
,
1813 sizeof(WINDOW_OBJECT
));
1816 Window
->Wnd
= DesktopHeapAlloc(pti
->rpdesk
,
1817 sizeof(WND
) + Class
->cbwndExtra
);
1820 RtlZeroMemory(Window
->Wnd
,
1821 sizeof(WND
) + Class
->cbwndExtra
);
1822 Window
->Wnd
->head
.h
= hWnd
;
1827 Wnd
->head
.rpdesk
= pti
->rpdesk
;
1828 Wnd
->hWndLastActive
= hWnd
;
1829 Wnd
->state2
|= WNDS2_WIN40COMPAT
;
1832 DPRINT("Created object with handle %X\n", hWnd
);
1836 ObDereferenceObject(WinSta
);
1837 SetLastNtError(STATUS_INSUFFICIENT_RESOURCES
);
1841 UserRefObjectCo(Window
, &Ref
);
1843 ObDereferenceObject(WinSta
);
1845 if (NULL
== pti
->rpdesk
->DesktopWindow
)
1847 /* If there is no desktop window yet, we must be creating it */
1848 pti
->rpdesk
->DesktopWindow
= hWnd
;
1849 pti
->rpdesk
->pDeskInfo
->spwnd
= Wnd
;
1853 * Fill out the structure describing it.
1859 Window
->SystemMenu
= (HMENU
)0;
1861 Wnd
->hModule
= hInstance
;
1862 Window
->hSelf
= hWnd
;
1864 IntReferenceMessageQueue(Window
->pti
->MessageQueue
);
1865 Window
->spwndParent
= ParentWindow
;
1866 Wnd
->spwndParent
= ParentWindow
? ParentWindow
->Wnd
: NULL
;
1867 if (Wnd
->spwndParent
!= NULL
&& hWndParent
!= 0)
1869 Wnd
->HideFocus
= Wnd
->spwndParent
->HideFocus
;
1870 Wnd
->HideAccel
= Wnd
->spwndParent
->HideAccel
;
1873 if((OwnerWindow
= UserGetWindowObject(OwnerWindowHandle
)))
1875 Window
->hOwner
= OwnerWindowHandle
;
1876 Wnd
->spwndOwner
= OwnerWindow
->Wnd
;
1881 Window
->hOwner
= NULL
;
1882 Wnd
->spwndOwner
= NULL
;
1886 Wnd
->dwUserData
= 0;
1888 if (Wnd
->pcls
->CSF_flags
& CSF_SERVERSIDEPROC
)
1889 Wnd
->state
|= WNDS_SERVERSIDEWINDOWPROC
;
1891 /* BugBoy Comments: Comment below say that System classes are always created
1892 as UNICODE. In windows, creating a window with the ANSI version of CreateWindow
1893 sets the window to ansi as verified by testing with IsUnicodeWindow API.
1895 No where can I see in code or through testing does the window change back
1896 to ANSI after being created as UNICODE in ROS. I didnt do more testing to
1897 see what problems this would cause.*/
1899 // Set WndProc from Class.
1900 Wnd
->lpfnWndProc
= Wnd
->pcls
->lpfnWndProc
;
1902 // GetWindowProc, test for non server side default classes and set WndProc.
1903 if ( Wnd
->pcls
->fnid
<= FNID_GHOST
&& Wnd
->pcls
->fnid
>= FNID_BUTTON
)
1907 if (GETPFNCLIENTA(Wnd
->pcls
->fnid
) == Wnd
->lpfnWndProc
)
1908 Wnd
->lpfnWndProc
= GETPFNCLIENTW(Wnd
->pcls
->fnid
);
1912 if (GETPFNCLIENTW(Wnd
->pcls
->fnid
) == Wnd
->lpfnWndProc
)
1913 Wnd
->lpfnWndProc
= GETPFNCLIENTA(Wnd
->pcls
->fnid
);
1917 // If not an Unicode caller, set Ansi creator bit.
1918 if (!bUnicodeWindow
) Wnd
->state
|= WNDS_ANSICREATOR
;
1920 // Clone Class Ansi/Unicode proc type.
1921 if (Wnd
->pcls
->CSF_flags
& CSF_ANSIPROC
)
1923 Wnd
->state
|= WNDS_ANSIWINDOWPROC
;
1924 Wnd
->Unicode
= FALSE
;
1928 It seems there can be both an Ansi creator and Unicode Class Window
1929 WndProc, unless the following overriding conditions occur:
1931 if ( !bUnicodeWindow
&&
1932 ( ClassAtom
== gpsi
->atomSysClass
[ICLS_BUTTON
] ||
1933 ClassAtom
== gpsi
->atomSysClass
[ICLS_COMBOBOX
] ||
1934 ClassAtom
== gpsi
->atomSysClass
[ICLS_COMBOLBOX
] ||
1935 ClassAtom
== gpsi
->atomSysClass
[ICLS_DIALOG
] ||
1936 ClassAtom
== gpsi
->atomSysClass
[ICLS_EDIT
] ||
1937 ClassAtom
== gpsi
->atomSysClass
[ICLS_IME
] ||
1938 ClassAtom
== gpsi
->atomSysClass
[ICLS_LISTBOX
] ||
1939 ClassAtom
== gpsi
->atomSysClass
[ICLS_MDICLIENT
] ||
1940 ClassAtom
== gpsi
->atomSysClass
[ICLS_STATIC
] ) )
1941 { // Override Class and set the window Ansi WndProc.
1942 Wnd
->state
|= WNDS_ANSIWINDOWPROC
;
1943 Wnd
->Unicode
= FALSE
;
1946 { // Set the window Unicode WndProc.
1947 Wnd
->state
&= ~WNDS_ANSIWINDOWPROC
;
1948 Wnd
->Unicode
= TRUE
;
1952 Window
->spwndChild
= NULL
;
1953 Window
->spwndPrev
= NULL
;
1954 Window
->spwndNext
= NULL
;
1956 Wnd
->spwndNext
= NULL
;
1957 Wnd
->spwndPrev
= NULL
;
1958 Wnd
->spwndChild
= NULL
;
1960 Wnd
->cbwndExtra
= Wnd
->pcls
->cbwndExtra
;
1962 InitializeListHead(&Wnd
->PropListHead
);
1964 if ( NULL
!= WindowName
->Buffer
&& WindowName
->Length
> 0 )
1966 Wnd
->strName
.Buffer
= DesktopHeapAlloc(Wnd
->head
.rpdesk
,
1967 WindowName
->Length
+ sizeof(UNICODE_NULL
));
1968 if (Wnd
->strName
.Buffer
== NULL
)
1970 SetLastNtError(STATUS_INSUFFICIENT_RESOURCES
);
1974 Wnd
->strName
.Buffer
[WindowName
->Length
/ sizeof(WCHAR
)] = L
'\0';
1977 RtlCopyMemory(Wnd
->strName
.Buffer
,
1979 WindowName
->Length
);
1980 Wnd
->strName
.Length
= WindowName
->Length
;
1982 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
1984 WindowName
->Length
= 0;
1985 Wnd
->strName
.Buffer
[0] = L
'\0';
1991 * This has been tested for WS_CHILD | WS_VISIBLE. It has not been
1992 * tested for WS_POPUP
1994 if ((dwExStyle
& WS_EX_DLGMODALFRAME
) ||
1995 ((!(dwExStyle
& WS_EX_STATICEDGE
)) &&
1996 (dwStyle
& (WS_DLGFRAME
| WS_THICKFRAME
))))
1997 dwExStyle
|= WS_EX_WINDOWEDGE
;
1999 dwExStyle
&= ~WS_EX_WINDOWEDGE
;
2001 /* Correct the window style. */
2002 if (!(dwStyle
& WS_CHILD
))
2004 dwStyle
|= WS_CLIPSIBLINGS
;
2005 DPRINT("3: Style is now %lx\n", dwStyle
);
2006 if (!(dwStyle
& WS_POPUP
))
2008 dwStyle
|= WS_CAPTION
;
2009 Window
->state
|= WINDOWOBJECT_NEED_SIZE
;
2010 DPRINT("4: Style is now %lx\n", dwStyle
);
2014 /* create system menu */
2015 if((dwStyle
& WS_SYSMENU
) )//&& (dwStyle & WS_CAPTION) == WS_CAPTION)
2017 SystemMenu
= IntGetSystemMenu(Window
, TRUE
, TRUE
);
2020 Window
->SystemMenu
= SystemMenu
->MenuInfo
.Self
;
2021 IntReleaseMenuObject(SystemMenu
);
2025 /* Set the window menu */
2026 if ((dwStyle
& (WS_CHILD
| WS_POPUP
)) != WS_CHILD
)
2029 IntSetMenu(Window
, hMenu
, &MenuChanged
);
2030 else if (Wnd
->pcls
->lpszMenuName
) // Take it from the parent.
2032 UNICODE_STRING MenuName
;
2033 if (IS_INTRESOURCE(Wnd
->pcls
->lpszMenuName
))
2035 MenuName
.Length
= 0;
2036 MenuName
.MaximumLength
= 0;
2037 MenuName
.Buffer
= Wnd
->pcls
->lpszMenuName
;
2041 RtlInitUnicodeString( &MenuName
, Wnd
->pcls
->lpszMenuName
);
2043 hMenu
= co_IntCallLoadMenu( Wnd
->pcls
->hModule
, &MenuName
);
2044 if (hMenu
) IntSetMenu(Window
, hMenu
, &MenuChanged
);
2048 Wnd
->IDMenu
= (UINT
) hMenu
;
2050 /* Insert the window into the thread's window list. */
2051 InsertTailList (&pti
->WindowListHead
, &Window
->ThreadListEntry
);
2053 /* Handle "CS_CLASSDC", it is tested first. */
2054 if ( (Wnd
->pcls
->style
& CS_CLASSDC
) && !(Wnd
->pcls
->pdce
) )
2055 { /* One DCE per class to have CLASS. */
2056 Wnd
->pcls
->pdce
= DceAllocDCE( Window
, DCE_CLASS_DC
);
2058 else if ( Wnd
->pcls
->style
& CS_OWNDC
)
2059 { /* Allocate a DCE for this window. */
2060 DceAllocDCE(Window
, DCE_WINDOW_DC
);
2068 Wnd
->ExStyle
= dwExStyle
;
2069 Wnd
->style
= dwStyle
& ~WS_VISIBLE
;
2072 Cs
.lpCreateParams
= lpParam
;
2073 Cs
.hInstance
= hInstance
;
2075 Cs
.hwndParent
= hWndParent
; //Pass the original Parent handle!
2080 Cs
.style
= Wnd
->style
;
2081 // Cs.lpszName = (LPCWSTR) WindowName->Buffer;
2082 // Cs.lpszClass = (LPCWSTR) ClassName->Buffer;
2083 Cs
.lpszName
= (LPCWSTR
) WindowName
;
2084 Cs
.lpszClass
= (LPCWSTR
) ClassName
;
2085 Cs
.dwExStyle
= dwExStyle
;
2086 CbtCreate
.lpcs
= &Cs
;
2087 CbtCreate
.hwndInsertAfter
= HWND_TOP
;
2088 if (ISITHOOKED(WH_CBT
))
2090 if (co_HOOK_CallHooks(WH_CBT
, HCBT_CREATEWND
, (WPARAM
) hWnd
, (LPARAM
) &CbtCreate
))
2092 /* FIXME - Delete window object and remove it from the thread windows list */
2093 /* FIXME - delete allocated DCE */
2094 DPRINT1("CBT-hook returned !0\n");
2095 RETURN( (PWND
) NULL
);
2102 // FIXME: Need to set the Z order in the window link list if the hook callback changed it!
2103 // hwndInsertAfter = CbtCreate.hwndInsertAfter;
2105 /* default positioning for overlapped windows */
2106 if(!(Wnd
->style
& (WS_POPUP
| WS_CHILD
)))
2109 PRTL_USER_PROCESS_PARAMETERS ProcessParams
;
2110 BOOL CalculatedDefPosSize
= FALSE
;
2112 IntGetDesktopWorkArea(Window
->pti
->rpdesk
, &WorkArea
);
2115 ProcessParams
= PsGetCurrentProcess()->Peb
->ProcessParameters
;
2117 if(x
== CW_USEDEFAULT
|| x
== CW_USEDEFAULT16
)
2119 CalculatedDefPosSize
= IntCalcDefPosSize(ParentWindow
, &rc
, TRUE
);
2121 if(ProcessParams
->WindowFlags
& STARTF_USEPOSITION
)
2123 ProcessParams
->WindowFlags
&= ~STARTF_USEPOSITION
;
2124 Pos
.x
= WorkArea
.left
+ ProcessParams
->StartingX
;
2125 Pos
.y
= WorkArea
.top
+ ProcessParams
->StartingY
;
2134 According to wine, the ShowMode is set to y if x == CW_USEDEFAULT(16) and
2135 y is something else. and Quote!
2138 /* Never believe Microsoft's documentation... CreateWindowEx doc says
2139 * that if an overlapped window is created with WS_VISIBLE style bit
2140 * set and the x parameter is set to CW_USEDEFAULT, the system ignores
2141 * the y parameter. However, disassembling NT implementation (WIN32K.SYS)
2144 * 1) not only it checks for CW_USEDEFAULT but also for CW_USEDEFAULT16
2145 * 2) it does not ignore the y parameter as the docs claim; instead, it
2146 * uses it as second parameter to ShowWindow() unless y is either
2147 * CW_USEDEFAULT or CW_USEDEFAULT16.
2149 * The fact that we didn't do 2) caused bogus windows pop up when wine
2150 * was running apps that were using this obscure feature. Example -
2151 * calc.exe that comes with Win98 (only Win98, it's different from
2152 * the one that comes with Win95 and NT)
2154 if(y
!= CW_USEDEFAULT
&& y
!= CW_USEDEFAULT16
)
2159 if(nWidth
== CW_USEDEFAULT
|| nWidth
== CW_USEDEFAULT16
)
2161 if(!CalculatedDefPosSize
)
2163 IntCalcDefPosSize(ParentWindow
, &rc
, FALSE
);
2165 if(ProcessParams
->WindowFlags
& STARTF_USESIZE
)
2167 ProcessParams
->WindowFlags
&= ~STARTF_USESIZE
;
2168 Size
.cx
= ProcessParams
->CountX
;
2169 Size
.cy
= ProcessParams
->CountY
;
2173 Size
.cx
= rc
.right
- rc
.left
;
2174 Size
.cy
= rc
.bottom
- rc
.top
;
2177 /* move the window if necessary */
2179 Pos
.x
= max(rc
.left
, 0);
2181 Pos
.y
= max(rc
.top
, 0);
2186 /* if CW_USEDEFAULT(16) is set for non-overlapped windows, both values are set to zero) */
2187 if(x
== CW_USEDEFAULT
|| x
== CW_USEDEFAULT16
)
2192 if(nWidth
== CW_USEDEFAULT
|| nWidth
== CW_USEDEFAULT16
)
2199 /* Initialize the window dimensions. */
2200 Wnd
->rcWindow
.left
= Pos
.x
;
2201 Wnd
->rcWindow
.top
= Pos
.y
;
2202 Wnd
->rcWindow
.right
= Pos
.x
+ Size
.cx
;
2203 Wnd
->rcWindow
.bottom
= Pos
.y
+ Size
.cy
;
2204 if (0 != (Wnd
->style
& WS_CHILD
) && ParentWindow
)
2206 RECTL_vOffsetRect(&(Wnd
->rcWindow
), ParentWindow
->Wnd
->rcClient
.left
,
2207 ParentWindow
->Wnd
->rcClient
.top
);
2209 Wnd
->rcClient
= Wnd
->rcWindow
;
2212 * Get the size and position of the window.
2214 if ((dwStyle
& WS_THICKFRAME
) || !(dwStyle
& (WS_POPUP
| WS_CHILD
)))
2216 POINT MaxSize
, MaxPos
, MinTrack
, MaxTrack
;
2218 /* WinPosGetMinMaxInfo sends the WM_GETMINMAXINFO message */
2219 co_WinPosGetMinMaxInfo(Window
, &MaxSize
, &MaxPos
, &MinTrack
,
2221 if (MaxSize
.x
< Size
.cx
)
2222 Size
.cx
= MaxSize
.x
;
2223 if (MaxSize
.y
< Size
.cy
)
2224 Size
.cy
= MaxSize
.y
;
2225 if (Size
.cx
< MinTrack
.x
)
2226 Size
.cx
= MinTrack
.x
;
2227 if (Size
.cy
< MinTrack
.y
)
2228 Size
.cy
= MinTrack
.y
;
2235 Wnd
->rcWindow
.left
= Pos
.x
;
2236 Wnd
->rcWindow
.top
= Pos
.y
;
2237 Wnd
->rcWindow
.right
= Pos
.x
+ Size
.cx
;
2238 Wnd
->rcWindow
.bottom
= Pos
.y
+ Size
.cy
;
2239 if (0 != (Wnd
->style
& WS_CHILD
) && ParentWindow
)
2241 RECTL_vOffsetRect(&(Wnd
->rcWindow
), ParentWindow
->Wnd
->rcClient
.left
,
2242 ParentWindow
->Wnd
->rcClient
.top
);
2244 Wnd
->rcClient
= Wnd
->rcWindow
;
2246 /* FIXME: Initialize the window menu. */
2248 /* Send a NCCREATE message. */
2254 DPRINT("[win32k.window] IntCreateWindowEx style %d, exstyle %d, parent %d\n", Cs
.style
, Cs
.dwExStyle
, Cs
.hwndParent
);
2255 DPRINT("IntCreateWindowEx(): (%d,%d-%d,%d)\n", x
, y
, Size
.cx
, Size
.cy
);
2256 DPRINT("IntCreateWindowEx(): About to send NCCREATE message.\n");
2257 Result
= co_IntSendMessage(Window
->hSelf
, WM_NCCREATE
, 0, (LPARAM
) &Cs
);
2260 /* FIXME: Cleanup. */
2261 DPRINT1("IntCreateWindowEx(): NCCREATE message failed. No cleanup performed!\n");
2265 /* Calculate the non-client size. */
2266 MaxPos
.x
= Window
->Wnd
->rcWindow
.left
;
2267 MaxPos
.y
= Window
->Wnd
->rcWindow
.top
;
2270 DPRINT("IntCreateWindowEx(): About to get non-client size.\n");
2271 /* WinPosGetNonClientSize SENDS THE WM_NCCALCSIZE message */
2272 Result
= co_WinPosGetNonClientSize(Window
,
2273 &Window
->Wnd
->rcWindow
,
2274 &Window
->Wnd
->rcClient
);
2276 RECTL_vOffsetRect(&Window
->Wnd
->rcWindow
,
2277 MaxPos
.x
- Window
->Wnd
->rcWindow
.left
,
2278 MaxPos
.y
- Window
->Wnd
->rcWindow
.top
);
2281 if (NULL
!= ParentWindow
)
2283 /* link the window into the parent's child list */
2284 if ((dwStyle
& (WS_CHILD
|WS_MAXIMIZE
)) == WS_CHILD
)
2286 PWINDOW_OBJECT PrevSibling
;
2288 PrevSibling
= ParentWindow
->spwndChild
;
2292 while (PrevSibling
->spwndNext
)
2293 PrevSibling
= PrevSibling
->spwndNext
;
2296 /* link window as bottom sibling */
2297 IntLinkWindow(Window
, ParentWindow
, PrevSibling
/*prev sibling*/);
2301 /* link window as top sibling (but after topmost siblings) */
2302 PWINDOW_OBJECT InsertAfter
, Sibling
;
2303 if (!(dwExStyle
& WS_EX_TOPMOST
))
2306 Sibling
= ParentWindow
->spwndChild
;
2307 while (Sibling
&& (Sibling
->Wnd
->ExStyle
& WS_EX_TOPMOST
))
2309 InsertAfter
= Sibling
;
2310 Sibling
= Sibling
->spwndNext
;
2318 IntLinkWindow(Window
, ParentWindow
, InsertAfter
/* prev sibling */);
2322 /* Send the WM_CREATE message. */
2323 DPRINT("IntCreateWindowEx(): about to send CREATE message.\n");
2324 Result
= co_IntSendMessage(Window
->hSelf
, WM_CREATE
, 0, (LPARAM
) &Cs
);
2326 if (Result
== (LRESULT
)-1)
2328 /* FIXME: Cleanup. */
2329 DPRINT1("IntCreateWindowEx(): send CREATE message failed. No cleanup performed!\n");
2330 IntUnlinkWindow(Window
);
2334 IntNotifyWinEvent(EVENT_OBJECT_CREATE
, Window
->Wnd
, OBJID_WINDOW
, 0);
2336 /* Send move and size messages. */
2337 if (!(Window
->state
& WINDOWOBJECT_NEED_SIZE
))
2341 DPRINT("IntCreateWindow(): About to send WM_SIZE\n");
2343 if ((Window
->Wnd
->rcClient
.right
- Window
->Wnd
->rcClient
.left
) < 0 ||
2344 (Window
->Wnd
->rcClient
.bottom
- Window
->Wnd
->rcClient
.top
) < 0)
2346 DPRINT("Sending bogus WM_SIZE\n");
2349 lParam
= MAKE_LONG(Window
->Wnd
->rcClient
.right
-
2350 Window
->Wnd
->rcClient
.left
,
2351 Window
->Wnd
->rcClient
.bottom
-
2352 Window
->Wnd
->rcClient
.top
);
2353 co_IntSendMessage(Window
->hSelf
, WM_SIZE
, SIZE_RESTORED
,
2356 DPRINT("IntCreateWindow(): About to send WM_MOVE\n");
2358 if (0 != (Wnd
->style
& WS_CHILD
) && ParentWindow
)
2360 lParam
= MAKE_LONG(Wnd
->rcClient
.left
- ParentWindow
->Wnd
->rcClient
.left
,
2361 Wnd
->rcClient
.top
- ParentWindow
->Wnd
->rcClient
.top
);
2365 lParam
= MAKE_LONG(Wnd
->rcClient
.left
,
2369 co_IntSendMessage(Window
->hSelf
, WM_MOVE
, 0, lParam
);
2371 /* Call WNDOBJ change procs */
2372 IntEngWindowChanged(Window
, WOC_RGN_CLIENT
);
2375 /* Show or maybe minimize or maximize the window. */
2376 if (Wnd
->style
& (WS_MINIMIZE
| WS_MAXIMIZE
))
2381 SwFlag
= (Wnd
->style
& WS_MINIMIZE
) ? SW_MINIMIZE
:
2384 co_WinPosMinMaximize(Window
, SwFlag
, &NewPos
);
2386 SwFlag
= ((Wnd
->style
& WS_CHILD
) || UserGetActiveWindow()) ?
2387 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_FRAMECHANGED
:
2388 SWP_NOZORDER
| SWP_FRAMECHANGED
;
2390 DPRINT("IntCreateWindow(): About to minimize/maximize\n");
2391 DPRINT("%d,%d %dx%d\n", NewPos
.left
, NewPos
.top
, NewPos
.right
, NewPos
.bottom
);
2392 co_WinPosSetWindowPos(Window
, 0, NewPos
.left
, NewPos
.top
,
2393 NewPos
.right
, NewPos
.bottom
, SwFlag
);
2396 /* Notify the parent window of a new child. */
2397 if ((Wnd
->style
& WS_CHILD
) &&
2398 (!(Wnd
->ExStyle
& WS_EX_NOPARENTNOTIFY
)) && ParentWindow
)
2400 DPRINT("IntCreateWindow(): About to notify parent\n");
2401 co_IntSendMessage(ParentWindow
->hSelf
,
2403 MAKEWPARAM(WM_CREATE
, Wnd
->IDMenu
),
2404 (LPARAM
)Window
->hSelf
);
2407 if ((!hWndParent
) && (!HasOwner
))
2409 DPRINT("Sending CREATED notify\n");
2410 co_IntShellHookNotify(HSHELL_WINDOWCREATED
, (LPARAM
)hWnd
);
2414 DPRINT("Not sending CREATED notify, %x %d\n", ParentWindow
, HasOwner
);
2417 /* Initialize and show the window's scrollbars */
2418 if (Wnd
->style
& WS_VSCROLL
)
2420 co_UserShowScrollBar(Window
, SB_VERT
, TRUE
);
2422 if (Wnd
->style
& WS_HSCROLL
)
2424 co_UserShowScrollBar(Window
, SB_HORZ
, TRUE
);
2427 if (dwStyle
& WS_VISIBLE
)
2429 if (Wnd
->style
& WS_MAXIMIZE
)
2430 dwShowMode
= SW_SHOW
;
2431 else if (Wnd
->style
& WS_MINIMIZE
)
2432 dwShowMode
= SW_SHOWMINIMIZED
;
2434 DPRINT("IntCreateWindow(): About to show window\n");
2435 co_WinPosShowWindow(Window
, dwShowMode
);
2437 if (Wnd
->ExStyle
& WS_EX_MDICHILD
)
2439 co_IntSendMessage(ParentWindow
->hSelf
, WM_MDIREFRESHMENU
, 0, 0);
2440 /* ShowWindow won't activate child windows */
2441 co_WinPosSetWindowPos(Window
, HWND_TOP
, 0, 0, 0, 0, SWP_SHOWWINDOW
| SWP_NOMOVE
| SWP_NOSIZE
);
2445 /* BugBoy Comments: if the window being created is a edit control, ATOM 0xCxxx,
2446 then my testing shows that windows (2k and XP) creates a CallProc for it immediately
2447 Dont understand why it does this. */
2448 if (ClassAtom
== gpsi
->atomSysClass
[ICLS_EDIT
])
2450 PCALLPROCDATA CallProc
;
2451 //CallProc = CreateCallProc(NULL, Wnd->lpfnWndProc, bUnicodeWindow, Wnd->ti->ppi);
2452 CallProc
= CreateCallProc(NULL
, Wnd
->lpfnWndProc
, Wnd
->Unicode
, Wnd
->head
.pti
->ppi
);
2456 SetLastWin32Error(ERROR_NOT_ENOUGH_MEMORY
);
2457 DPRINT1("Warning: Unable to create CallProc for edit control. Control may not operate correctly! hwnd %x\n",hWnd
);
2461 UserAddCallProcToClass(Wnd
->pcls
, CallProc
);
2465 DPRINT("IntCreateWindow(): = %X\n", hWnd
);
2466 DPRINT("WindowObject->SystemMenu = 0x%x\n", Window
->SystemMenu
);
2470 if (!_ret_
&& Window
&& Window
->Wnd
&& ti
)
2471 co_UserDestroyWindow(Window
);
2472 // UserFreeWindowInfo(ti, Window);
2475 UserDerefObjectCo(Window
);
2476 UserDereferenceObject(Window
);
2478 if (ParentWindow
) UserDerefObjectCo(ParentWindow
);
2479 if (!_ret_
&& ti
!= NULL
)
2483 IntDereferenceClass(Class
,
2492 NtUserCreateWindowEx(DWORD dwExStyle
,
2493 PUNICODE_STRING UnsafeClassName
,
2494 PUNICODE_STRING UnsafeWindowName
,
2502 HINSTANCE hInstance
,
2505 BOOL bUnicodeWindow
,
2509 UNICODE_STRING WindowName
;
2510 UNICODE_STRING ClassName
;
2511 HWND NewWindow
= NULL
;
2513 DECLARE_RETURN(HWND
);
2515 DPRINT("Enter NtUserCreateWindowEx(): (%d,%d-%d,%d)\n", x
, y
, nWidth
, nHeight
);
2516 UserEnterExclusive();
2518 /* Get the class name (string or atom) */
2519 Status
= MmCopyFromCaller(&ClassName
, UnsafeClassName
, sizeof(UNICODE_STRING
));
2520 if (! NT_SUCCESS(Status
))
2522 SetLastNtError(Status
);
2525 if (ClassName
.Length
!= 0)
2527 Status
= IntSafeCopyUnicodeStringTerminateNULL(&ClassName
, UnsafeClassName
);
2528 if (! NT_SUCCESS(Status
))
2530 SetLastNtError(Status
);
2534 else if (! IS_ATOM(ClassName
.Buffer
))
2536 SetLastWin32Error(ERROR_INVALID_PARAMETER
);
2540 /* safely copy the window name */
2541 if (NULL
!= UnsafeWindowName
)
2543 Status
= IntSafeCopyUnicodeString(&WindowName
, UnsafeWindowName
);
2544 if (! NT_SUCCESS(Status
))
2546 if (! IS_ATOM(ClassName
.Buffer
))
2548 ExFreePoolWithTag(ClassName
.Buffer
, TAG_STRING
);
2550 SetLastNtError(Status
);
2556 RtlInitUnicodeString(&WindowName
, NULL
);
2559 pNewWindow
= co_IntCreateWindowEx( dwExStyle
,
2574 if (pNewWindow
) NewWindow
= UserHMGetHandle(pNewWindow
);
2576 if (WindowName
.Buffer
)
2578 ExFreePoolWithTag(WindowName
.Buffer
, TAG_STRING
);
2580 if (! IS_ATOM(ClassName
.Buffer
))
2582 ExFreePoolWithTag(ClassName
.Buffer
, TAG_STRING
);
2588 DPRINT("Leave NtUserCreateWindowEx, ret=%i\n",_ret_
);
2597 NtUserDeferWindowPos(HDWP WinPosInfo
,
2599 HWND WndInsertAfter
,
2612 BOOLEAN FASTCALL
co_UserDestroyWindow(PWINDOW_OBJECT Window
)
2618 ASSERT_REFS_CO(Window
); // FIXME: temp hack?
2620 hWnd
= Window
->hSelf
;
2624 if (!Wnd
) return TRUE
; // FIXME: Need to finish object rewrite or lock the thread when killing the window!
2626 DPRINT("co_UserDestroyWindow \n");
2628 /* Check for owner thread */
2629 if ( (Window
->pti
->pEThread
!= PsGetCurrentThread()) ||
2630 Wnd
->head
.pti
!= PsGetCurrentThreadWin32Thread() )
2632 SetLastWin32Error(ERROR_ACCESS_DENIED
);
2637 if (ISITHOOKED(WH_CBT
))
2639 if (co_HOOK_CallHooks(WH_CBT
, HCBT_DESTROYWND
, (WPARAM
) hWnd
, 0)) return FALSE
;
2642 /* Look whether the focus is within the tree of windows we will
2645 if (!co_WinPosShowWindow(Window
, SW_HIDE
))
2647 if (UserGetActiveWindow() == Window
->hSelf
)
2649 co_WinPosActivateOtherWindow(Window
);
2653 if (Window
->pti
->MessageQueue
->ActiveWindow
== Window
->hSelf
)
2654 Window
->pti
->MessageQueue
->ActiveWindow
= NULL
;
2655 if (Window
->pti
->MessageQueue
->FocusWindow
== Window
->hSelf
)
2656 Window
->pti
->MessageQueue
->FocusWindow
= NULL
;
2657 if (Window
->pti
->MessageQueue
->CaptureWindow
== Window
->hSelf
)
2658 Window
->pti
->MessageQueue
->CaptureWindow
= NULL
;
2660 IntDereferenceMessageQueue(Window
->pti
->MessageQueue
);
2662 IntEngWindowChanged(Window
, WOC_DELETE
);
2663 isChild
= (0 != (Wnd
->style
& WS_CHILD
));
2669 if (! USER_IsExitingThread(GetCurrentThreadId()))
2671 send_parent_notify(hwnd
, WM_DESTROY
);
2674 else if (NULL
!= GetWindow(Wnd
, GW_OWNER
))
2676 co_HOOK_CallHooks( WH_SHELL
, HSHELL_WINDOWDESTROYED
, (WPARAM
)hwnd
, 0L, TRUE
);
2677 /* FIXME: clean up palette - see "Internals" p.352 */
2681 if (!IntIsWindow(Window
->hSelf
))
2686 /* Recursively destroy owned windows */
2691 BOOL GotOne
= FALSE
;
2694 PWINDOW_OBJECT Child
, Desktop
;
2696 Desktop
= IntIsDesktopWindow(Window
) ? Window
:
2697 UserGetWindowObject(IntGetDesktopWindow());
2698 Children
= IntWinListChildren(Desktop
);
2702 for (ChildHandle
= Children
; *ChildHandle
; ++ChildHandle
)
2704 Child
= UserGetWindowObject(*ChildHandle
);
2707 if (Child
->hOwner
!= Window
->hSelf
)
2712 if (IntWndBelongsToThread(Child
, PsGetCurrentThreadWin32Thread()))
2714 USER_REFERENCE_ENTRY ChildRef
;
2715 UserRefObjectCo(Child
, &ChildRef
);//temp hack?
2716 co_UserDestroyWindow(Child
);
2717 UserDerefObjectCo(Child
);//temp hack?
2723 if (Child
->hOwner
!= NULL
)
2725 Child
->hOwner
= NULL
;
2726 Child
->Wnd
->spwndOwner
= NULL
;
2730 ExFreePool(Children
);
2739 if (!IntIsWindow(Window
->hSelf
))
2744 /* Destroy the window storage */
2745 co_UserFreeWindow(Window
, PsGetCurrentProcessWin32Process(), PsGetCurrentThreadWin32Thread(), TRUE
);
2755 NtUserDestroyWindow(HWND Wnd
)
2757 PWINDOW_OBJECT Window
;
2758 DECLARE_RETURN(BOOLEAN
);
2760 USER_REFERENCE_ENTRY Ref
;
2762 DPRINT("Enter NtUserDestroyWindow\n");
2763 UserEnterExclusive();
2765 if (!(Window
= UserGetWindowObject(Wnd
)))
2770 UserRefObjectCo(Window
, &Ref
);//faxme: dunno if win should be reffed during destroy..
2771 ret
= co_UserDestroyWindow(Window
);
2772 UserDerefObjectCo(Window
);//faxme: dunno if win should be reffed during destroy..
2777 DPRINT("Leave NtUserDestroyWindow, ret=%i\n",_ret_
);
2789 NtUserDrawMenuBarTemp(
2796 /* we'll use this function just for caching the menu bar */
2806 NtUserEndDeferWindowPosEx(DWORD Unknown0
,
2816 * FillWindow: Called from User; Dialog, Edit and ListBox procs during a WM_ERASEBKGND.
2822 NtUserFillWindow(HWND hWndPaint
,
2833 static HWND FASTCALL
2834 IntFindWindow(PWINDOW_OBJECT Parent
,
2835 PWINDOW_OBJECT ChildAfter
,
2837 PUNICODE_STRING WindowName
)
2839 BOOL CheckWindowName
;
2845 CheckWindowName
= WindowName
->Length
!= 0;
2847 if((List
= IntWinListChildren(Parent
)))
2852 /* skip handles before and including ChildAfter */
2853 while(*phWnd
&& (*(phWnd
++) != ChildAfter
->hSelf
))
2857 /* search children */
2860 PWINDOW_OBJECT Child
;
2861 if(!(Child
= UserGetWindowObject(*(phWnd
++))))
2866 /* Do not send WM_GETTEXT messages in the kernel mode version!
2867 The user mode version however calls GetWindowText() which will
2868 send WM_GETTEXT messages to windows belonging to its processes */
2869 if((!CheckWindowName
|| !RtlCompareUnicodeString(WindowName
, &(Child
->Wnd
->strName
), TRUE
)) &&
2870 (!ClassAtom
|| Child
->Wnd
->pcls
->atomClassName
== ClassAtom
))
2885 * Searches a window's children for a window with the specified
2888 * hwndParent = The window whose childs are to be searched.
2890 * HWND_MESSAGE = message-only windows
2892 * hwndChildAfter = Search starts after this child window.
2893 * NULL = start from beginning
2895 * ucClassName = Class name to search for
2896 * Reguired parameter.
2898 * ucWindowName = Window name
2899 * ->Buffer == NULL = don't care
2902 * The HWND of the window if it was found, otherwise NULL
2908 NtUserFindWindowEx(HWND hwndParent
,
2909 HWND hwndChildAfter
,
2910 PUNICODE_STRING ucClassName
,
2911 PUNICODE_STRING ucWindowName
,
2914 PWINDOW_OBJECT Parent
, ChildAfter
;
2915 UNICODE_STRING ClassName
= {0}, WindowName
= {0};
2916 HWND Desktop
, Ret
= NULL
;
2917 RTL_ATOM ClassAtom
= (RTL_ATOM
)0;
2918 DECLARE_RETURN(HWND
);
2920 DPRINT("Enter NtUserFindWindowEx\n");
2923 if (ucClassName
!= NULL
|| ucWindowName
!= NULL
)
2927 if (ucClassName
!= NULL
)
2929 ClassName
= ProbeForReadUnicodeString(ucClassName
);
2930 if (ClassName
.Length
!= 0)
2932 ProbeForRead(ClassName
.Buffer
,
2936 else if (!IS_ATOM(ClassName
.Buffer
))
2938 SetLastWin32Error(ERROR_INVALID_PARAMETER
);
2942 if (!IntGetAtomFromStringOrAtom(&ClassName
,
2949 if (ucWindowName
!= NULL
)
2951 WindowName
= ProbeForReadUnicodeString(ucWindowName
);
2952 if (WindowName
.Length
!= 0)
2954 ProbeForRead(WindowName
.Buffer
,
2960 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
2962 SetLastNtError(_SEH2_GetExceptionCode());
2963 _SEH2_YIELD(RETURN(NULL
));
2967 if (ucClassName
!= NULL
)
2969 if (ClassName
.Length
== 0 && ClassName
.Buffer
!= NULL
&&
2970 !IS_ATOM(ClassName
.Buffer
))
2972 SetLastWin32Error(ERROR_INVALID_PARAMETER
);
2975 else if (ClassAtom
== (RTL_ATOM
)0)
2977 /* LastError code was set by IntGetAtomFromStringOrAtom */
2983 Desktop
= IntGetCurrentThreadDesktopWindow();
2985 if(hwndParent
== NULL
)
2986 hwndParent
= Desktop
;
2987 else if(hwndParent
== HWND_MESSAGE
)
2989 hwndParent
= IntGetMessageWindow();
2992 if(!(Parent
= UserGetWindowObject(hwndParent
)))
2998 if(hwndChildAfter
&& !(ChildAfter
= UserGetWindowObject(hwndChildAfter
)))
3005 if(Parent
->hSelf
== Desktop
)
3008 PWINDOW_OBJECT TopLevelWindow
;
3009 BOOLEAN CheckWindowName
;
3010 BOOLEAN WindowMatches
;
3011 BOOLEAN ClassMatches
;
3013 /* windows searches through all top-level windows if the parent is the desktop
3016 if((List
= IntWinListChildren(Parent
)))
3022 /* skip handles before and including ChildAfter */
3023 while(*phWnd
&& (*(phWnd
++) != ChildAfter
->hSelf
))
3027 CheckWindowName
= WindowName
.Length
!= 0;
3029 /* search children */
3032 if(!(TopLevelWindow
= UserGetWindowObject(*(phWnd
++))))
3037 /* Do not send WM_GETTEXT messages in the kernel mode version!
3038 The user mode version however calls GetWindowText() which will
3039 send WM_GETTEXT messages to windows belonging to its processes */
3040 WindowMatches
= !CheckWindowName
|| !RtlCompareUnicodeString(
3041 &WindowName
, &TopLevelWindow
->Wnd
->strName
, TRUE
);
3042 ClassMatches
= (ClassAtom
== (RTL_ATOM
)0) ||
3043 ClassAtom
== TopLevelWindow
->Wnd
->pcls
->atomClassName
;
3045 if (WindowMatches
&& ClassMatches
)
3047 Ret
= TopLevelWindow
->hSelf
;
3051 if (IntFindWindow(TopLevelWindow
, NULL
, ClassAtom
, &WindowName
))
3053 /* window returns the handle of the top-level window, in case it found
3055 Ret
= TopLevelWindow
->hSelf
;
3064 Ret
= IntFindWindow(Parent
, ChildAfter
, ClassAtom
, &WindowName
);
3068 if(Ret
== NULL
&& hwndParent
== NULL
&& hwndChildAfter
== NULL
)
3070 /* FIXME - if both hwndParent and hwndChildAfter are NULL, we also should
3071 search the message-only windows. Should this also be done if
3072 Parent is the desktop window??? */
3073 PWINDOW_OBJECT MsgWindows
;
3075 if((MsgWindows
= UserGetWindowObject(IntGetMessageWindow())))
3077 Ret
= IntFindWindow(MsgWindows
, ChildAfter
, ClassAtom
, &WindowName
);
3082 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
3084 SetLastNtError(_SEH2_GetExceptionCode());
3092 DPRINT("Leave NtUserFindWindowEx, ret %i\n",_ret_
);
3102 NtUserFlashWindowEx(IN PFLASHWINFO pfwi
)
3113 PWINDOW_OBJECT FASTCALL
UserGetAncestor(PWINDOW_OBJECT Wnd
, UINT Type
)
3115 PWINDOW_OBJECT WndAncestor
, Parent
;
3117 if (Wnd
->hSelf
== IntGetDesktopWindow())
3126 WndAncestor
= Wnd
->spwndParent
;
3137 if(!(Parent
= WndAncestor
->spwndParent
))
3141 if(IntIsDesktopWindow(Parent
))
3146 WndAncestor
= Parent
;
3157 PWINDOW_OBJECT Parent
, Old
;
3160 Parent
= IntGetParent(WndAncestor
);
3168 // UserDereferenceObject(Parent);
3170 WndAncestor
= Parent
;
3188 NtUserGetAncestor(HWND hWnd
, UINT Type
)
3190 PWINDOW_OBJECT Window
, Ancestor
;
3191 DECLARE_RETURN(HWND
);
3193 DPRINT("Enter NtUserGetAncestor\n");
3194 UserEnterExclusive();
3196 if (!(Window
= UserGetWindowObject(hWnd
)))
3201 Ancestor
= UserGetAncestor(Window
, Type
);
3202 /* faxme: can UserGetAncestor ever return NULL for a valid window? */
3204 RETURN(Ancestor
? Ancestor
->hSelf
: NULL
);
3207 DPRINT("Leave NtUserGetAncestor, ret=%i\n",_ret_
);
3215 NtUserGetComboBoxInfo(
3220 DECLARE_RETURN(BOOL
);
3222 DPRINT("Enter NtUserGetComboBoxInfo\n");
3225 if (!(Wnd
= UserGetWindowObject(hWnd
)))
3234 sizeof(COMBOBOXINFO
),
3238 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)