FileTransFrame.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
- // FileTransFrame.h : header file
- #ifndef _FILETRANS_FRAME_H
- #define _FILETRANS_FRAME_H
- #include "FilelistSend.h"
- #include "FileListRecv.h"
- #include "XTSplitterWnd.h"
- class CFileTransFrame : public CFrameWnd
- {
- DECLARE_DYNCREATE(CFileTransFrame)
- protected:
- CFileTransFrame(); // protected constructor used by dynamic creation
- protected:
- CXTSplitterWnd m_wndSpliter, m_wndFleListSpliter;
- // Attributes
- public:
- CFileListSend *m_pwndFileSendList; //send list window.
- CFileListRecv *m_pwndFileRecvList; //recv list window.
- CFileListRecv *m_pwndHistoryView; //history transfer result display view.
-
- // Operations
- public:
- void SwitchToView(UINT nView); //switch view window.
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CFileTransFrame)
- protected:
- virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- virtual ~CFileTransFrame();
- // Generated message map functions
- //{{AFX_MSG(CFileTransFrame)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- int m_nCurrentViewID; //current view index.
- };
- #endif //_FILETRANS_FRAME_H