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.

95 lines
2.0 KiB

  1. //
  2. // Application Verifier UI
  3. // Copyright (c) Microsoft Corporation, 2001
  4. //
  5. //
  6. //
  7. // module: TaskPage.h
  8. // author: DMihai
  9. // created: 02/22/2001
  10. //
  11. // Description:
  12. //
  13. // "Select a task" wizard page class.
  14. //
  15. #if !defined(AFX_TASKPAGE_H__152A3D61_041C_4B49_8E81_455CA0641598__INCLUDED_)
  16. #define AFX_TASKPAGE_H__152A3D61_041C_4B49_8E81_455CA0641598__INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. // TaskPage.h : header file
  21. //
  22. #include "AVPage.h"
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CTaskPage dialog
  25. class CTaskPage : public CAppverifPage
  26. {
  27. DECLARE_DYNCREATE(CTaskPage)
  28. // Construction
  29. public:
  30. CTaskPage();
  31. ~CTaskPage();
  32. protected:
  33. //
  34. // Overrides
  35. //
  36. //
  37. // All the property pages derived from this class should
  38. // provide this method.
  39. //
  40. virtual ULONG GetDialogId() const;
  41. //
  42. // ClassWizard generate virtual function overrides
  43. //
  44. //{{AFX_VIRTUAL(CTaskPage)
  45. public:
  46. virtual LRESULT OnWizardNext();
  47. virtual BOOL OnSetActive();
  48. virtual BOOL OnWizardFinish();
  49. protected:
  50. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  51. //}}AFX_VIRTUAL
  52. //
  53. // Dialog Data
  54. //
  55. //{{AFX_DATA(CTaskPage)
  56. enum { IDD = IDD_TASK_PAGE };
  57. CStatic m_NextDescription;
  58. int m_nCrtRadio;
  59. //}}AFX_DATA
  60. protected:
  61. //
  62. // Generated message map functions
  63. //
  64. //{{AFX_MSG(CTaskPage)
  65. afx_msg void OnViewSettRadio();
  66. afx_msg void OnDeletesettRadio();
  67. afx_msg void OnLogoRadio();
  68. afx_msg void OnStandardRadio();
  69. virtual BOOL OnInitDialog();
  70. afx_msg LONG OnHelp( WPARAM wParam, LPARAM lParam );
  71. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  77. #endif // !defined(AFX_TASKPAGE_H__152A3D61_041C_4B49_8E81_455CA0641598__INCLUDED_)