cryptkeyentry.h

来自「Password Safe Password Safe is a passwor」· C头文件 代码 · 共 58 行

H
58
字号
// CryptKeyEntry.h//-----------------------------------------------------------------------------#include "corelib/MyString.h"#include "corelib/PwsPlatform.h"#if defined(POCKET_PC)  #include "pocketpc/PwsPopupDialog.h"  #define SUPERCLASS	CPwsPopupDialog#else  #define SUPERCLASS	CDialog#endifclass CCryptKeyEntry : public SUPERCLASS{// Constructionpublic:	typedef SUPERCLASS	super;   CCryptKeyEntry(CWnd* pParent = NULL);   // standard constructor// Dialog Data   //{{AFX_DATA(CCryptKeyEntry)   enum { IDD = IDD_CRYPTKEYENTRY };   CMyString	m_cryptkey1;   CMyString	m_cryptkey2;   //}}AFX_DATA// Overrides   // ClassWizard generated virtual function overrides   //{{AFX_VIRTUAL(CCryptKeyEntry)protected:   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support   //}}AFX_VIRTUAL// Implementationprotected:   // Generated message map functions   //{{AFX_MSG(CCryptKeyEntry)   virtual void OnCancel();   virtual void OnOK();   afx_msg void OnHelp();#if defined(POCKET_PC)   afx_msg void OnPasskeySetfocus();   afx_msg void OnPasskeyKillfocus();#endif   //}}AFX_MSG   DECLARE_MESSAGE_MAP()};#undef SUPERCLASS//-----------------------------------------------------------------------------// Local variables:// mode: c++// End:

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?