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.

60 lines
1.3 KiB

  1. #if !defined(_CHOOSECSPPAGE_H)
  2. #define _CHOOSECSPPAGE_H
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ChooseCertPage.h : header file
  7. //
  8. #include "Certificat.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CChooseCertPage dialog
  11. class CChooseCspPage : public CIISWizardPage
  12. {
  13. DECLARE_DYNCREATE(CChooseCspPage)
  14. // Construction
  15. public:
  16. CChooseCspPage(CCertificate * pCert = NULL);
  17. ~CChooseCspPage();
  18. enum
  19. {
  20. IDD_PREV_PAGE = IDD_PAGE_WIZ_SECURITY_SETTINGS,
  21. IDD_NEXT_PAGE = IDD_PAGE_WIZ_ORG_INFO,
  22. };
  23. // Dialog Data
  24. //{{AFX_DATA(CChooseCspPage)
  25. enum { IDD = IDD_PAGE_WIZ_CHOOSE_CSP };
  26. CListBox m_List;
  27. //}}AFX_DATA
  28. CCertificate * m_pCert;
  29. // Overrides
  30. // ClassWizard generate virtual function overrides
  31. //{{AFX_VIRTUAL(CChooseCspPage)
  32. public:
  33. virtual LRESULT OnWizardBack();
  34. virtual LRESULT OnWizardNext();
  35. virtual BOOL OnSetActive();
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. // Generated message map functions
  42. //{{AFX_MSG(CChooseCspPage)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnListSelChange();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(_CHOOSECSPPAGE_H)