From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- public/sdk/inc/mfc30/afxmsg_.h | 568 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 568 insertions(+) create mode 100644 public/sdk/inc/mfc30/afxmsg_.h (limited to 'public/sdk/inc/mfc30/afxmsg_.h') diff --git a/public/sdk/inc/mfc30/afxmsg_.h b/public/sdk/inc/mfc30/afxmsg_.h new file mode 100644 index 000000000..c32e61b16 --- /dev/null +++ b/public/sdk/inc/mfc30/afxmsg_.h @@ -0,0 +1,568 @@ +// Microsoft Foundation Classes C++ library. +// Copyright (C) 1992 Microsoft Corporation, +// All rights reserved. + +// This source code is only intended as a supplement to the +// Microsoft Foundation Classes Reference and Microsoft +// QuickHelp and/or WinHelp documentation provided with the library. +// See these sources for detailed information regarding the +// Microsoft Foundation Classes product. + +// Do not include this file directly (included by AFXWIN.H) + +///////////////////////////////////////////////////////////////////////////// + +// Entries in a message map (a 'AFX_MSGMAP_ENTRY') table can be of 9 formats +// +// 1) control notification message (i.e. in response to WM_COMMAND) +// WM_COMMAND, nNotifyCode, nControlID, nControlID, signature type, parameterless member function +// (eg: WM_COMMAND, LBN_SELCHANGE, IDC_LISTBOX, AfxSig_vv, ... ) +// 2) control notification message range (i.e. in response to WM_COMMAND) +// WM_COMMAND, nNotifyCode, nControlIDFirst, nControlIDLast, signature type, parameterless member function +// (eg: WM_COMMAND, LBN_SELCHANGE, IDC_LISTBOX1, IDC_LISTBOX5, AfxSig_vw, ... ) +// 3) WM_NOTIFY notification +// WM_NOTIFY, nNotifyCode, nControlID, nControlID, signature type, ...) +// 3) Update Command UI +// -1, 0, nControlID, 0, signature Unknown, parameterless member function +// 4) Update Command UI Range +// -1, 0, nControlIDFirst, nControlIDLast, signature Unknown, parameterless member function +// 5) menu/accelerator notification message (i.e. special case of first format) +// WM_COMMAND, 0, nID, 0, signature type, parameterless member function +// (eg: WM_COMMAND, 0, IDM_FILESAVE, 0, AfxSig_vv, ... ) +// 6) menu/accelerator notification message range +// WM_COMMAND, 0, nIDFirst, nIDLast, signature type, parameterless member function +// (eg: WM_COMMAND, 0, IDM_FILE_MRU1, IDM_FILE_MRU4, AfxSig_vw, ... ) +// 7) constant windows message +// nMessage, 0, 0, 0, signature type, member function +// (eg: WM_PAINT, 0, ...) +// 8) variable windows message (using RegisterWindowMessage) +// 0xC000, 0, 0, 0, &nMessage, special member function +// +// The end of the message map is marked with a special value +// 0, 0, AfxSig_end, 0 +///////////////////////////////////////////////////////////////////////////// + +enum AfxSig +{ + AfxSig_end = 0, // [marks end of message map] + + AfxSig_bD, // BOOL (CDC*) + AfxSig_bb, // BOOL (BOOL) + AfxSig_bWww, // BOOL (CWnd*, UINT, UINT) + AfxSig_hDWw, // HBRUSH (CDC*, CWnd*, UINT) + AfxSig_iwWw, // int (UINT, CWnd*, UINT) + AfxSig_iWww, // int (CWnd*, UINT, UINT) + AfxSig_is, // int (LPTSTR) + AfxSig_lwl, // LRESULT (WPARAM, LPARAM) + AfxSig_lwwM, // LRESULT (UINT, UINT, CMenu*) + AfxSig_vv, // void (void) + + AfxSig_vw, // void (UINT) + AfxSig_vww, // void (UINT, UINT) + AfxSig_vvii, // void (int, int) // wParam is ignored + AfxSig_vwww, // void (UINT, UINT, UINT) + AfxSig_vwii, // void (UINT, int, int) + AfxSig_vwl, // void (UINT, LPARAM) + AfxSig_vbWW, // void (BOOL, CWnd*, CWnd*) + AfxSig_vD, // void (CDC*) + AfxSig_vM, // void (CMenu*) + AfxSig_vMwb, // void (CMenu*, UINT, BOOL) + + AfxSig_vW, // void (CWnd*) + AfxSig_vWww, // void (CWnd*, UINT, UINT) + AfxSig_vWh, // void (CWnd*, HANDLE) + AfxSig_vwW, // void (UINT, CWnd*) + AfxSig_vwWb, // void (UINT, CWnd*, BOOL) + AfxSig_vwwW, // void (UINT, UINT, CWnd*) + AfxSig_vs, // void (LPTSTR) + AfxSig_vOWNER, // void (int, LPTSTR), force return TRUE + AfxSig_iis, // int (int, LPTSTR) + AfxSig_wp, // UINT (CPoint) + AfxSig_wv, // UINT (void) + AfxSig_vPOS, // void (WINDOWPOS*) + AfxSig_vCALC, // void (NCCALCSIZE_PARAMS*) + AfxSig_vNMHDRpl, // void (NMHDR*, LRESULT*) + AfxSig_vwNMHDRpl, // void (UINT, NMHDR*, LRESULT*) + AfxSig_bwNMHDRpl, // BOOL (UINT, NMHDR*, LRESULT*) + + // signatures specific to CCmdTarget + AfxSig_cmdui, // void (CCmdUI*) + AfxSig_cmduiw, // void (CCmdUI*, UINT) + AfxSig_vpv, // void (void*) + AfxSig_bpv, // BOOL (void*) + + // Other aliases (based on implementation) + AfxSig_vwwh, // void (UINT, UINT, HANDLE) + AfxSig_vwp, // void (UINT, CPoint) + AfxSig_bw = AfxSig_bb, // BOOL (UINT) + AfxSig_bh = AfxSig_bb, // BOOL (HANDLE) + AfxSig_iw = AfxSig_bb, // int (UINT) + AfxSig_ww = AfxSig_bb, // UINT (UINT) + AfxSig_bv = AfxSig_wv, // BOOL (void) + AfxSig_hv = AfxSig_wv, // HANDLE (void) + AfxSig_vb = AfxSig_vw, // void (BOOL) + AfxSig_vbh = AfxSig_vww, // void (BOOL, HANDLE) + AfxSig_vbw = AfxSig_vww, // void (BOOL, UINT) + AfxSig_vhh = AfxSig_vww, // void (HANDLE, HANDLE) + AfxSig_vh = AfxSig_vw, // void (HANDLE) +}; + +///////////////////////////////////////////////////////////////////////////// +// Command notifications for CCmdTarget notifications + +#define CN_COMMAND 0 // void () +#define CN_UPDATE_COMMAND_UI ((UINT)(-1)) // void (CCmdUI*) +// > 0 are control notifications + +#define ON_COMMAND(id, memberFxn) \ + { WM_COMMAND, CN_COMMAND, (WORD)id, (WORD)id, AfxSig_vv, (AFX_PMSG)memberFxn }, + // ON_COMMAND(id, OnFoo) is the same as + // ON_CONTROL(0, id, OnFoo) or ON_BN_CLICKED(0, id, OnFoo) + +#define ON_COMMAND_RANGE(id, idLast, memberFxn) \ + { WM_COMMAND, CN_COMMAND, (WORD)id, (WORD)idLast, AfxSig_vw, \ + (AFX_PMSG)(void (AFX_MSG_CALL CCmdTarget::*)(UINT))memberFxn }, + // ON_COMMAND_RANGE(id, idLast, OnFoo) is the same as + // ON_CONTROL_RANGE(0, id, idLast, OnFoo) + +#define ON_COMMAND_EX(id, memberFxn) \ + { WM_COMMAND, CN_COMMAND, (WORD)id, (WORD)id, AfxSig_bw, \ + (AFX_PMSG)(BOOL (AFX_MSG_CALL CCmdTarget::*)(UINT))memberFxn }, + +#define ON_COMMAND_EX_RANGE(id, idLast, memberFxn) \ + { WM_COMMAND, CN_COMMAND, (WORD)id, (WORD)idLast, AfxSig_bw, \ + (AFX_PMSG)(BOOL (AFX_MSG_CALL CCmdTarget::*)(UINT))memberFxn }, + +// update ui's are listed as WM_COMMAND's so they get routed like commands +#define ON_UPDATE_COMMAND_UI(id, memberFxn) \ + { WM_COMMAND, CN_UPDATE_COMMAND_UI, (WORD)id, (WORD)id, AfxSig_cmdui, \ + (AFX_PMSG)(void (AFX_MSG_CALL CCmdTarget::*)(CCmdUI*))memberFxn }, + +#define ON_UPDATE_COMMAND_UI_RANGE(id, idLast, memberFxn) \ + { WM_COMMAND, CN_UPDATE_COMMAND_UI, (WORD)id, (WORD)idLast, AfxSig_cmdui, \ + (AFX_PMSG)(void (AFX_MSG_CALL CCmdTarget::*)(CCmdUI*))memberFxn }, + +#define ON_NOTIFY(wNotifyCode, id, memberFxn) \ + { WM_NOTIFY, (WORD)(int)wNotifyCode, (WORD)id, (WORD)id, AfxSig_vNMHDRpl, \ + (AFX_PMSG)(void (AFX_MSG_CALL CCmdTarget::*)(NMHDR*, LRESULT*))memberFxn }, + +#define ON_NOTIFY_RANGE(wNotifyCode, id, idLast, memberFxn) \ + { WM_NOTIFY, (WORD)(int)wNotifyCode, (WORD)id, (WORD)idLast, AfxSig_vwNMHDRpl, \ + (AFX_PMSG)(void (AFX_MSG_CALL CCmdTarget::*)(UINT, NMHDR*, LRESULT*))memberFxn }, + +#define ON_NOTIFY_EX(wNotifyCode, id, memberFxn) \ + { WM_NOTIFY, (WORD)(int)wNotifyCode, (WORD)id, (WORD)id, AfxSig_bwNMHDRpl, \ + (AFX_PMSG)(BOOL (AFX_MSG_CALL CCmdTarget::*)(UINT, NMHDR*, LRESULT*))memberFxn }, + +#define ON_NOTIFY_EX_RANGE(wNotifyCode, id, idLast, memberFxn) \ + { WM_NOTIFY, (WORD)(int)wNotifyCode, (WORD)id, (WORD)idLast, AfxSig_bwNMHDRpl, \ + (AFX_PMSG)(BOOL (AFX_MSG_CALL CCmdTarget::*)(UINT, NMHDR*, LRESULT*))memberFxn }, + +// for general controls +#define ON_CONTROL(wNotifyCode, id, memberFxn) \ + { WM_COMMAND, (WORD)wNotifyCode, (WORD)id, (WORD)id, AfxSig_vv, \ + (AFX_PMSG)memberFxn }, + +#define ON_CONTROL_RANGE(wNotifyCode, id, idLast, memberFxn) \ + { WM_COMMAND, (WORD)wNotifyCode, (WORD)id, (WORD)idLast, AfxSig_vw, \ + (AFX_PMSG)(void (AFX_MSG_CALL CCmdTarget::*)(UINT))memberFxn }, + +///////////////////////////////////////////////////////////////////////////// +// Message map tables for Windows messages + +#define ON_WM_CREATE() \ + { WM_CREATE, 0, 0, 0, AfxSig_is, \ + (AFX_PMSG)(AFX_PMSGW)(int (AFX_MSG_CALL CWnd::*)(LPCREATESTRUCT))OnCreate }, +#define ON_WM_DESTROY() \ + { WM_DESTROY, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnDestroy }, +#define ON_WM_MOVE() \ + { WM_MOVE, 0, 0, 0, AfxSig_vvii, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(int, int))OnMove }, +#define ON_WM_SIZE() \ + { WM_SIZE, 0, 0, 0, AfxSig_vwii, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, int, int))OnSize }, +#define ON_WM_ACTIVATE() \ + { WM_ACTIVATE, 0, 0, 0, AfxSig_vwWb, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CWnd*, BOOL))OnActivate }, +#define ON_WM_SETFOCUS() \ + { WM_SETFOCUS, 0, 0, 0, AfxSig_vW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*))OnSetFocus }, +#define ON_WM_KILLFOCUS() \ + { WM_KILLFOCUS, 0, 0, 0, AfxSig_vW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*))OnKillFocus }, +#define ON_WM_ENABLE() \ + { WM_ENABLE, 0, 0, 0, AfxSig_vb, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL))OnEnable }, +#define ON_WM_PAINT() \ + { WM_PAINT, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnPaint }, +#define ON_WM_CLOSE() \ + { WM_CLOSE, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnClose }, +#define ON_WM_QUERYENDSESSION() \ + { WM_QUERYENDSESSION, 0, 0, 0, AfxSig_bv, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(void))OnQueryEndSession }, +#define ON_WM_QUERYOPEN() \ + { WM_QUERYOPEN, 0, 0, 0, AfxSig_bv, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(void))OnQueryOpen }, +#define ON_WM_ERASEBKGND() \ + { WM_ERASEBKGND, 0, 0, 0, AfxSig_bD, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(CDC*))OnEraseBkgnd }, +#define ON_WM_SYSCOLORCHANGE() \ + { WM_SYSCOLORCHANGE, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnSysColorChange }, +#define ON_WM_ENDSESSION() \ + { WM_ENDSESSION, 0, 0, 0, AfxSig_vb, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL))OnEndSession }, +#define ON_WM_SHOWWINDOW() \ + { WM_SHOWWINDOW, 0, 0, 0, AfxSig_vbw, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL, UINT))OnShowWindow }, +#define ON_WM_CTLCOLOR() \ + { WM_CTLCOLOR, 0, 0, 0, AfxSig_hDWw, \ + (AFX_PMSG)(AFX_PMSGW)(HBRUSH (AFX_MSG_CALL CWnd::*)(CDC*, CWnd*, UINT))OnCtlColor }, +#define ON_WM_WININICHANGE() \ + { WM_WININICHANGE, 0, 0, 0, AfxSig_vs, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(LPCTSTR))OnWinIniChange }, +#define ON_WM_DEVMODECHANGE() \ + { WM_DEVMODECHANGE, 0, 0, 0, AfxSig_vs, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(LPTSTR))OnDevModeChange }, +#define ON_WM_ACTIVATEAPP() \ + { WM_ACTIVATEAPP, 0, 0, 0, AfxSig_vbh, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL, HTASK))OnActivateApp }, +#define ON_WM_FONTCHANGE() \ + { WM_FONTCHANGE, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnFontChange }, +#define ON_WM_TIMECHANGE() \ + { WM_TIMECHANGE, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnTimeChange }, +#define ON_WM_CANCELMODE() \ + { WM_CANCELMODE, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnCancelMode }, +#define ON_WM_SETCURSOR() \ + { WM_SETCURSOR, 0, 0, 0, AfxSig_bWww, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(CWnd*, UINT, UINT))OnSetCursor }, +#define ON_WM_MOUSEACTIVATE() \ + { WM_MOUSEACTIVATE, 0, 0, 0, AfxSig_iWww, \ + (AFX_PMSG)(AFX_PMSGW)(int (AFX_MSG_CALL CWnd::*)(CWnd*, UINT, UINT))OnMouseActivate }, +#define ON_WM_CHILDACTIVATE() \ + { WM_CHILDACTIVATE, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnChildActivate }, +#define ON_WM_GETMINMAXINFO() \ + { WM_GETMINMAXINFO, 0, 0, 0, AfxSig_vs, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(MINMAXINFO*))OnGetMinMaxInfo }, +#define ON_WM_ICONERASEBKGND() \ + { WM_ICONERASEBKGND, 0, 0, 0, AfxSig_vD, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CDC*))OnIconEraseBkgnd }, +#define ON_WM_SPOOLERSTATUS() \ + { WM_SPOOLERSTATUS, 0, 0, 0, AfxSig_vww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT))OnSpoolerStatus }, +#define ON_WM_DRAWITEM() \ + { WM_DRAWITEM, 0, 0, 0, AfxSig_vOWNER, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(int, LPDRAWITEMSTRUCT))OnDrawItem }, +#define ON_WM_MEASUREITEM() \ + { WM_MEASUREITEM, 0, 0, 0, AfxSig_vOWNER, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(int, LPMEASUREITEMSTRUCT))OnMeasureItem }, +#define ON_WM_DELETEITEM() \ + { WM_DELETEITEM, 0, 0, 0, AfxSig_vOWNER, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(int, LPDELETEITEMSTRUCT))OnDeleteItem }, +#define ON_WM_CHARTOITEM() \ + { WM_CHARTOITEM, 0, 0, 0, AfxSig_iwWw, \ + (AFX_PMSG)(AFX_PMSGW)(int (AFX_MSG_CALL CWnd::*)(UINT, CListBox*, UINT))OnCharToItem }, +#define ON_WM_VKEYTOITEM() \ + { WM_VKEYTOITEM, 0, 0, 0, AfxSig_iwWw, \ + (AFX_PMSG)(AFX_PMSGW)(int (AFX_MSG_CALL CWnd::*)(UINT, CListBox*, UINT))OnVKeyToItem }, +#define ON_WM_QUERYDRAGICON() \ + { WM_QUERYDRAGICON, 0, 0, 0, AfxSig_hv, \ + (AFX_PMSG)(AFX_PMSGW)(HCURSOR (AFX_MSG_CALL CWnd::*)())OnQueryDragIcon }, +#define ON_WM_COMPAREITEM() \ + { WM_COMPAREITEM, 0, 0, 0, AfxSig_iis, \ + (AFX_PMSG)(AFX_PMSGW)(int (AFX_MSG_CALL CWnd::*)(int, LPCOMPAREITEMSTRUCT))OnCompareItem }, +#define ON_WM_COMPACTING() \ + { WM_COMPACTING, 0, 0, 0, AfxSig_vw, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT))OnCompacting }, +#define ON_WM_NCCREATE() \ + { WM_NCCREATE, 0, 0, 0, AfxSig_is, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(LPCREATESTRUCT))OnNcCreate }, +#define ON_WM_NCDESTROY() \ + { WM_NCDESTROY, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnNcDestroy }, +#define ON_WM_NCCALCSIZE() \ + { WM_NCCALCSIZE, 0, 0, 0, AfxSig_vCALC, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL, NCCALCSIZE_PARAMS*))OnNcCalcSize }, +#define ON_WM_NCHITTEST() \ + { WM_NCHITTEST, 0, 0, 0, AfxSig_wp, \ + (AFX_PMSG)(AFX_PMSGW)(UINT (AFX_MSG_CALL CWnd::*)(CPoint))OnNcHitTest }, +#define ON_WM_NCPAINT() \ + { WM_NCPAINT, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnNcPaint }, +#define ON_WM_NCACTIVATE() \ + { WM_NCACTIVATE, 0, 0, 0, AfxSig_bb, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(BOOL))OnNcActivate }, +#define ON_WM_GETDLGCODE() \ + { WM_GETDLGCODE, 0, 0, 0, AfxSig_wv, \ + (AFX_PMSG)(AFX_PMSGW)(UINT (AFX_MSG_CALL CWnd::*)(void))OnGetDlgCode }, +#define ON_WM_NCMOUSEMOVE() \ + { WM_NCMOUSEMOVE, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcMouseMove }, +#define ON_WM_NCLBUTTONDOWN() \ + { WM_NCLBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcLButtonDown }, +#define ON_WM_NCLBUTTONUP() \ + { WM_NCLBUTTONUP, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcLButtonUp }, +#define ON_WM_NCLBUTTONDBLCLK() \ + { WM_NCLBUTTONDBLCLK, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcLButtonDblClk }, +#define ON_WM_NCRBUTTONDOWN() \ + { WM_NCRBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcRButtonDown }, +#define ON_WM_NCRBUTTONUP() \ + { WM_NCRBUTTONUP, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcRButtonUp }, +#define ON_WM_NCRBUTTONDBLCLK() \ + { WM_NCRBUTTONDBLCLK, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcRButtonDblClk }, +#define ON_WM_NCMBUTTONDOWN() \ + { WM_NCMBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcMButtonDown }, +#define ON_WM_NCMBUTTONUP() \ + { WM_NCMBUTTONUP, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcMButtonUp }, +#define ON_WM_NCMBUTTONDBLCLK() \ + { WM_NCMBUTTONDBLCLK, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnNcMButtonDblClk }, +#define ON_WM_KEYDOWN() \ + { WM_KEYDOWN, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnKeyDown }, +#define ON_WM_KEYUP() \ + { WM_KEYUP, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnKeyUp }, +#define ON_WM_CHAR() \ + { WM_CHAR, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnChar }, +#define ON_WM_DEADCHAR() \ + { WM_DEADCHAR, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnDeadChar }, +#define ON_WM_SYSKEYDOWN() \ + { WM_SYSKEYDOWN, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnSysKeyDown }, +#define ON_WM_SYSKEYUP() \ + { WM_SYSKEYUP, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnSysKeyUp }, +#define ON_WM_SYSCHAR() \ + { WM_SYSCHAR, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnSysChar }, +#define ON_WM_SYSDEADCHAR() \ + { WM_SYSDEADCHAR, 0, 0, 0, AfxSig_vwww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, UINT))OnSysDeadChar }, +#define ON_WM_SYSCOMMAND() \ + { WM_SYSCOMMAND, 0, 0, 0, AfxSig_vwl, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, LPARAM))OnSysCommand }, +#define ON_WM_TIMER() \ + { WM_TIMER, 0, 0, 0, AfxSig_vw, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT))OnTimer }, +#define ON_WM_HSCROLL() \ + { WM_HSCROLL, 0, 0, 0, AfxSig_vwwW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, CScrollBar*))OnHScroll }, +#define ON_WM_VSCROLL() \ + { WM_VSCROLL, 0, 0, 0, AfxSig_vwwW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, CScrollBar*))OnVScroll }, +#define ON_WM_INITMENU() \ + { WM_INITMENU, 0, 0, 0, AfxSig_vM, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CMenu*))OnInitMenu }, +#define ON_WM_INITMENUPOPUP() \ + { WM_INITMENUPOPUP, 0, 0, 0, AfxSig_vMwb, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CMenu*, UINT, BOOL))OnInitMenuPopup }, +#define ON_WM_MENUSELECT() \ + { WM_MENUSELECT, 0, 0, 0, AfxSig_vwwh, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, UINT, HMENU))OnMenuSelect }, +#define ON_WM_MENUCHAR() \ + { WM_MENUCHAR, 0, 0, 0, AfxSig_lwwM, \ + (AFX_PMSG)(AFX_PMSGW)(LRESULT (AFX_MSG_CALL CWnd::*)(UINT, UINT, CMenu*))OnMenuChar }, +#define ON_WM_ENTERIDLE() \ + { WM_ENTERIDLE, 0, 0, 0, AfxSig_vwW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CWnd*))OnEnterIdle }, +#define ON_WM_MOUSEMOVE() \ + { WM_MOUSEMOVE, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnMouseMove }, +#define ON_WM_LBUTTONDOWN() \ + { WM_LBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnLButtonDown }, +#define ON_WM_LBUTTONUP() \ + { WM_LBUTTONUP, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnLButtonUp }, +#define ON_WM_LBUTTONDBLCLK() \ + { WM_LBUTTONDBLCLK, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnLButtonDblClk }, +#define ON_WM_RBUTTONDOWN() \ + { WM_RBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnRButtonDown }, +#define ON_WM_RBUTTONUP() \ + { WM_RBUTTONUP, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnRButtonUp }, +#define ON_WM_RBUTTONDBLCLK() \ + { WM_RBUTTONDBLCLK, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnRButtonDblClk }, +#define ON_WM_MBUTTONDOWN() \ + { WM_MBUTTONDOWN, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnMButtonDown }, +#define ON_WM_MBUTTONUP() \ + { WM_MBUTTONUP, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnMButtonUp }, +#define ON_WM_MBUTTONDBLCLK() \ + { WM_MBUTTONDBLCLK, 0, 0, 0, AfxSig_vwp, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, CPoint))OnMButtonDblClk }, +#define ON_WM_PARENTNOTIFY() \ + { WM_PARENTNOTIFY, 0, 0, 0, AfxSig_vwl, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, LPARAM))OnParentNotify }, +#define ON_WM_MDIACTIVATE() \ + { WM_MDIACTIVATE, 0, 0, 0, AfxSig_vbWW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL, CWnd*, CWnd*))OnMDIActivate }, +#define ON_WM_RENDERFORMAT() \ + { WM_RENDERFORMAT, 0, 0, 0, AfxSig_vw, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT))OnRenderFormat }, +#define ON_WM_RENDERALLFORMATS() \ + { WM_RENDERALLFORMATS, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnRenderAllFormats }, +#define ON_WM_DESTROYCLIPBOARD() \ + { WM_DESTROYCLIPBOARD, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnDestroyClipboard }, +#define ON_WM_DRAWCLIPBOARD() \ + { WM_DRAWCLIPBOARD, 0, 0, 0, AfxSig_vv, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(void))OnDrawClipboard }, +#define ON_WM_PAINTCLIPBOARD() \ + { WM_PAINTCLIPBOARD, 0, 0, 0, AfxSig_vWh, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*, HGLOBAL))OnPaintClipboard }, +#define ON_WM_VSCROLLCLIPBOARD() \ + { WM_VSCROLLCLIPBOARD, 0, 0, 0, AfxSig_vWww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*, UINT, UINT))OnVScrollClipboard }, +#define ON_WM_SIZECLIPBOARD() \ + { WM_SIZECLIPBOARD, 0, 0, 0, AfxSig_vWh, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*, HGLOBAL))OnSizeClipboard }, +#define ON_WM_ASKCBFORMATNAME() \ + { WM_ASKCBFORMATNAME, 0, 0, 0, AfxSig_vwl, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(UINT, LPTSTR))OnAskCbFormatName }, +#define ON_WM_CHANGECBCHAIN() \ + { WM_CHANGECBCHAIN, 0, 0, 0, AfxSig_vhh, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(HWND, HWND))OnChangeCbChain }, +#define ON_WM_HSCROLLCLIPBOARD() \ + { WM_HSCROLLCLIPBOARD, 0, 0, 0, AfxSig_vWww, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*, UINT, UINT))OnHScrollClipboard }, +#define ON_WM_QUERYNEWPALETTE() \ + { WM_QUERYNEWPALETTE, 0, 0, 0, AfxSig_bv, \ + (AFX_PMSG)(AFX_PMSGW)(BOOL (AFX_MSG_CALL CWnd::*)(void))OnQueryNewPalette }, +#define ON_WM_PALETTECHANGED() \ + { WM_PALETTECHANGED, 0, 0, 0, AfxSig_vW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*))OnPaletteChanged }, + +#define ON_WM_PALETTEISCHANGING() \ + { WM_PALETTEISCHANGING, 0, 0, 0, AfxSig_vW, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(CWnd*))OnPaletteIsChanging }, +#define ON_WM_DROPFILES() \ + { WM_DROPFILES, 0, 0, 0, AfxSig_vh, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(HDROP))OnDropFiles }, +#define ON_WM_WINDOWPOSCHANGING() \ + { WM_WINDOWPOSCHANGING, 0, 0, 0, AfxSig_vPOS, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(WINDOWPOS*))OnWindowPosChanging }, +#define ON_WM_WINDOWPOSCHANGED() \ + { WM_WINDOWPOSCHANGED, 0, 0, 0, AfxSig_vPOS, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(WINDOWPOS*))OnWindowPosChanged }, + +#define ON_WM_EXITMENULOOP() \ + { WM_EXITMENULOOP, 0, 0, 0, AfxSig_vb, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL))OnExitMenuLoop }, +#define ON_WM_ENTERMENULOOP() \ + { WM_ENTERMENULOOP, 0, 0, 0, AfxSig_vb, \ + (AFX_PMSG)(AFX_PMSGW)(void (AFX_MSG_CALL CWnd::*)(BOOL))OnEnterMenuLoop }, + +///////////////////////////////////////////////////////////////////////////// +// Message map tables for Control Notification messages + +// Edit Control Notification Codes +#define ON_EN_SETFOCUS(id, memberFxn) \ + ON_CONTROL(EN_SETFOCUS, id, memberFxn) +#define ON_EN_KILLFOCUS(id, memberFxn) \ + ON_CONTROL(EN_KILLFOCUS, id, memberFxn) +#define ON_EN_CHANGE(id, memberFxn) \ + ON_CONTROL(EN_CHANGE, id, memberFxn) +#define ON_EN_UPDATE(id, memberFxn) \ + ON_CONTROL(EN_UPDATE, id, memberFxn) +#define ON_EN_ERRSPACE(id, memberFxn) \ + ON_CONTROL(EN_ERRSPACE, id, memberFxn) +#define ON_EN_MAXTEXT(id, memberFxn) \ + ON_CONTROL(EN_MAXTEXT, id, memberFxn) +#define ON_EN_HSCROLL(id, memberFxn) \ + ON_CONTROL(EN_HSCROLL, id, memberFxn) +#define ON_EN_VSCROLL(id, memberFxn) \ + ON_CONTROL(EN_VSCROLL, id, memberFxn) + +// User Button Notification Codes +#define ON_BN_CLICKED(id, memberFxn) \ + ON_CONTROL(BN_CLICKED, id, memberFxn) +#define ON_BN_DOUBLECLICKED(id, memberFxn) \ + ON_CONTROL(BN_DOUBLECLICKED, id, memberFxn) + +// old BS_USERBUTTON button notifications - obsolete in Win31 +#define ON_BN_PAINT(id, memberFxn) \ + ON_CONTROL(BN_PAINT, id, memberFxn) +#define ON_BN_HILITE(id, memberFxn) \ + ON_CONTROL(BN_HILITE, id, memberFxn) +#define ON_BN_UNHILITE(id, memberFxn) \ + ON_CONTROL(BN_UNHILITE, id, memberFxn) +#define ON_BN_DISABLE(id, memberFxn) \ + ON_CONTROL(BN_DISABLE, id, memberFxn) + +// Listbox Notification Codes +#define ON_LBN_ERRSPACE(id, memberFxn) \ + ON_CONTROL(LBN_ERRSPACE, id, memberFxn) +#define ON_LBN_SELCHANGE(id, memberFxn) \ + ON_CONTROL(LBN_SELCHANGE, id, memberFxn) +#define ON_LBN_DBLCLK(id, memberFxn) \ + ON_CONTROL(LBN_DBLCLK, id, memberFxn) +#define ON_LBN_SELCANCEL(id, memberFxn) \ + ON_CONTROL(LBN_SELCANCEL, id, memberFxn) +#define ON_LBN_SETFOCUS(id, memberFxn) \ + ON_CONTROL(LBN_SETFOCUS, id, memberFxn) +#define ON_LBN_KILLFOCUS(id, memberFxn) \ + ON_CONTROL(LBN_KILLFOCUS, id, memberFxn) + +// Combo Box Notification Codes +#define ON_CBN_ERRSPACE(id, memberFxn) \ + ON_CONTROL(CBN_ERRSPACE, id, memberFxn) +#define ON_CBN_SELCHANGE(id, memberFxn) \ + ON_CONTROL(CBN_SELCHANGE, id, memberFxn) +#define ON_CBN_DBLCLK(id, memberFxn) \ + ON_CONTROL(CBN_DBLCLK, id, memberFxn) +#define ON_CBN_SETFOCUS(id, memberFxn) \ + ON_CONTROL(CBN_SETFOCUS, id, memberFxn) +#define ON_CBN_KILLFOCUS(id, memberFxn) \ + ON_CONTROL(CBN_KILLFOCUS, id, memberFxn) +#define ON_CBN_EDITCHANGE(id, memberFxn) \ + ON_CONTROL(CBN_EDITCHANGE, id, memberFxn) +#define ON_CBN_EDITUPDATE(id, memberFxn) \ + ON_CONTROL(CBN_EDITUPDATE, id, memberFxn) +#define ON_CBN_DROPDOWN(id, memberFxn) \ + ON_CONTROL(CBN_DROPDOWN, id, memberFxn) +#define ON_CBN_CLOSEUP(id, memberFxn) \ + ON_CONTROL(CBN_CLOSEUP, id, memberFxn) +#define ON_CBN_SELENDOK(id, memberFxn) \ + ON_CONTROL(CBN_SELENDOK, id, memberFxn) +#define ON_CBN_SELENDCANCEL(id, memberFxn) \ + ON_CONTROL(CBN_SELENDCANCEL, id, memberFxn) + +///////////////////////////////////////////////////////////////////////////// +// User extensions for message map entries + +// for Windows messages +#define ON_MESSAGE(message, memberFxn) \ + { message, 0, 0, 0, AfxSig_lwl, \ + (AFX_PMSG)(AFX_PMSGW)(LRESULT (AFX_MSG_CALL CWnd::*)(WPARAM, LPARAM))memberFxn }, + +// for Registered Windows messages +#define ON_REGISTERED_MESSAGE(nMessageVariable, memberFxn) \ + { 0xC000, 0, 0, 0, (UINT)(UINT*)(&nMessageVariable), \ + /*implied 'AfxSig_lwl'*/ \ + (AFX_PMSG)(AFX_PMSGW)(LRESULT (AFX_MSG_CALL CWnd::*)(WPARAM, LPARAM))memberFxn }, + +///////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3