TabCtrlView.h
上传用户:sz86035077
上传日期:2013-02-27
资源大小:40k
文件大小:2k
源码类别:

Tab控件

开发平台:

Visual C++

  1. #if !defined(AFX_TABCTRLVIEW_H__A92CBF86_5E26_43C2_9C6D_B851D698C4F1__INCLUDED_)
  2. #define AFX_TABCTRLVIEW_H__A92CBF86_5E26_43C2_9C6D_B851D698C4F1__INCLUDED_
  3. #include "ViewTabCtrl.h" // Added by ClassView
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // TabCtrlView.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTabCtrlView window
  11. class CTabCtrlView : public CWnd
  12. {
  13. // Construction
  14. public:
  15. CTabCtrlView();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CTabCtrlView)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. void SetTab(int tab);
  27. CView* GetActiveView();
  28. void RecalcLayout();
  29. virtual CView* CreateView(CRuntimeClass* pViewClass, SIZE sizeInit, CCreateContext* pContext );
  30. virtual BOOL HandleTabs(int sel);
  31. BOOL CreateStatic(CWnd* pParentWnd, DWORD dwStyle = WS_CHILD | WS_VISIBLE, UINT nid = AFX_IDW_PANE_FIRST);
  32. virtual ~CTabCtrlView();
  33. // Generated message map functions
  34. protected:
  35. virtual void InitTabs(CTabCtrlView* pView);
  36. CViewTabCtrl m_tabctl;
  37. CView* m_activeView;
  38. BOOL CreateCommon(CWnd* pParentwnd, SIZE sizeMin, DWORD dwStyle, UINT nid);
  39. //{{AFX_MSG(CTabCtrlView)
  40. afx_msg void OnSize(UINT nType, int cx, int cy);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_TABCTRLVIEW_H__A92CBF86_5E26_43C2_9C6D_B851D698C4F1__INCLUDED_)