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

Ftp客户端

开发平台:

Visual C++

  1. // xiongFtp.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "xiongFtp.h"
  5. #include "MainFrm.h"
  6. #include "xiongFtpDoc.h"
  7. #include "xiongFtpView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CXiongFtpApp
  15. BEGIN_MESSAGE_MAP(CXiongFtpApp, CWinApp)
  16. //{{AFX_MSG_MAP(CXiongFtpApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. // Standard print setup command
  25. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CXiongFtpApp construction
  29. CXiongFtpApp::CXiongFtpApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CXiongFtpApp object
  36. CXiongFtpApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CXiongFtpApp initialization
  39. BOOL CXiongFtpApp::InitInstance()
  40. {
  41. AfxEnableControlContainer();
  42. // Standard initialization
  43. // If you are not using these features and wish to reduce the size
  44. //  of your final executable, you should remove from the following
  45. //  the specific initialization routines you do not need.
  46. #ifdef _AFXDLL
  47. Enable3dControls(); // Call this when using MFC in a shared DLL
  48. #else
  49. Enable3dControlsStatic(); // Call this when linking to MFC statically
  50. #endif
  51. // Change the registry key under which our settings are stored.
  52. // TODO: You should modify this string to be something appropriate
  53. // such as the name of your company or organization.
  54. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  55. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  56. // Register the application's document templates.  Document templates
  57. //  serve as the connection between documents, frame windows and views.
  58. CSingleDocTemplate* pDocTemplate;
  59. pDocTemplate = new CSingleDocTemplate(
  60. IDR_MAINFRAME,
  61. RUNTIME_CLASS(CXiongFtpDoc),
  62. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  63. RUNTIME_CLASS(CXiongFtpView));
  64. AddDocTemplate(pDocTemplate);
  65. // Parse command line for standard shell commands, DDE, file open
  66. CCommandLineInfo cmdInfo;
  67. ParseCommandLine(cmdInfo);
  68. // Dispatch commands specified on the command line
  69. if (!ProcessShellCommand(cmdInfo))
  70. return FALSE;
  71. m_pMainWnd->CenterWindow(CWnd::GetDesktopWindow());
  72. // The one and only window has been initialized, so show and update it.
  73. m_pMainWnd->ShowWindow(SW_SHOW);
  74. m_pMainWnd->SetWindowText("FTP Client");
  75. m_pMainWnd->UpdateWindow();
  76. return TRUE;
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CAboutDlg dialog used for App About
  80. class CAboutDlg : public CDialog
  81. {
  82. public:
  83. CAboutDlg();
  84. // Dialog Data
  85. //{{AFX_DATA(CAboutDlg)
  86. enum { IDD = IDD_ABOUTBOX };
  87. //}}AFX_DATA
  88. // ClassWizard generated virtual function overrides
  89. //{{AFX_VIRTUAL(CAboutDlg)
  90. protected:
  91. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  92. //}}AFX_VIRTUAL
  93. // Implementation
  94. protected:
  95. //{{AFX_MSG(CAboutDlg)
  96. // No message handlers
  97. //}}AFX_MSG
  98. DECLARE_MESSAGE_MAP()
  99. };
  100. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  101. {
  102. //{{AFX_DATA_INIT(CAboutDlg)
  103. //}}AFX_DATA_INIT
  104. }
  105. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  106. {
  107. CDialog::DoDataExchange(pDX);
  108. //{{AFX_DATA_MAP(CAboutDlg)
  109. //}}AFX_DATA_MAP
  110. }
  111. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  112. //{{AFX_MSG_MAP(CAboutDlg)
  113. // No message handlers
  114. //}}AFX_MSG_MAP
  115. END_MESSAGE_MAP()
  116. // App command to run the dialog
  117. void CXiongFtpApp::OnAppAbout()
  118. {
  119. CAboutDlg aboutDlg;
  120. aboutDlg.DoModal();
  121. }
  122. /////////////////////////////////////////////////////////////////////////////
  123. // CXiongFtpApp message handlers