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.

103 lines
2.8 KiB

  1. //+---------------------------------------------------------------------------
  2. /////////////////////////////////////////////////////////////////////////////////
  3. //
  4. // Microsoft Windows
  5. // Copyright (C) Microsoft Corporation, 2000-2001.
  6. //
  7. // File: HelpPropertyPage.h
  8. //
  9. // Contents: Declaration of CHelpPropertyPage
  10. //
  11. //----------------------------------------------------------------------------
  12. #if !defined(AFX_HELPPROPERTYPAGE_H__C75F826D_B054_45CC_B440_34F44645FF90__INCLUDED_)
  13. #define AFX_HELPPROPERTYPAGE_H__C75F826D_B054_45CC_B440_34F44645FF90__INCLUDED_
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. // HelpPropertyPage.h : header file
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CHelpPropertyPage dialog
  21. class CHelpPropertyPage : public CAutoDeletePropPage
  22. {
  23. // Construction
  24. public:
  25. CHelpPropertyPage(UINT uIDD);
  26. ~CHelpPropertyPage();
  27. // Dialog Data
  28. //{{AFX_DATA(CHelpPropertyPage)
  29. // NOTE - ClassWizard will add data members here.
  30. // DO NOT EDIT what you see in these blocks of generated code !
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generate virtual function overrides
  34. //{{AFX_VIRTUAL(CHelpPropertyPage)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CHelpPropertyPage)
  42. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. virtual void DoContextHelp (HWND hWndControl);
  46. afx_msg void OnWhatsThis();
  47. afx_msg BOOL OnHelp(WPARAM wParam, LPARAM lParam);
  48. HWND m_hWndWhatsThis;
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CHelpPropertyPage dialog
  52. class CHelpDialog : public CDialog
  53. {
  54. // Construction
  55. public:
  56. CHelpDialog(UINT uIDD, CWnd* pParentWnd);
  57. ~CHelpDialog();
  58. // Dialog Data
  59. //{{AFX_DATA(CHelpDialog)
  60. // NOTE - ClassWizard will add data members here.
  61. // DO NOT EDIT what you see in these blocks of generated code !
  62. //}}AFX_DATA
  63. // Overrides
  64. // ClassWizard generate virtual function overrides
  65. //{{AFX_VIRTUAL(CHelpDialog)
  66. protected:
  67. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  68. //}}AFX_VIRTUAL
  69. // Implementation
  70. protected:
  71. // Generated message map functions
  72. //{{AFX_MSG(CHelpDialog)
  73. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  74. //}}AFX_MSG
  75. DECLARE_MESSAGE_MAP()
  76. virtual void DoContextHelp (HWND hWndControl);
  77. afx_msg void OnWhatsThis();
  78. afx_msg BOOL OnHelp(WPARAM wParam, LPARAM lParam);
  79. HWND m_hWndWhatsThis;
  80. };
  81. //{{AFX_INSERT_LOCATION}}
  82. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  83. #endif // !defined(AFX_SAFERENTRYCERTIFICATEPROPERTYPAGE_H__C75F826D_B054_45CC_B440_34F44645FF90__INCLUDED_)