57 lines
1.5 KiB
C++
57 lines
1.5 KiB
C++
#if !defined(AFX_INPUTPASSWORDDIAL_H__5A423149_9C06_4E5B_98BC_572BC1A0FF4B__INCLUDED_)
|
|
#define AFX_INPUTPASSWORDDIAL_H__5A423149_9C06_4E5B_98BC_572BC1A0FF4B__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// InputPasswordDial.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CInputPasswordDial dialog
|
|
|
|
class CInputPasswordDial : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CInputPasswordDial(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CInputPasswordDial)
|
|
enum { IDD = IDD_DIALOG_INPUT_PASSWORD };
|
|
CString m_edPassword;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CInputPasswordDial)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CInputPasswordDial)
|
|
virtual void OnOK();
|
|
virtual BOOL OnInitDialog();
|
|
virtual void OnCancel();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
public:
|
|
void SetGeoPassword(CString strPassword){m_strGeoPassword = strPassword;m_bIsDirectVerify = true;}
|
|
void SetGD10VerifyModel(){m_bIsDirectVerify = false;}
|
|
CString GetInputPassword(){return m_edPassword;}
|
|
protected:
|
|
bool m_bIsDirectVerify;
|
|
CString m_strGeoPassword;
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_INPUTPASSWORDDIAL_H__5A423149_9C06_4E5B_98BC_572BC1A0FF4B__INCLUDED_)
|