TabView.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_TABVIEW_H__8A018DB2_310A_4310_8ECC_3CA063E5FD14__INCLUDED_)
  2. #define AFX_TABVIEW_H__8A018DB2_310A_4310_8ECC_3CA063E5FD14__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // TabView.h : header file
  7. //
  8. #include "TabWnd.h"
  9. #include "IEView.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CTabView view
  12. class CTabView : public CView
  13. {
  14. enum{ WM_CREATE_IEVIEW = WM_USER + 100 };
  15. public:
  16.          CTabView( );
  17. virtual ~CTabView( );
  18. CIEView * CreateIEView( void );
  19. CIEView * GetIEView( int index = -1 );
  20. protected:
  21. //{{AFX_VIRTUAL(CTabView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);
  24. protected:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. afx_msg CIEView * OnCreateIEView( void );
  28. //{{AFX_MSG(CTabView)
  29. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  30. afx_msg void OnSize(UINT nType, int cx, int cy);
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. private:
  34. CTabWnd   tab;
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  39. #endif // !defined(AFX_TABVIEW_H__8A018DB2_310A_4310_8ECC_3CA063E5FD14__INCLUDED_)