PageBase.h
上传用户:hjw22cn
上传日期:2007-01-11
资源大小:192k
文件大小:1k
源码类别:

Tab控件

开发平台:

Visual C++

  1. #ifndef __PAGEBASE_H
  2. #define __PAGEBASE_H
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // PageBase.h : header file
  7. //
  8. #include "ResizablePage.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CPageBase dialog
  11. class CTabDataSheet;
  12. class CPageBase : public CResizablePage
  13. {
  14. DECLARE_DYNCREATE(CPageBase)
  15. // Construction
  16. public:
  17. CPageBase();
  18. CPageBase(int resourceID);
  19. ~CPageBase();
  20. // Overrides
  21. // ClassWizard generate virtual function overrides
  22. //{{AFX_VIRTUAL(CPageBase)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. // Generated message map functions
  29. //{{AFX_MSG(CPageBase)
  30. virtual BOOL OnInitDialog();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. private:
  34. protected:
  35. CTabDataSheet* m_pParent;
  36. public:
  37.    virtual int GetTabID() { ASSERT(FALSE); return 0; };
  38. void SetTabInfo(void* itemPtr);
  39. void InitPage(CTabDataSheet* pParent) { m_pParent = pParent; };
  40. };
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_VPTABBASE_H__41296CC6_8B98_11D3_8FCF_0008C73BFB99__INCLUDED_)