Leaked source code of windows server 2003
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.

105 lines
2.9 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. private:
  49. HWND m_hWndWhatsThis;
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CHelpPropertyPage dialog
  53. class CHelpDialog : public CDialog
  54. {
  55. // Construction
  56. public:
  57. CHelpDialog(UINT uIDD, CWnd* pParentWnd);
  58. ~CHelpDialog();
  59. // Dialog Data
  60. //{{AFX_DATA(CHelpDialog)
  61. // NOTE - ClassWizard will add data members here.
  62. // DO NOT EDIT what you see in these blocks of generated code !
  63. //}}AFX_DATA
  64. // Overrides
  65. // ClassWizard generate virtual function overrides
  66. //{{AFX_VIRTUAL(CHelpDialog)
  67. protected:
  68. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  69. //}}AFX_VIRTUAL
  70. // Implementation
  71. protected:
  72. // Generated message map functions
  73. //{{AFX_MSG(CHelpDialog)
  74. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  75. //}}AFX_MSG
  76. DECLARE_MESSAGE_MAP()
  77. virtual void DoContextHelp (HWND hWndControl);
  78. afx_msg void OnWhatsThis();
  79. afx_msg BOOL OnHelp(WPARAM wParam, LPARAM lParam);
  80. private:
  81. HWND m_hWndWhatsThis;
  82. };
  83. //{{AFX_INSERT_LOCATION}}
  84. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  85. #endif // !defined(AFX_SAFERENTRYCERTIFICATEPROPERTYPAGE_H__C75F826D_B054_45CC_B440_34F44645FF90__INCLUDED_)