Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.2 KiB

  1. // NKKyInfo.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CNKKeyInfo dialog
  5. class CNKKeyInfo : public CNKPages
  6. {
  7. // Construction
  8. public:
  9. CNKKeyInfo(CWnd* pParent = NULL); // standard constructor
  10. virtual BOOL OnInitDialog(); // override virtual oninitdialog
  11. virtual BOOL OnSetActive();
  12. virtual LRESULT OnWizardNext();
  13. // ends up holding the number of bits
  14. DWORD m_nBits;
  15. DWORD m_nMaxBits;
  16. // Dialog Data
  17. //{{AFX_DATA(CNKKeyInfo)
  18. enum { IDD = IDD_NK_KEY_INFO };
  19. CEdit m_nkki_cedit_password;
  20. CComboBox m_nkki_ccombo_bits;
  21. CString m_nkki_sz_password;
  22. CString m_nkki_sz_password2;
  23. CString m_nkki_sz_name;
  24. //}}AFX_DATA
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CNKKeyInfo)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. // Generated message map functions
  34. //{{AFX_MSG(CNKKeyInfo)
  35. afx_msg void OnChangeNewNkkiPassword();
  36. afx_msg void OnChangeNewNkkiPassword2();
  37. afx_msg void OnChangeNkkiName();
  38. afx_msg void OnKillfocusNewNkkiPassword2();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. void ActivateButtons();
  42. };