WorkspaceView.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
源码类别:

网格计算

开发平台:

Visual C++

  1. // WorkspaceView.h : header file
  2. #ifndef _WORKSPACE_VIEW_H
  3. #define _WORKSPACE_VIEW_H
  4. #include "TreeForUsers.h"
  5. #include "TreeForHistory.h"
  6. #include "TreeForGrpSend.h"
  7. #include "TreeForFtp.h"
  8. class CWorkspaceView : public CView
  9. {
  10. protected:
  11. CWorkspaceView();           // protected constructor used by dynamic creation
  12. DECLARE_DYNCREATE(CWorkspaceView)
  13. // Attributes
  14. public:
  15. CTabCtrl m_TabSolExplorer;
  16. CTreeForUsers   m_TreeForUsers;
  17. CTreeForHistory m_TreeForHistory;
  18. CTreeForGrpSend m_TreeForGrpSend;
  19. CTreeForFtp m_TreeForFtp;
  20. protected:
  21. CImageList m_imgWorkspace;
  22. CWnd* GetActiveWnd(void); //get current activity window.
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CWorkspaceView)
  28. protected:
  29. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. virtual ~CWorkspaceView();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CWorkspaceView)
  41. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42. afx_msg void OnSize(UINT nType, int cx, int cy);
  43. afx_msg void OnTabSelChange(NMHDR* pNMHDR, LRESULT* pResult);
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. #endif //_WORKSPACE_VIEW_H