📄 thismfcapp.h
字号:
/// \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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -