Is there a list any where of C++ Events/Notifications & Default handling method list.
For example, it would be useful to know that by default, the HDN_DIVIDERDBLCLICK notification is normally handled by the CWnd::OnLButtonDblClk method.
This would make it easier to find the correct method when wanting to call it when you write your own handler for the notification.
I currently cant find any simple way of finding this information.
Thanks.
This page at MSDN lists the WM_XXX messages and the signatures of the corresponding handler methods.
For notification messages that are emitted by controls, you’ll want to look on the documentation page for the control. So, for example, the documentation for HDN_DIVIDERDBLCLICK is on the reference page for CHeaderCtrl (also see this page which briefly states that they are handled by the OnChildNotify handler function).