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.

100 lines
2.5 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1997 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // BaseDlg.h
  7. //
  8. // Abstract:
  9. // Definition of the CBaseDialog class.
  10. //
  11. // Implementation File:
  12. // BaseDlg.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) February 5, 1997
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _BASEDLG_H_
  23. #define _BASEDLG_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Forward Class Declarations
  26. /////////////////////////////////////////////////////////////////////////////
  27. class CBaseDialog;
  28. /////////////////////////////////////////////////////////////////////////////
  29. // External Class Declarations
  30. /////////////////////////////////////////////////////////////////////////////
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Include Files
  33. /////////////////////////////////////////////////////////////////////////////
  34. #ifndef _DLGHELP_H_
  35. #include "DlgHelp.h" // for CDialogHelp
  36. #endif
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CBaseDialog dialog
  39. /////////////////////////////////////////////////////////////////////////////
  40. class CBaseDialog : public CDialog
  41. {
  42. DECLARE_DYNCREATE(CBaseDialog)
  43. // Construction
  44. public:
  45. CBaseDialog(void) { }
  46. CBaseDialog(
  47. IN LPCTSTR lpszTemplateName,
  48. IN const DWORD * pdwHelpMap,
  49. IN OUT CWnd * pParentWnd = NULL
  50. );
  51. CBaseDialog(
  52. IN UINT idd,
  53. IN const DWORD * pdwHelpMap,
  54. IN OUT CWnd * pParentWnd = NULL
  55. );
  56. // Dialog Data
  57. //{{AFX_DATA(CBaseDialog)
  58. enum { IDD = 0 };
  59. //}}AFX_DATA
  60. // Attributes
  61. // Operations
  62. public:
  63. void SetHelpMask(IN DWORD dwMask) { m_dlghelp.SetHelpMask(dwMask); }
  64. // Overrides
  65. // ClassWizard generate virtual function overrides
  66. //{{AFX_VIRTUAL(CBaseDialog)
  67. protected:
  68. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  69. //}}AFX_VIRTUAL
  70. // Implementation
  71. protected:
  72. CDialogHelp m_dlghelp;
  73. // Generated message map functions
  74. //{{AFX_MSG(CBaseDialog)
  75. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  76. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  77. afx_msg LRESULT OnCommandHelp(WPARAM wParam, LPARAM lParam);
  78. //}}AFX_MSG
  79. DECLARE_MESSAGE_MAP()
  80. }; //*** class CBaseDialog
  81. /////////////////////////////////////////////////////////////////////////////
  82. #endif // _BASEDLG_H_