FtpDlg.h
上传用户:job1860
上传日期:2021-12-04
资源大小:1510k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. #if !defined(AFX_FTPDLG_H__C22AAC8E_C843_4D8D_8A3D_1E7ABF7697A3__INCLUDED_)
  2. #define AFX_FTPDLG_H__C22AAC8E_C843_4D8D_8A3D_1E7ABF7697A3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // FtpDlg.h : header file
  7. //
  8. #include "NewNameDlg.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CFtpDlg dialog
  11. class CFtpDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CFtpDlg(CWnd* pParent = NULL);   // standard constructor
  16. // Dialog Data
  17. //{{AFX_DATA(CFtpDlg)
  18. enum { IDD = IDD_DIALOG2 };
  19. CButton m_BtnDelete;
  20. CButton m_BtnRename;
  21. CButton m_BtnQuery;
  22. CButton m_BtnUpLoad;
  23. CButton m_BtnDownLoad;
  24. CListCtrl m_FtpFile;
  25. //}}AFX_DATA
  26. CFtpConnection* m_pConnection;
  27. CFtpFileFind* m_pFileFind;
  28.     
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CFtpDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. //添加的函数
  36.     void ListContent(LPCTSTR );
  37. void GetLastDiretory(CString &str);
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CFtpDlg)
  42. afx_msg void OnQuary();
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnExit();
  45. afx_msg void OnDownload();
  46. afx_msg void OnUpload();
  47. afx_msg void OnRename();
  48. afx_msg void OnDelete();
  49. afx_msg void OnNextdirectory();
  50. afx_msg void OnLastdirectory();
  51. afx_msg void OnDblclkListFile(NMHDR* pNMHDR, LRESULT* pResult);
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_FTPDLG_H__C22AAC8E_C843_4D8D_8A3D_1E7ABF7697A3__INCLUDED_)