www.pudn.com > endecipher.rar > Dlg_Vigenere.h
#if !defined(AFX_DLG_VIGENERE_H__8D5FD3FF_186F_403B_9D24_49D9E868C812__INCLUDED_)
#define AFX_DLG_VIGENERE_H__8D5FD3FF_186F_403B_9D24_49D9E868C812__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Dlg_Vigenere.h : header file
//
#include "FileOperator.h"
/////////////////////////////////////////////////////////////////////////////
// CDlg_Vigenere dialog
class CDlg_Vigenere : public CDialog
{
// Construction
public:
CDlg_Vigenere(CWnd* pParent = NULL); // standard constructor
char * Encipher(CString a,CString k);
char * Decipher(CString a,CString k);
// Dialog Data
//{{AFX_DATA(CDlg_Vigenere)
enum { IDD = IDD_DIALOG_VIGENERE };
CEdit m_FP;
CButton m_s;
CStatic m_sp;
CStatic m_sc;
CButton m_f;
CStatic m_fc;
CStatic m_fp;
CEdit m_SP;
CEdit m_SC;
CEdit m_FC;
CButton m_openp;
CButton m_openc;
CString m_path_c;
CString m_key;
int m_t;
CString m_path_p;
CString m_plain;
CString m_cipher;
CFileOperator file;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDlg_Vigenere)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CDlg_Vigenere)
afx_msg void OnBUTTONEncipher();
afx_msg void OnBUTTONDecipher();
afx_msg void OnRadioS();
afx_msg void OnRadioF();
afx_msg void OnBUTTONOpenP();
afx_msg void OnBUTTONOpenC();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DLG_VIGENERE_H__8D5FD3FF_186F_403B_9D24_49D9E868C812__INCLUDED_)