📄 keyword_cipher.h
字号:
#if !defined(AFX_KEYWORD_CIPHER_H__379F65AB_56EF_4281_9663_D9F93CBA59B6__INCLUDED_)
#define AFX_KEYWORD_CIPHER_H__379F65AB_56EF_4281_9663_D9F93CBA59B6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// KeyWord_Cipher.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CKeyWord_Cipher dialog
class CKeyWord_Cipher : public CDialog
{
// Construction
public:
void Trans_Dialog(CWnd *temp);
CString Produce_Cipher(CString text, int choice);
CString Produce_Cipher( CString phrase );
CString UpdatePhrase(CString phrase);
CKeyWord_Cipher(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CKeyWord_Cipher)
enum { IDD = IDD_KEYWORD_CIPHER };
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CKeyWord_Cipher)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CKeyWord_Cipher)
afx_msg void OnEncipher();
afx_msg void OnDecipher();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CString m_RKeyWord;
CString m_Ciphertext;
CString m_Plaintext;
CString m_KeyWord;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_KEYWORD_CIPHER_H__379F65AB_56EF_4281_9663_D9F93CBA59B6__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -