Changes between Initial Version and Version 1 of Ticket #2585, comment 1
- Timestamp:
- 12/31/13 20:21:41 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2585, comment 1
initial v1 1 1 I had to fill in the missing words. 2 2 {{{ 3 ###Remarks###4 3 Use the <a href="_WinAPI_CallWindowProc.htm">_WinAPI_CallWindowProc()</a> function for window subclassing. Usually, all windows with the same class share one window procedure. 5 A subclass is a window or set of windows with the same class whose messages are intercepted and processed by another window procedure 6 or procedures) before being passed to the window procedure of the class. 4 A subclass is a window or set of windows with the same class whose messages are intercepted and processed by another window procedure (or procedures) before being passed to the window procedure of the class. 7 5 8 6 The <a href="_WinAPI_SetWindowLong.htm">_WinAPI_SetWindowLong()</a> function creates the subclass by changing the window procedure associated with a particular window, causing the system to call the new window procedure instead of the previous one. An application must pass any messages not processed by the new window procedure to the previous window procedure by calling <a href="_WinAPI_CallWindowProc.htm">_WinAPI_CallWindowProc()</a>. This allows the application to create a chain of window procedures.