📄 my_capdlg.h
字号:
// MY_CAPDlg.h : header file
//
#if !defined(AFX_MY_CAPDLG_H__5A800B40_1F27_4238_85C0_C818DDB2937C__INCLUDED_)
#define AFX_MY_CAPDLG_H__5A800B40_1F27_4238_85C0_C818DDB2937C__INCLUDED_
#include "Stream_Cipher.h" // Added by ClassView
#include "RC4_Cipher.h" // Added by ClassView
#include "Caeser_Cipher.h" // Added by ClassView
#include "KeyWord_Cipher.h" // Added by ClassView
#include "Vigenere_Cipher.h" // Added by ClassView
#include "Playfair_Cipher.h" // Added by ClassView
#include "DES_Cipher.h" // Added by ClassView
#include "IDEA_Cipher.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CMY_CAPDlg dialog
class CMY_CAPDlg : public CDialog
{
// Construction
public:
void OnIDEA ();
void OnDES();
void OnSave_Ciphertext();
void OnSave_Plaintext();
void OnSelect_Ciphertext();
void OnSelect_Plaintext();
void OnHelp();
void OnAbout();
void OnQuit();
CMY_CAPDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMY_CAPDlg)
enum { IDD = IDD_MY_CAP_DIALOG };
CString m_Plaintext;
CString m_Ciphertext;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMY_CAPDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CMY_CAPDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnStreamCipher();
afx_msg void OnRc4Cipher();
afx_msg void OnCaeser();
afx_msg void OnKeyword();
afx_msg void OnVigenere();
afx_msg void OnPlayfair();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CIDEA_Cipher m_IDEA_Cipher;
CDES_Cipher m_DES_Cipher;
CPlayfair_Cipher m_Playfair_Cipher;
CVigenere_Cipher m_Vigenere_Cipher;
CKeyWord_Cipher m_KeyWord_Cipher;
CCaeser_Cipher m_Caeser_Cipher;
CStream_Cipher m_Stream_Cipher;
CRC4_Cipher m_RC4_Cipher;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MY_CAPDLG_H__5A800B40_1F27_4238_85C0_C818DDB2937C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -