thismfcapp.h
来自「Password Safe Password Safe is a passwor」· C头文件 代码 · 共 54 行
H
54 行
/// \file ThisMfcApp.h/// \brief App object of MFC version of Password Safe//-----------------------------------------------------------------------------#if !defined(ThisMfcApp_h)#define ThisMfcApp_h#include "PasswordSafe.h"#include "stdafx.h"#include "corelib/MyString.h"#include "corelib/Util.h"#include "corelib/PWScore.h"#include "SystemTray.h"//-----------------------------------------------------------------------------class DboxMain;class ThisMfcApp : public CWinApp{public: ThisMfcApp(); ~ThisMfcApp(); HACCEL m_ghAccelTable; CRecentFileList* GetMRU() { return m_pMRU; } CSystemTray m_TrayIcon; DboxMain* m_maindlg; PWScore m_core; virtual BOOL InitInstance();WCE_DEL virtual BOOL ProcessMessageFilter(int code, LPMSG lpMsg); void EnableAccelerator() { m_bUseAccelerator = true; } void DisableAccelerator() { m_bUseAccelerator = false; } afx_msg void OnHelp(); static void StripFileQuotes( CString& strFilename ); DECLARE_MESSAGE_MAP() protected: CRecentFileList* m_pMRU; bool m_bUseAccelerator;};//-----------------------------------------------------------------------------#endif // !defined(ThisMfcApp_h)//-----------------------------------------------------------------------------// Local variables:// mode: c++// End:
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?