WorkFrame.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
- // WorkFrame.h : header file
- #ifndef _WORKFRAME_H
- #define _WORKFRAME_H
- #include "WorkspaceView.h"
- #include "FileTransFrame.h"
- #include "XTSplitterWnd.h"
- class CWorkFrame : public CFrameWnd
- {
- DECLARE_DYNCREATE(CWorkFrame)
- protected:
- CWorkFrame(); // protected constructor used by dynamic creation
- // Attributes
- public:
- CWorkspaceView *m_pwndWorkspaceView; //workspace view.
- CFileTransFrame *m_pwndFileTransView; //file trans view.
-
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CWorkFrame)
- protected:
- virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- virtual ~CWorkFrame();
- // Generated message map functions
- //{{AFX_MSG(CWorkFrame)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- protected:
- CXTSplitterWnd m_wndLRSplit; //Left-Right splitter window.
- };
- #endif //_WORKFRAME_H