AxibugEmuOnline/virtuanessrc097-master/ShortcutDlg.h

58 lines
2.1 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ショートカットダイアログクラス
//
#ifndef __CSHORTCUTDLG_INCLUDED__
#define __CSHORTCUTDLG_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <string>
using namespace std;
#include "Wnd.h"
#include "Config.h"
class CShortcutDlg : public CWnd
{
public:
// Override from CWnd
INT DoModal( HWND hWndParent );
// Override from CWnd
BOOL PreTranslateMessage( MSG* pMsg );
protected:
void OnInitialMember();
// Message map
DLG_MESSAGE_MAP()
DLGMSG OnInitDialog( DLGMSGPARAM );
DLGMSG OnTimer( DLGMSGPARAM );
DLGNOTIFY OnListDblClick( DLGNOTIFYPARAM );
DLGNOTIFY OnListItemChanged( DLGNOTIFYPARAM );
DLGCMD OnOK( DLGCMDPARAM );
DLGCMD OnCancel( DLGCMDPARAM );
DLGCMD OnDefault( DLGCMDPARAM );
//
CHAR m_szWindowTitle[256];
CHAR m_szMessage[256];
BOOL m_bCancelMode;
INT m_SelectPos;
INT m_SelectID;
INT m_SelectSubID;
INT m_TimerID;
INT m_TimerCount;
INT m_ControlBuf [128];
INT m_ControlBuf2[128];
CCfgShortCut m_ConfigSave;
private:
};
#endif // !__CSHORTCUTDLG_INCLUDED__