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.

117 lines
2.9 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // BasePage.h
  7. //
  8. // Abstract:
  9. // Definition of the CBasePage class.
  10. //
  11. // Implementation File:
  12. // BasePage.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) May 14, 1996
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _BASEPAGE_H_
  23. #define _BASEPAGE_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Forward Class Declarations
  26. /////////////////////////////////////////////////////////////////////////////
  27. class CBasePage;
  28. /////////////////////////////////////////////////////////////////////////////
  29. // External Class Declarations
  30. /////////////////////////////////////////////////////////////////////////////
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Include Files
  33. /////////////////////////////////////////////////////////////////////////////
  34. #ifndef _BASESHT_H_
  35. #include "BaseSht.h" // for CBaseSheet
  36. #endif
  37. #ifndef _DLGHELP_H_
  38. #include "DlgHelp.h" // for CDialogHelp
  39. #endif
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CBasePage dialog
  42. /////////////////////////////////////////////////////////////////////////////
  43. class CBasePage : public CPropertyPage
  44. {
  45. DECLARE_DYNCREATE(CBasePage)
  46. // Construction
  47. public:
  48. CBasePage(void);
  49. CBasePage(
  50. IN UINT idd,
  51. IN const DWORD * pdwHelpMap,
  52. IN UINT nIDCaption = 0
  53. );
  54. void CommonConstruct(void);
  55. virtual BOOL BInit(IN OUT CBaseSheet * psht);
  56. // Dialog Data
  57. //{{AFX_DATA(CBasePage)
  58. enum { IDD = 0 };
  59. //}}AFX_DATA
  60. CStatic m_staticIcon;
  61. CStatic m_staticTitle;
  62. // Attributes
  63. protected:
  64. CBaseSheet * m_psht;
  65. BOOL m_bReadOnly;
  66. CBaseSheet * Psht(void) const { return m_psht; }
  67. BOOL BReadOnly(void) const { return m_bReadOnly || Psht()->BReadOnly(); }
  68. // Operations
  69. public:
  70. void SetHelpMask(IN DWORD dwMask) { m_dlghelp.SetHelpMask(dwMask); }
  71. void SetObjectTitle(IN const CString & rstrTitle);
  72. // Overrides
  73. // ClassWizard generate virtual function overrides
  74. //{{AFX_VIRTUAL(CBasePage)
  75. public:
  76. virtual BOOL OnApply();
  77. virtual BOOL OnKillActive();
  78. virtual BOOL OnSetActive();
  79. protected:
  80. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  81. //}}AFX_VIRTUAL
  82. // Implementation
  83. protected:
  84. CDialogHelp m_dlghelp;
  85. // Generated message map functions
  86. //{{AFX_MSG(CBasePage)
  87. virtual BOOL OnInitDialog();
  88. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  89. afx_msg LRESULT OnCommandHelp(WPARAM wParam, LPARAM lParam);
  90. //}}AFX_MSG
  91. virtual afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  92. afx_msg void OnChangeCtrl();
  93. DECLARE_MESSAGE_MAP()
  94. }; //*** class CBasePage
  95. /////////////////////////////////////////////////////////////////////////////
  96. #endif // _BASEPAGE_H_