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.

86 lines
2.0 KiB

  1. //
  2. // Application Verifier UI
  3. // Copyright (c) Microsoft Corporation, 2001
  4. //
  5. //
  6. //
  7. // module: AVSheet.h
  8. // author: DMihai
  9. // created: 02/23/2001
  10. //
  11. // Description:
  12. //
  13. // Property sheet class.
  14. //
  15. #if !defined(AFX_AVSHEET_H__F86AAFC4_97F7_4D59_A3B2_317B4506E5C7__INCLUDED_)
  16. #define AFX_AVSHEET_H__F86AAFC4_97F7_4D59_A3B2_317B4506E5C7__INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. #include "TaskPage.h"
  21. #include "SelApp.h"
  22. #include "ChooseExe.h"
  23. #include "Options.h"
  24. #include "StartApp.h"
  25. #include "ViewLog.h"
  26. #include "ViewSett.h"
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CAppverifSheet property sheet
  29. class CAppverifSheet : public CPropertySheet
  30. {
  31. // Construction
  32. public:
  33. CAppverifSheet();
  34. protected:
  35. VOID HideHelpButton();
  36. protected:
  37. HICON m_hIcon;
  38. CTaskPage m_TaskPage;
  39. CSelectAppPage m_SelectAppPage;
  40. CChooseExePage m_ChooseExePage;
  41. COptionsPage m_OptionsPage;
  42. CStartAppPage m_StartAppPage;
  43. CViewLogPage m_ViewLogPage;
  44. CViewSettPage m_ViewSettPage;
  45. //
  46. // Dialog Data
  47. //
  48. //{{AFX_DATA(CAppverifSheet)
  49. // NOTE: the ClassWizard will add data members here
  50. //}}AFX_DATA
  51. // ClassWizard generated virtual function overrides
  52. //{{AFX_VIRTUAL(CAppverifSheet)
  53. protected:
  54. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  55. virtual BOOL OnInitDialog();
  56. //}}AFX_VIRTUAL
  57. // Implementation
  58. protected:
  59. // Generated message map functions
  60. //{{AFX_MSG(CAppverifSheet)
  61. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  62. afx_msg void OnPaint();
  63. afx_msg HCURSOR OnQueryDragIcon();
  64. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_AVSHEET_H__F86AAFC4_97F7_4D59_A3B2_317B4506E5C7__INCLUDED_)