WorkspaceView.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
- // WorkspaceView.h : header file
- #ifndef _WORKSPACE_VIEW_H
- #define _WORKSPACE_VIEW_H
- #include "TreeForUsers.h"
- #include "TreeForHistory.h"
- #include "TreeForGrpSend.h"
- #include "TreeForFtp.h"
- class CWorkspaceView : public CView
- {
- protected:
- CWorkspaceView(); // protected constructor used by dynamic creation
- DECLARE_DYNCREATE(CWorkspaceView)
- // Attributes
- public:
- CTabCtrl m_TabSolExplorer;
- CTreeForUsers m_TreeForUsers;
- CTreeForHistory m_TreeForHistory;
- CTreeForGrpSend m_TreeForGrpSend;
- CTreeForFtp m_TreeForFtp;
- protected:
- CImageList m_imgWorkspace;
-
- CWnd* GetActiveWnd(void); //get current activity window.
-
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CWorkspaceView)
- protected:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- virtual ~CWorkspaceView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- // Generated message map functions
- protected:
- //{{AFX_MSG(CWorkspaceView)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnSize(UINT nType, int cx, int cy);
- afx_msg void OnTabSelChange(NMHDR* pNMHDR, LRESULT* pResult);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #endif //_WORKSPACE_VIEW_H