TabbedViewView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // TabbedViewView.h : interface of the CTabbedViewView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_TABBEDVIEWVIEW_H__5ABAD79B_0902_4E7B_B34A_CB769F9417C1__INCLUDED_)
  21. #define AFX_TABBEDVIEWVIEW_H__5ABAD79B_0902_4E7B_B34A_CB769F9417C1__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CTabbedViewDoc;
  26. class CTabbedViewView : public CView
  27. {
  28. protected: // create from serialization only
  29. CTabbedViewView();
  30. DECLARE_DYNCREATE(CTabbedViewView)
  31. // Attributes
  32. public:
  33. CTabbedViewDoc* GetDocument();
  34. CXTPTabControl m_wndTabControl;
  35. BOOL AddView(CRuntimeClass* pViewClass, LPCTSTR lpszTitle, int nIcon);
  36. void UpdateDocTitle();
  37. // Operations
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CTabbedViewView)
  42. public:
  43. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  44. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  45. protected:
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. public:
  49. virtual ~CTabbedViewView();
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. protected:
  55. // Generated message map functions
  56. protected:
  57. //{{AFX_MSG(CTabbedViewView)
  58. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  59. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  60. afx_msg void OnPaint();
  61. afx_msg void OnSize(UINT nType, int cx, int cy);
  62. //}}AFX_MSG
  63. afx_msg void OnSelectedChanged(NMHDR* pNMHDR, LRESULT* pResult);
  64. afx_msg int OnMouseActivate(CWnd* pDesktopWnd, UINT nHitTest, UINT message);
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. #ifndef _DEBUG  // debug version in TabbedViewView.cpp
  68. inline CTabbedViewDoc* CTabbedViewView::GetDocument()
  69. { return (CTabbedViewDoc*)m_pDocument; }
  70. #endif
  71. /////////////////////////////////////////////////////////////////////////////
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_TABBEDVIEWVIEW_H__5ABAD79B_0902_4E7B_B34A_CB769F9417C1__INCLUDED_)