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

Tab控件

开发平台:

Visual C++

  1. #if !defined(AFX_VIEWTABCTRL_H__AAF645DE_D9FE_4A6E_AB8E_B16781C3B6D4__INCLUDED_)
  2. #define AFX_VIEWTABCTRL_H__AAF645DE_D9FE_4A6E_AB8E_B16781C3B6D4__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ViewTabCtrl.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CViewTabCtrl window
  10. class CTabCtrlView;
  11. class CViewTabCtrl : public CTabCtrl
  12. {
  13. // Construction
  14. public:
  15. CViewTabCtrl();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CViewTabCtrl)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. void SetView(CTabCtrlView* pView);
  27. virtual void RecalcLayout(CRect& rect, CWnd* pWnd);
  28. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  29. virtual ~CViewTabCtrl();
  30. // Generated message map functions
  31. protected:
  32. virtual BOOL HandleTabs(int sel);
  33. CTabCtrlView* m_pView;
  34. CDC m_dc;
  35. CString m_strGrayfont;
  36.     CString m_strSelfont;
  37. CFont m_selFont;
  38. //{{AFX_MSG(CViewTabCtrl)
  39. afx_msg void OnSelchange(NMHDR* pNMHDR, LRESULT* pResult);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_VIEWTABCTRL_H__AAF645DE_D9FE_4A6E_AB8E_B16781C3B6D4__INCLUDED_)