Shell Functions


SetWindowSubclass Function

Installs or updates a window subclass callback.

Syntax

BOOL SetWindowSubclass(      
    HWND hWnd,     SUBCLASSPROC pfnSubclass,     UINT_PTR uIdSubclass,     DWORD_PTR dwRefData );

Parameters

hWnd
[in] The handle of the window being subclassed.
pfnSubclass
[in] A pointer to a window procedure. This pointer and the subclass ID uniquely identify this subclass callback. For the callback function prototype, see SUBCLASSPROC.
uIdSubclass
[in] The subclass ID. This ID together with the subclass procedure uniquely identify a subclass. To remove a subclass, pass the subclass procedure and this value to the RemoveWindowSubclass function. This value is passed to the subclass procedure in the uIdSubclass parameter.
dwRefData
[in] DWORD_PTR to reference data. The meaning of this value is determined by the calling application. This value is passed to the subclass procedure in the dwRefData parameter. A different dwRefData is associated with each combination of window handle, subclass procedure and uIdSubclass.

Return Value

TRUE if the subclass callback was successfully installed; otherwise, FALSE.

Remarks

Subclass callbacks are identified by the combination of the callback address and the caller-defined subclass ID. If the callback address and ID pair have not yet been installed, then this function installs the subclass. If the pair has already been installed, then this function just updates the reference data.

Each callback can store a single DWORD of reference data, which is passed to the callback function when it is called to filter messages. No reference counting is performed for the callback; it may repeatedly call SetWindowSubclass to alter the value of its reference data element.

Warning  You cannot use the subclassing helper functions to subclass a window across threads.

Function Information

Minimum DLL Versioncomctl32.dll version 5.8 or later
Custom ImplementationNo
Headercommctrl.h
Import librarycomctl32.lib
Minimum operating systems Windows XP

See Also

Tags :


Community Content

Leo Davidson
Subclass must be removed before the window is destroyed.

An important detail about this API, quoted from Raymond Chen's blog:


One gotcha that isn't explained clearly in the documentation is that you must remove your window subclass before the window being subclassed is destroyed. This is typically done either by removing the subclass once your temporary need has passed, or if you are installing a permanent subclass, by inserting a call to RemoveWindowSubclass inside the subclass procedure itself:

...
case WM_NCDESTROY:
RemoveWindowSubclass(hwnd, thisfunctionname, uIdSubclass);
return DefSubclassProc(...);


Original: http://blogs.msdn.com/oldnewthing/archive/2003/11/11/55653.aspx


Tags :

Page view tracker