#pragma once ///////////////////////////////////////////////////////////////////////////// // CDlgLogin dialog #include "EdgeInspector_App.h" class CDlgLogin : public CDialog { // Construction public: CDlgLogin(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CDlgLogin) enum { IDD = IDD_DIALOG_LOGIN }; CString m_strEditPassword; CString m_strEditNewPwd1; CString m_strEditNewPwd2; //}}AFX_DATA int m_nLVPassword; BOOL m_bLoginOK; // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CDlgLogin) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: CString m_strOriginPwd; // Generated message map functions //{{AFX_MSG(CDlgLogin) virtual void OnOK(); virtual void OnCancel(); afx_msg void OnButtonChange(); virtual BOOL OnInitDialog(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };