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

Ftp客户端

开发平台:

Visual C++

  1. // QuickFTP.h : main header file for the QUICKFTP application
  2. //
  3. /*********************************************
  4. **该文件是属于WolfFTP工程中的。如果有什么问题
  5. **请联系
  6. **         tablejiang@21cn.com
  7. **或者访问
  8. **         http://wolfftp.51.net
  9. **以得到最新的支持。
  10. *********************************************/
  11. #if !defined(AFX_QUICKFTP_H__F0A6D461_539F_40CE_9FAD_26E960A137E9__INCLUDED_)
  12. #define AFX_QUICKFTP_H__F0A6D461_539F_40CE_9FAD_26E960A137E9__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. #ifndef __AFXWIN_H__
  17. #error include 'stdafx.h' before including this file for PCH
  18. #endif
  19. #include "resource.h"       // main symbols
  20. #include "TransmitFileDlg.h"
  21. #include "WelcomeDlg.h"
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CQuickFTPApp:
  24. // See QuickFTP.cpp for the implementation of this class
  25. //
  26. class CQuickFTPApp : public CWinApp
  27. {
  28. public:
  29. CQuickFTPApp();
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CQuickFTPApp)
  33. public:
  34. virtual BOOL InitInstance();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. //{{AFX_MSG(CQuickFTPApp)
  38. afx_msg void OnAppAbout();
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code !
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. protected:
  44. CWelcomeDlg m_WelDlg ;
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CAboutDlg dialog used for App About
  48. class CAboutDlg : public CDialog
  49. {
  50. public:
  51. CAboutDlg();
  52. // Dialog Data
  53. //{{AFX_DATA(CAboutDlg)
  54. enum { IDD = IDD_ABOUTBOX };
  55. CString m_DisplayStr;
  56. //}}AFX_DATA
  57. // ClassWizard generated virtual function overrides
  58. //{{AFX_VIRTUAL(CAboutDlg)
  59. protected:
  60. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  61. //}}AFX_VIRTUAL
  62. // Implementation
  63. protected:
  64. //{{AFX_MSG(CAboutDlg)
  65. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  66. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  67. virtual BOOL OnInitDialog();
  68. afx_msg void OnPaint();
  69. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  70. //}}AFX_MSG
  71. DECLARE_MESSAGE_MAP()
  72. protected:
  73. RECT m_MailRect ; //mail rectangle .
  74. RECT m_WebRect ; //web rectangle .
  75. HBRUSH m_Brush ;
  76. HCURSOR m_hHand;
  77. HCURSOR m_hArrow ;
  78. int m_IsHand;
  79. };
  80. /////////////////////////////////////////////////////////////////////////////
  81. //{{AFX_INSERT_LOCATION}}
  82. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  83. #endif // !defined(AFX_QUICKFTP_H__F0A6D461_539F_40CE_9FAD_26E960A137E9__INCLUDED_)