vote up 1 vote down star

I'd like to obtain the same values via code. However I'd like to obtain the top-most or root windows in the hierarchy

I seem to have got the Root Parent with

HWND rootWinHandle = GetAncestor(activatedWinHandle, GA_PARENT);

However I can't get the owner window correctly. Tried

HWND rootOwnerWinHandle = GetAncestor(activatedWinHandle, GA_ROOTOWNER);

For a particular modeless dialog, Spy++ returns the Main Exe window whereas the above line returns the input i.e. activatedWinHandle. Am I looking at the wrong api ?
I'd like to obtain this without MFC if possible... coz nothing else in my project requires it.

flag

44% accept rate

3 Answers

vote up 1 vote down check

See the GW_OWNER flag for GetWindow.

The GetParent documentation states:

If the window is a child window, the return value is a handle to the parent window. If the window is a top-level window, the return value is a handle to the owner window.

link|flag
Yeah weird winapi. In the end, Parent => GetParent(hWnd) and Owner => GetWindow(hWnd, GW_OWNER) is what worked. GetAncestor with all its flags doesn't return the same values for some reason – Gishu Jun 16 at 12:08
vote up 0 vote down

Only bit of insight i can add it from Raymond Chen:

Remember that owner and parent are two different things.

Modal dialogs disable their OWNERs. All top-level windows have the desktop as their PARENT.

From: What's so special about the desktop window?

link|flag
vote up 1 vote down

Try GetParent(). I believe this will return the owner window of a window without the WS_CHILD style, and the parent window of a window with WS_CHILD.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.