CHAIN_MSG_MAP
CHAIN_MSG_MAP( theChainClass )
Parameters
theChainClass
[in] The name of the base class containing the message map.
Remarks
Defines an entry in a message map. CHAIN_MSG_MAP directs messages to a base class's default message map (declared with BEGIN_MSG_MAP). To direct messages to a base class's alternate message map (declared with ALT_MSG_MAP), use CHAIN_MSG_MAP_ALT.
For example:
class CMyClass : public CMyBaseClass, ...
{
public:
...
BEGIN_MSG_MAP(CMyClass)
MESSAGE_HANDLER(WM_PAINT, OnPaint)
// chain to default message map in CMyBaseClass
CHAIN_MSG_MAP(CMyBaseClass)
ALT_MSG_MAP(1)
// chain to default message map in CMyBaseClass
CHAIN_MSG_MAP(CMyBaseClass)
ALT_MSG_MAP(2)
MESSAGE_HANDLER(WM_CHAR, OnChar)
// chain to alternate message map in CMyBaseClass
CHAIN_MSG_MAP_ALT(CMyBaseClass, 1)
END_MSG_MAP()
...
};
This example illustrates the following:
If a window procedure is using
CMyClass
's default message map andOnPaint
does not handle a message, the message is directed toCMyBaseClass
's default message map for processing.If a window procedure is using the first alternate message map in
CMyClass
, all messages are directed toCMyBaseClass
's default message map.If a window procedure is using
CMyClass
's second alternate message map andOnChar
does not handle a message, the message is directed to the specified alternate message map inCMyBaseClass
.CMyBaseClass
must have declared this message map withALT_MSG_MAP(1)
.
Note Always begin a message map with BEGIN_MSG_MAP. You can then declare subsequent alternate message maps with ALT_MSG_MAP. The END_MSG_MAP macro marks the end of the message map. Every message map must have exactly one instance of BEGIN_MSG_MAP and END_MSG_MAP.
For more information about using message maps in ATL, see Message Maps in the article "ATL Window Classes."
ATL Macros and Global Functions
See Also
CHAIN_MSG_MAP_MEMBER, CHAIN_MSG_MAP_DYNAMIC, MESSAGE_HANDLER