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