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

网格计算

开发平台:

Visual C++

  1. // FileTransFrame.h : header file
  2. #ifndef _FILETRANS_FRAME_H
  3. #define _FILETRANS_FRAME_H
  4. #include "FilelistSend.h"
  5. #include "FileListRecv.h"
  6. #include "XTSplitterWnd.h"
  7. class CFileTransFrame : public CFrameWnd
  8. {
  9. DECLARE_DYNCREATE(CFileTransFrame)
  10. protected:
  11. CFileTransFrame();           // protected constructor used by dynamic creation
  12. protected:
  13. CXTSplitterWnd m_wndSpliter, m_wndFleListSpliter;
  14. // Attributes
  15. public:
  16. CFileListSend *m_pwndFileSendList; //send list window.
  17. CFileListRecv *m_pwndFileRecvList; //recv list window.
  18. CFileListRecv *m_pwndHistoryView; //history transfer result display view.
  19. // Operations
  20. public:
  21. void SwitchToView(UINT nView); //switch view window.
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CFileTransFrame)
  25. protected:
  26. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. virtual ~CFileTransFrame();
  31. // Generated message map functions
  32. //{{AFX_MSG(CFileTransFrame)
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. private:
  36. int m_nCurrentViewID; //current view index.
  37. };
  38. #endif //_FILETRANS_FRAME_H