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.

113 lines
2.4 KiB

  1. //
  2. // Driver Verifier UI
  3. // Copyright (c) Microsoft Corporation, 1999
  4. //
  5. //
  6. //
  7. // module: DSetPage.h
  8. // author: DMihai
  9. // created: 11/1/00
  10. //
  11. // Description:
  12. //
  13. #if !defined(AFX_DSETPAGE_H__FCB7F146_7EE5_4A08_B7B4_ECE172A70098__INCLUDED_)
  14. #define AFX_DSETPAGE_H__FCB7F146_7EE5_4A08_B7B4_ECE172A70098__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. // DSetPage.h : header file
  19. //
  20. #include "vsetting.h"
  21. #include "VerfPage.h"
  22. //
  23. // Forward declarations
  24. //
  25. class CVerifierPropSheet;
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CDriverSetPage dialog
  28. class CDriverSetPage : public CVerifierPropertyPage
  29. {
  30. DECLARE_DYNCREATE(CDriverSetPage)
  31. public:
  32. //
  33. // Construction/destruction
  34. //
  35. CDriverSetPage();
  36. ~CDriverSetPage();
  37. //
  38. // Methods
  39. //
  40. VOID SetParentSheet( CVerifierPropSheet *pParentSheet )
  41. {
  42. m_pParentSheet = pParentSheet;
  43. ASSERT( m_pParentSheet != NULL );
  44. }
  45. protected:
  46. //
  47. // Dialog Data
  48. //
  49. CVerifierPropSheet *m_pParentSheet;
  50. //{{AFX_DATA(CDriverSetPage)
  51. enum { IDD = IDD_DRVSET_PAGE };
  52. CStatic m_NextDescription;
  53. int m_nCrtRadio;
  54. //}}AFX_DATA
  55. //
  56. // Overrides
  57. //
  58. //
  59. // All the property pages derived from this class should
  60. // provide these methods.
  61. //
  62. virtual ULONG GetDialogId() const { return IDD; }
  63. //
  64. // ClassWizard generated virtual function overrides
  65. //
  66. //{{AFX_VIRTUAL(CDriverSetPage)
  67. public:
  68. virtual LRESULT OnWizardNext();
  69. virtual BOOL OnWizardFinish();
  70. virtual BOOL OnSetActive();
  71. virtual void OnCancel();
  72. virtual LRESULT OnWizardBack();
  73. protected:
  74. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  75. //}}AFX_VIRTUAL
  76. protected:
  77. // Generated message map functions
  78. //{{AFX_MSG(CDriverSetPage)
  79. virtual BOOL OnInitDialog();
  80. afx_msg void OnAlldrvRadio();
  81. afx_msg void OnNameslistRadio();
  82. afx_msg void OnNotsignedRadio();
  83. afx_msg void OnOldverRadio();
  84. afx_msg LONG OnHelp( WPARAM wParam, LPARAM lParam );
  85. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  86. //}}AFX_MSG
  87. DECLARE_MESSAGE_MAP()
  88. };
  89. //{{AFX_INSERT_LOCATION}}
  90. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  91. #endif // !defined(AFX_DSETPAGE_H__FCB7F146_7EE5_4A08_B7B4_ECE172A70098__INCLUDED_)