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.

96 lines
2.0 KiB

  1. //
  2. // Application Verifier UI
  3. // Copyright (c) Microsoft Corporation, 2001
  4. //
  5. //
  6. //
  7. // module: ChooseExe.h
  8. // author: CLupu
  9. // created: 04/13/2001
  10. //
  11. // Description:
  12. //
  13. // "Choose an executable to run" wizard page class.
  14. //
  15. #if !defined(AFX_OPTIONS_H_INCLUDED_)
  16. #define AFX_OPTIONS_H_INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. #include "AVPage.h"
  21. /////////////////////////////////////////////////////////////////////////////
  22. // COptionsPage dialog
  23. class COptionsPage : public CAppverifPage
  24. {
  25. DECLARE_DYNCREATE(COptionsPage)
  26. // Construction
  27. public:
  28. COptionsPage();
  29. ~COptionsPage();
  30. protected:
  31. //
  32. // Overrides
  33. //
  34. //
  35. // All the property pages derived from this class should
  36. // provide this method.
  37. //
  38. virtual ULONG GetDialogId() const;
  39. //
  40. // ClassWizard generate virtual function overrides
  41. //
  42. //{{AFX_VIRTUAL(COptionsPage)
  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. void InsertIssue( DWORD idResIssue );
  50. protected:
  51. // Dialog Data
  52. //{{AFX_DATA(COptionsPage)
  53. enum { IDD = IDD_OPTIONS_PAGE };
  54. CListCtrl m_IssuesList;
  55. CEdit m_CrashDumpFile;
  56. CButton m_CreateCrashDumpFile;
  57. CStatic m_NextDescription;
  58. //}}AFX_DATA
  59. int m_nIssues;
  60. protected:
  61. //
  62. // Generated message map functions
  63. //
  64. //{{AFX_MSG(COptionsPage)
  65. virtual BOOL OnInitDialog();
  66. afx_msg LONG OnHelp( WPARAM wParam, LPARAM lParam );
  67. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  68. afx_msg void OnCheckCreateCrashDumpFile();
  69. afx_msg void OnBrowseCrashDumpFile();
  70. //}}AFX_MSG
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. //{{AFX_INSERT_LOCATION}}
  74. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  75. #endif // !defined(AFX_OPTIONS_H_INCLUDED_)