FTPTRCTL.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // FTPTrCtl.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "afxinet.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMyTreeCtrl window
  15. class CMyTreeCtrl : public CTreeCtrl
  16. {
  17. // Construction
  18. public:
  19. void PopulateTree(CFtpConnection* pConnection = NULL,
  20. const CString& strDir = CString((LPCTSTR) NULL));
  21. CMyTreeCtrl();
  22. // Attributes
  23. public:
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMyTreeCtrl)
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CMyTreeCtrl();
  33. // Generated message map functions
  34. protected:
  35. CFtpConnection* m_pFtpConnection;
  36. void ExploreDir(const CString& strDir, HTREEITEM hParent);
  37. //{{AFX_MSG(CMyTreeCtrl)
  38. afx_msg void OnItemexpanding(NMHDR* pNMHDR, LRESULT* pResult);
  39. afx_msg void OnDestroy();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////