TransmitFileDlg.h
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. #if !defined(AFX_TRANSMITFILEDLG_H__C4BBA270_670A_4281_AE7D_C1559BB21197__INCLUDED_)
  2. #define AFX_TRANSMITFILEDLG_H__C4BBA270_670A_4281_AE7D_C1559BB21197__INCLUDED_
  3. /*********************************************
  4. **该文件是属于WolfFTP工程中的。如果有什么问题
  5. **请联系
  6. **         tablejiang@21cn.com
  7. **或者访问
  8. **         http://wolfftp.51.net
  9. **以得到最新的支持。
  10. *********************************************/
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. // TransmitFileDlg.h : header file
  15. //
  16. #include "JobListCtrl.h"
  17. #include "share.h"
  18. #include "FileQueue.h"
  19. #include "FtpTransmitFile.h"
  20. #include "Resource.h"
  21. #include "ProgressStatusCtrl.h"
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CTransmitFileDlg dialog
  24. class CTransmitFileDlg : public CDialog
  25. {
  26. // Construction
  27. public:
  28. BOOL StartTransmitFile( );
  29. CTransmitFileDlg(CWnd* pParent = NULL);   // standard constructor
  30. // Dialog Data
  31. //{{AFX_DATA(CTransmitFileDlg)
  32. enum { IDD = IDD_DIALOG_MULTI };
  33. // NOTE: the ClassWizard will add data members here
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CTransmitFileDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. protected:
  44. // Generated message map functions
  45. //{{AFX_MSG(CTransmitFileDlg)
  46. virtual void OnOK();
  47. virtual void OnCancel();
  48. virtual BOOL OnInitDialog();
  49. afx_msg void OnSize(UINT nType, int cx, int cy);
  50. afx_msg void OnClose();
  51. afx_msg void OnDestroy();
  52. afx_msg void OnBackRun();
  53. afx_msg void OnBackStop();
  54. afx_msg void OnBackSelall();
  55. afx_msg void OnBackStopall();
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. protected :
  59. BOOL InitList( );
  60. CFileQueue m_FileQueue ;
  61. CProgressStatusCtrl m_Bar ;
  62. public :
  63. BOOL StopAllTransmitTask( );
  64. BOOL SetSelectItemStatus( int iState );
  65. BOOL DeleteSelectItem( );
  66. BOOL AddToBkQueue( FTPFILEINFO* pFileInfo );
  67. BOOL RefreshJobList( );
  68. CFtpTransmitFile m_Transmit ;
  69. CJobListCtrl m_ListCtrl ;
  70. };
  71. //{{AFX_INSERT_LOCATION}}
  72. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  73. #endif // !defined(AFX_TRANSMITFILEDLG_H__C4BBA270_670A_4281_AE7D_C1559BB21197__INCLUDED_)