Passing messages from subclass to original WndProc - c

I have been reading the MSDN documentation on subclassing and I have been successful in handling events in a subclass
My issue is with passing messages back to the original WndProc.
As an example, if I have a window, with a sub-classed groupbox control and a button as a child of that groupbox, I want to handle the button event in the original window procedure, not the subclassed groupbox procedure.
Essentially, I want an empty subclass procedure:
LRESULT FAR PASCAL SubClassFunc(HWND hwnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam)
{
return CallWindowProc(oldProc, hwnd, uMsg, wParam, lParam);
}
Where oldProc is:
FARPROC oldProc = (FARPROC)SetClassLong(group_box, GCL_WDPROC, (DWORD)SubCLassFunc);
And where the window and groupbox and button are:
HWND window = CreateWindowEx(
WS_EX_WINDOWEDGE,
appname,
TEXT("Subclass Test"),
WS_VISIBLE |WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
CW_USEDEFAULT,
300,
400,
NULL,
NULL,
hInstance,
0);
HWND group_box = CreateWindowEx(
0,
TEXT("BUTTON"),
TEXT("Group Box"),
WS_CHILD | WS_VISIBLE | BS_GROUPBOX,
8,
8,
275,
350,
window,
NULL,
hInstance,
0);
HWND push_button = CreateWindowEx(
0,
TEXT("BUTTON"),
TEXT("Push Button"),
WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON | BS_VCENTER,
50,
100,
100,
25,
group_box,
(HMENU)PUSH_BUTTON,
hInstance,
0);
I can handle the button events in the SubClassFunc, but what I want to do is pass them back to the window WndProc. It seems that CallWindowProc isn't doing this, or I may be totally wrong in how CallWindowProc works.

The button notifications are sent to the button's parent, which is the group box. Because you've subclassed the group box, your SubClassFunc receives these messages, which then passes them to the group box's original window procedure using CallWindowProc.
If you want the button notifications to go to the parent window (i.e, window in your code), you could either set the button's parent to window instead of group_box, or use PostMessage from within SubClassFunc to post the message (WM_COMMAND or WM_NOTIFY as appropriate) to window.
Also, I see that you're using SetClassLong to set the window procedure. What this does is replace the window procedure for the entire BUTTON class, but only for windows that are subsequently created. Any BUTTON windows created before calling SetClassLong will not be subclassed. You may want to consider using SetWindowLong instead, to subclass individual windows rather than the entire class.
Edit: The group box's original window procedure doesn't send WM_COMMAND messages to its parent. This is explained in Charles Petzold's Programming Windows book:
The group box, which has the BS_GROUPBOX style, is an oddity in the button class. It neither processes mouse or keyboard input, nor sends WM_COMMAND messages to its parent.
You should find that button notifications don't get through to window even if you don't subclass the group box.
I hope this helps!

I suspect if you remove the subclass all together the button events will still not reach the original window procedure as you expect.
Since you have an subclass procedure doing nothing more than calling CallWindowProc the window is effectively not subclasses.
My suggestion would be to use the Spy++ tool to see which window is getting the button event messages.
One of the more difficult aspects of Win32 programming is determining which window gets which message and Spy++ is invaluable when it comes to figuring out this information.

Related

winapi minimized window notification (orange flushy)

I'm using the Win32 API and I want to check if a minimized window is flashing, ie showing the window tab with orange, blinking color, through C code.
I checked the API and I only found FlashWindow/Ex, which is causing the flashing; however I want to test it against a specific window.
I also found SystemParametersInfo(SPI_GETFOREGROUNDLOCKTIMEOUT,..), which may be related, but also global, I suppose.
I'm using Windows 7
There is no Win32 API function to query if a given window is currently being flashed with FlashWindow/Ex().
However, SetWindowsHookEx() has a WH_SHELL hook, which reports HSHELL_REDRAW notifications when a window title is redrawn:
nCode [in]
Type: int
The hook code. If nCode is less than zero, the hook procedure must pass the message to the CallNextHookEx function without further processing and should return the value returned by CallNextHookEx. This parameter can be one of the following values.
...
HSHELL_REDRAW
6
The title of a window in the task bar has been redrawn.
wParam [in]
Type: WPARAM
This parameter depends on the value of the nCode parameter, as shown in the following table.
...
HSHELL_REDRAW
A handle to the redrawn window.
lParam [in]
Type: LPARAM
This parameter depends on the value of the nCode parameter, as shown in the following table.
...
HSHELL_REDRAW
The value is TRUE if the window is flashing, or FALSE otherwise.
So, you can use GetWindowThreadProcessId() to get the thread ID of the target window, and then pass that to the dwThreadId parameter of SetWindowsHookEx() to start monitoring all windows in the same thread as the target window, and then you can filter for HSHELL_REDRAW notifications to detect if the target window is flashing or not.

Unparented Window cant have HMENU id set?

I have a custom window class (that I created with RegisterClassEx()). If I create a window instance of this class and set its HMENU property the CreateWindowEx() function fails.
Why can I not set this kind of window's id/HMENU id?
// hwnd = NULL
hwnd = CreateWindowEx(0, WND_CLASS_NAME.c_str(), wndTitle.c_str(), wndFlags,
wndDimensions.left, wndDimensions.top, wndDimensions.right, wndDimensions.bottom,
NULL, (HMENU)50001, hinstance, NULL);
// hwnd is valid
hwnd = CreateWindowEx(0, WND_CLASS_NAME.c_str(), wndTitle.c_str(), wndFlags,
wndDimensions.left, wndDimensions.top, wndDimensions.right, wndDimensions.bottom,
NULL, 0, hinstance, NULL);
The whole purpose is to be able to call GetDlgCtrlId(hwnd);.
This cannot work. The CreateWindowEx function is a little bit confusing in that the interpretation of the parameters differs, depending on which type of window you are creating. You have to read the documentation carefully to avoid making erroneous assumptions.
There are two fundamental types of windows: overlapped/pop-up windows (I think there used to be a distinction back in 16-bit Windows, but that distinction is no longer relevant; these are practically identical) and child windows. The first type are the ones you intuitively think of, since they're the ones that look like windows. They're what an application uses for its main window, dialog boxes, floating tool windows, etc. The second type are a specific type of windows that can only be used as children of another window. Controls are child windows—things like buttons, static controls, listviews, etc. Child windows are hosted by a parent window (they always have a parent), which can either be another child window or an overlapped/pop-up window.
Only child windows have application-defined IDs. You specify this ID when calling the CreateWindowEx function with the WS_CHILD style flag (which requests the creation of a child window). When that flag is present, the hMenu parameter is not interpreted as a handle to a menu. Rather, it is interpreted as the child window's ID.†
When calling the CreateWindowEx function without the WS_CHILD style flag (which means you are passing either WS_OVERLAPPED or WS_POPUP, which we have already seen are essentially interchangeable), the hMenu parameter is interpreted as a handle to a menu. If it is a valid handle to a menu, then this menu is associated with the window. If it is NULL, then the window uses the class menu (the one specified when RegisterClassEx was called during creation of the window class).‡
The function's documentation tries to make this clear in the description of the hMenu parameter.
It says:
hMenu [in, optional]
Type: HMENU
A handle to a menu, or specifies a child-window identifier, depending on the window style. For an overlapped or pop-up window, hMenu identifies the menu to be used with the window; it can be NULL if the class menu is to be used. For a child window, hMenu specifies the child-window identifier, an integer value used by a dialog box control to notify its parent about events. The application determines the child-window identifier; it must be unique for all child windows with the same parent window.
The implication should be obvious. A window cannot have both a menu and an ID. It has either a menu (if it is an overlapped/pop-up window) or a child-window ID (if it is a child window). Child windows never have menus—this is technically impossible because they have IDs. So what you are trying to do is impossible: overlapped/pop-up windows cannot have an ID set.
You state in the question that your intent is to be able to call the GetDlgCtrlID function, but that function's documentation is pretty clear about the fact that it works only for child windows. For starters, the very name of the function implies that it works for controls (abbreviated to "ctrl"), which by definition must be child windows. Reading further (italicized annotations are mine):
GetDlgCtrlID accepts child window handles as well as handles of controls in dialog boxes. [Technically, this is an unnecessary distinction. As we have seen, controls in dialog boxes are child windows. But, presumably, the author was taking special care to be as clear as possible.] An application sets the identifier for a child window when it creates the window by assigning the identifier value to the hmenu parameter when calling the CreateWindow or CreateWindowEx function.
Although GetDlgCtrlID may return a value if hwndCtl is a handle to a top-level window, top-level windows [by this is meant either overlapped or pop-up windows] cannot have identifiers and such a return value is never valid.
Note in particular that final sentence.
Of course, there is some way to identify overlapped and pop-up windows: their handle. This is the value returned to you by the CreateWindowEx function (assuming it is successful), and you can save this handle as the window's ID. It is guaranteed to be unique system-wide (although it may be reused for another window after your window has been destroyed), and is the most reliable way of identifying a window.
If, for some reason, you are unable to save the window handle but still need to find a top-level window later, you can call the FindWindow function. This uses the window class name and the window caption to find a matching window. If it finds a match, it returns the window handle. (Note again the distinction between top-level and child windows. FindWindow does not work on child windows. If you want to search child windows, you must call FindWindowEx instead.)
† Note that, once a child window has been created, its ID can be set or retrieved by passing the GWL_ID index to the GetWindowLongPtr or SetWindowLongPtr functions, respectively. This index only has meaning for child windows, because no other type of window has an ID.
‡ Note that, once an overlapped/pop-up window has been created, its menu handle can be retrieved with GetMenu or set with SetMenu. Again, the documentation for those functions is forced to emphasize the fact that child windows cannot have menus. GetMenu fails when called on a child window, returning an "undefined" result; SetMenu similarly fails, setting an error code.

How to handle control's notifications when subclassing a control? Such as EN_CHANGE?

A notification is sent by a control to its parent. When I subclass a control using SetWindowSubclass, how can I handle the notifications? I don't want to handle them in the parent's window proc. Is there some thing I can do in subclass proc?
If I subclass a Edit control, how to handle EN_CHANGE notification in the subclass?
Update
This is the subclass proc:
LRESULT CALLBACK MyEditWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
{
switch (uMsg)
{
default:
return DefSubclassProc(hWnd, uMsg, wParam, lParam);
}
}
I use
SetWindowSubclass(GetDlgItem(hWnd, ID_MYEDIT), MyEditWindowProc, 0, 0);
to subclass the Edit control.
But which message should I handle? Certainly not WM_NOTIFY because it's handled by the parent.
If I subclass a Edit control, how to handle EN_CHANGE notification in the subclass?
Short answer: you can't. If you subclass an edit, you only get to see the messages sent to it; you don't get to listen to or intercept the messages already sent by it (although you can add additional outgoing messages).
If you do need to do this, however, an alternative technique might be to create an intermediate window that wraps the edit, so that the original parent dialog has your wrapper as the child, and your wrapper has the edit as the child. Now your wrapper is positioned to intercept and filter messages going in either direction.
It will have to take care to manually forward all relevant messages, and handle resizing and other housekeeping issues; you get a bunch of that 'for free' with subclassing, but have to deal with it explicitly when wrapping. Also, since mouse/keyboard input will still go to the inner control; if you need to listen in on that, then subclassing will be necessary in addition to wrapping.
As far as I know, there is no straightforward solution to this using just the Win32 API. Subclassing lets you process messages sent to a control, not sent by the control. Win32 notifications are sent by a control directly to the parent and I don't think you can change this behaviour.
MFC does something similar to what you want through a feature called message reflection -- the message is still sent to the parent window, but the parent looks for "reflection" handlers in the child window and manually calls these handlers.
You can write something similar to MFC reflection yourself, but it's going to take some effort, so if there's an easier alternative, you should go with that.
EN_CHANGE and the like are always sent to the parent window. You can't handle them in the sub-classed control because they aren't sent to the control, they're sent to the parent.
If you're looking for a way to do a self-contained sub-class of an edit control without having to add code to the parent's window procedure, and you want to handle those notification messages, the only way would be to sub-class the parent window as well.

Custom controls and windows messages

I made a custom Splitter control in pure Windows API. It's made of 4 controls: the main container, the splitter and the 2 panes.
Now I needed to hook into the windows procedure in order to find out when one of its child controls was moving or resizing, so I used SetWindowsHookEx. I get the WM_SIZE messages in my hook procedure just fine, but no WM_MOVE messages are ever caught from my Splitter's child windows.
I tried adding a child window to a Groupbox (which I know isn't the way they're supposed to be used) just to see if the WM_MOVE messages were caught by the hook procedure, and they were.
So what am I missing here? What do I need to add to my Splitter window procedure so those WM_MOVEs get sent? Or was my error somewhere else?
PS: SetWindowPos does work on those child windows, it's just not catching WM_MOVE.
EDIT: As requested, here is the full code of the Splitter window class: http://pastebin.com/Lgvb0Vfv
Here is the part of the code that matters:
LRESULT WINAPI AnchorProc(int nCode, WPARAM wParam, LPARAM lParam) {
CWPRETSTRUCT* theMessage = (CWPRETSTRUCT*)lParam;
if (theMessage->message == WM_MOVE) printf ("!");
}
Sometime after the main window's WM_CREATE:
SetWindowsHookEx(WH_CALLWNDPROCRET,AnchorProc,NULL,GetCurrentThreadId());
// groupbox
HWND gb = CreateWindowEx(0,"button",NULL,BS_GROUPBOX|WS_CHILD,0,0,200,200,hwndMain,0,hInst,NULL);
HWND but = CreateWindowEx(0,"button",NULL,BS_PUSHBUTTON|WS_CHILD,0,0,40,40,gb,0,hInst,NULL);
// custom control
HWND split = CreateWindowEx(0,"FSplitterClass",NULL,WS_CHILD,200,0,200,200,hwndMain,0,hInst,NULL);
HWND pane1 = (HWND)SendMessage(split,WM_SPGETPANE,0,0);
HWND but1 = CreateWindowEx(0,"button",NULL,BS_PUSHBUTTON|WS_CHILD,0,0,40,40,pane1,0,hInst,NULL);
SetWindowPos(but, NULL, 1,1,0,0,SWP_NOSIZE|SWP_NOZORDER); // triggers WM_MOVE
SetWindowPos(but1, NULL, 1,1,0,0,SWP_NOSIZE|SWP_NOZORDER); // doesn't
A windows hook is overkill here. Subclassing is much more efficient.
WM_MOVE is generated only if the window procedure passes the WM_WINDOWPOSCHANGED message to DefWindowProc. If you cannot guarantee that, then you are not guaranteed a WM_MOVE message. Listen for WM_WINDOWPOSCHANGED.

Using Windows Hooks to intercept mouse click on my application c++

In my C++ MFC application I have an ActiveX control on a form. At some point I create and show a new dialog. I don't want the user to be able to click the ActiveX control while this second dialog is up so I tried creating it as a child dialog. However the ActiveX control always appears above the child dialog in Z order. I have tried sending message on the create to change the Z order but nothing worked.
I've tried using Windows Hooks to intercept the mouse click using the following code:
GetWindowsHookEx(WH_MOUSE_LL, (HOOKPROC)CDWFDLG::ClickProc, GetModuleHandle(NULL), 0)
LRESULT CALLBACK CDWFDLG::ClickProc(int ncode, WPARAM wparam, LPARAM lparam)
{
if(wparam == WM_LBUTTONDOWN)
{
Beep(110, 30);
return TRUE;
}
return CallNextHookEx(0, ncode, wparam, lparam);
}
This blocks all left mouse clicks which is what I want. However it does this on everything, not just on my application. I've tried setting the thread Id using
GetCurrentThreadId()
and
GetWindowThreadProcessId(this->m_hWnd, &threadId )
However neither of these worked. What should I use to just get the hook to run on my application? Once this is working I was planning on using the coordinates of the click to check whether is was on the new dialog and handle it from there.
Thanks
GetWindowsHookEx(WH_MOUSE_LL, (HOOKPROC)CDWFDLG::ClickProc, GetModuleHandle(NULL), 0)
Means you are hooking globally, all mouse clicks performed.
What you want is to hook WH_MOUSE, with the option GetCurrentThreadId() instead of 0, this will yield the results you want.
Although I couldn't fix the problem using Window Hooks, I think I've fixed it using the dialog properties. I've set the parent dialog's Control Parent to True and left everything else in the child dialog's properties to default (Control is false and and Style is Popup etc).
Now when I call the dialog through DoModal() it has focus and doesn't allow clicks on the ActiveX control.
Thanks

Resources