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

Ftp客户端

开发平台:

Visual C++

  1. // GFTPTestDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GFTPTest.h"
  5. #include "GFTPTestDlg.h"
  6. #include "FTPclient.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CGFTPTestDlg dialog
  51. CGFTPTestDlg::CGFTPTestDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CGFTPTestDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CGFTPTestDlg)
  55. m_host = _T("");
  56. m_user = _T("");
  57. m_pass = _T("");
  58. m_port = 21;
  59. m_fwhost = _T("");
  60. m_fwport = 21;
  61. m_fwuser = _T("");
  62. m_fwpass = _T("");
  63. m_lfile = _T("");
  64. m_rfile = _T("");
  65. m_pasv = FALSE;
  66. m_put = 0;
  67. m_logontype = 0;
  68. m_acct = _T("");
  69. //}}AFX_DATA_INIT
  70. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  71. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  72. }
  73. void CGFTPTestDlg::DoDataExchange(CDataExchange* pDX)
  74. {
  75. CDialog::DoDataExchange(pDX);
  76. //{{AFX_DATA_MAP(CGFTPTestDlg)
  77. DDX_Text(pDX, IDC_EDIT1, m_host);
  78. DDX_Text(pDX, IDC_EDIT2, m_user);
  79. DDX_Text(pDX, IDC_EDIT3, m_pass);
  80. DDX_Text(pDX, IDC_EDIT4, m_port);
  81. DDX_Text(pDX, IDC_EDIT5, m_fwhost);
  82. DDX_Text(pDX, IDC_EDIT6, m_fwport);
  83. DDX_Text(pDX, IDC_EDIT7, m_fwuser);
  84. DDX_Text(pDX, IDC_EDIT8, m_fwpass);
  85. DDX_Text(pDX, IDC_EDIT9, m_lfile);
  86. DDX_Text(pDX, IDC_EDIT10, m_rfile);
  87. DDX_Check(pDX, IDC_CHECK1, m_pasv);
  88. DDX_Radio(pDX, IDC_RADIO1, m_put);
  89. DDX_Radio(pDX, IDC_RADIO3, m_logontype);
  90. DDX_Text(pDX, IDC_EDIT11, m_acct);
  91. //}}AFX_DATA_MAP
  92. }
  93. BEGIN_MESSAGE_MAP(CGFTPTestDlg, CDialog)
  94. //{{AFX_MSG_MAP(CGFTPTestDlg)
  95. ON_WM_SYSCOMMAND()
  96. ON_WM_PAINT()
  97. ON_WM_QUERYDRAGICON()
  98. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  99. //}}AFX_MSG_MAP
  100. ON_CONTROL_RANGE(BN_CLICKED,IDC_RADIO3,IDC_RADIO11,OnRadio)
  101. END_MESSAGE_MAP()
  102. /////////////////////////////////////////////////////////////////////////////
  103. // CGFTPTestDlg message handlers
  104. BOOL CGFTPTestDlg::OnInitDialog()
  105. {
  106. CDialog::OnInitDialog();
  107. // Add "About..." menu item to system menu.
  108. // IDM_ABOUTBOX must be in the system command range.
  109. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  110. ASSERT(IDM_ABOUTBOX < 0xF000);
  111. CMenu* pSysMenu = GetSystemMenu(FALSE);
  112. if (pSysMenu != NULL)
  113. {
  114. CString strAboutMenu;
  115. strAboutMenu.LoadString(IDS_ABOUTBOX);
  116. if (!strAboutMenu.IsEmpty())
  117. {
  118. pSysMenu->AppendMenu(MF_SEPARATOR);
  119. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  120. }
  121. }
  122. // Set the icon for this dialog.  The framework does this automatically
  123. //  when the application's main window is not a dialog
  124. SetIcon(m_hIcon, TRUE); // Set big icon
  125. SetIcon(m_hIcon, FALSE); // Set small icon
  126. // TODO: Add extra initialization here
  127. return TRUE;  // return TRUE  unless you set the focus to a control
  128. }
  129. void CGFTPTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
  130. {
  131. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  132. {
  133. CAboutDlg dlgAbout;
  134. dlgAbout.DoModal();
  135. }
  136. else
  137. {
  138. CDialog::OnSysCommand(nID, lParam);
  139. }
  140. }
  141. // If you add a minimize button to your dialog, you will need the code below
  142. //  to draw the icon.  For MFC applications using the document/view model,
  143. //  this is automatically done for you by the framework.
  144. void CGFTPTestDlg::OnPaint() 
  145. {
  146. if (IsIconic())
  147. {
  148. CPaintDC dc(this); // device context for painting
  149. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  150. // Center icon in client rectangle
  151. int cxIcon = GetSystemMetrics(SM_CXICON);
  152. int cyIcon = GetSystemMetrics(SM_CYICON);
  153. CRect rect;
  154. GetClientRect(&rect);
  155. int x = (rect.Width() - cxIcon + 1) / 2;
  156. int y = (rect.Height() - cyIcon + 1) / 2;
  157. // Draw the icon
  158. dc.DrawIcon(x, y, m_hIcon);
  159. }
  160. else
  161. {
  162. CDialog::OnPaint();
  163. }
  164. }
  165. // The system calls this to obtain the cursor to display while the user drags
  166. //  the minimized window.
  167. HCURSOR CGFTPTestDlg::OnQueryDragIcon()
  168. {
  169. return (HCURSOR) m_hIcon;
  170. }
  171. // hide/show firewall edit ctrls as appropriate
  172. void CGFTPTestDlg::OnRadio(UINT nID) {
  173. UpdateData(TRUE);
  174. for(int i=IDC_EDIT5;i<=IDC_EDIT8;i++)
  175. GetDlgItem(i)->EnableWindow(m_logontype);
  176. }
  177. void CGFTPTestDlg::OnButton1() 
  178. {
  179. CFTPclient ftp;
  180. UpdateData(TRUE);
  181. // connect to FTP server
  182. if(!ftp.LogOnToServer(m_host,m_port,m_user,m_pass,m_acct,m_fwhost,m_fwuser,m_fwpass,m_fwport,m_logontype)) {
  183. MessageBox(ftp.m_retmsg);
  184. return;
  185. }
  186. // move a file by FTP
  187. ftp.MoveFile(m_lfile,m_rfile,m_pasv,m_put);
  188. // show the result of the operation
  189. MessageBox(ftp.m_retmsg);
  190. // disconnect from server
  191. ftp.LogOffServer();
  192. }