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.

70 lines
1.7 KiB

  1. #if !defined(AFX_WELCOMEPAGE_H__D4BE8672_0C85_11D2_91B1_00C04F8C8761__INCLUDED_)
  2. #define AFX_WELCOMEPAGE_H__D4BE8672_0C85_11D2_91B1_00C04F8C8761__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // WelcomePage.h : header file
  7. //
  8. #include "BookEndPage.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CWelcomePage dialog
  11. class CCertificate;
  12. class CWelcomePage : public CIISWizardBookEnd2
  13. {
  14. DECLARE_DYNCREATE(CWelcomePage)
  15. // Construction
  16. public:
  17. CWelcomePage(CCertificate * pCert = NULL);
  18. ~CWelcomePage();
  19. enum
  20. {
  21. CONTINUE_UNDEFINED = 0,
  22. CONTINUE_NEW_CERT = 1,
  23. CONTINUE_PENDING_CERT = 2,
  24. CONTINUE_INSTALLED_CERT = 3
  25. };
  26. enum
  27. {
  28. IDD_PAGE_NEXT_NEW = IDD_PAGE_WIZ_GET_WHAT,
  29. IDD_PAGE_NEXT_PENDING = IDD_PAGE_WIZ_PENDING_WHAT_TODO,
  30. IDD_PAGE_NEXT_INSTALLED = IDD_PAGE_WIZ_MANAGE_CERT
  31. };
  32. // Dialog Data
  33. //{{AFX_DATA(CWelcomePage)
  34. enum { IDD = IDD_PAGE_WELCOME_START };
  35. // NOTE - ClassWizard will add data members here.
  36. // DO NOT EDIT what you see in these blocks of generated code !
  37. //}}AFX_DATA
  38. CCertificate * m_pCert;
  39. int m_ContinuationFlag;
  40. // Overrides
  41. // ClassWizard generate virtual function overrides
  42. //{{AFX_VIRTUAL(CWelcomePage)
  43. public:
  44. virtual BOOL OnSetActive();
  45. virtual LRESULT OnWizardNext();
  46. protected:
  47. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. protected:
  51. // Generated message map functions
  52. //{{AFX_MSG(CWelcomePage)
  53. virtual BOOL OnInitDialog();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_WELCOMEPAGE_H__D4BE8672_0C85_11D2_91B1_00C04F8C8761__INCLUDED_)