Changes between Initial Version and Version 1 of Ticket #2585, comment 1


Ignore:
Timestamp:
12/31/13 20:21:41 (11 years ago)
Author:
guinness
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2585, comment 1

    initial v1  
    11I had to fill in the missing words.
    22{{{
    3 ###Remarks###
    43Use 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.
     4A 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.
    75
    86The <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.