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

Ftp客户端

开发平台:

Visual C++

  1. // MyFtpView.h : interface of the CMyFtpView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYFTPVIEW_H__590C5A0C_F3EA_4ADA_AD00_C3D694EDD975__INCLUDED_)
  5. #define AFX_MYFTPVIEW_H__590C5A0C_F3EA_4ADA_AD00_C3D694EDD975__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ConnectDlg.h"
  10. #include "FtpDlg.h"
  11. class CMyFtpView : public CView
  12. {
  13. protected: // create from serialization only
  14. CMyFtpView();
  15. DECLARE_DYNCREATE(CMyFtpView)
  16. //myData
  17. public:
  18. CConnectDlg m_ConDlg;
  19. CFtpDlg     m_FtpDlg;
  20. CString m_FtpWebSite;
  21. CString m_UserName;
  22. CString m_UserPwd;
  23. CInternetSession* m_pSession;
  24. CFtpConnection* m_pConnection;
  25. CFtpFileFind* m_pFileFind;
  26. // Attributes
  27. public:
  28. CMyFtpDoc* GetDocument();
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CMyFtpView)
  34. public:
  35. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  36. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  37. protected:
  38. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  39. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  40. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. public:
  44. virtual ~CMyFtpView();
  45. #ifdef _DEBUG
  46. virtual void AssertValid() const;
  47. virtual void Dump(CDumpContext& dc) const;
  48. #endif
  49. protected:
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CMyFtpView)
  53. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  54. afx_msg void OnConnect();
  55. afx_msg void OnTimer(UINT nIDEvent);
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. #ifndef _DEBUG  // debug version in MyFtpView.cpp
  60. inline CMyFtpDoc* CMyFtpView::GetDocument()
  61.    { return (CMyFtpDoc*)m_pDocument; }
  62. #endif
  63. /////////////////////////////////////////////////////////////////////////////
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_MYFTPVIEW_H__590C5A0C_F3EA_4ADA_AD00_C3D694EDD975__INCLUDED_)