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

Windows编程

开发平台:

Visual C++

  1. // FTPTrDlg.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. #include "FTPtrCtl.h"
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CFTPTREEDlg dialog
  16. class CFTPTREEDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. CFTPTREEDlg(CWnd* pParent = NULL);  // standard constructor
  21. ~CFTPTREEDlg();                     // custom destructor
  22. // Dialog Data
  23. //{{AFX_DATA(CFTPTREEDlg)
  24. enum { IDD = IDD_FTPTREE_DIALOG };
  25. CMyTreeCtrl m_FtpTreeCtl;
  26. CComboBox   m_comboFtpSite;
  27. //}}AFX_DATA
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CFTPTREEDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. HICON m_hIcon;
  36. CInternetSession* m_pInetSession;
  37. CFtpConnection* m_pFtpConnection;
  38. CSize m_OrigSize;
  39. // Generated message map functions
  40. //{{AFX_MSG(CFTPTREEDlg)
  41. virtual BOOL OnInitDialog();
  42. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  43. afx_msg void OnPaint();
  44. afx_msg HCURSOR OnQueryDragIcon();
  45. afx_msg void OnBrowseSite();
  46. afx_msg void OnSize(UINT nType, int cx, int cy);
  47. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };