FileChange.cpp
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // FileChange.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "FileChange.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "FileChangeDoc.h"
  8. #include "FileChangeView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CFileChangeApp
  16. BEGIN_MESSAGE_MAP(CFileChangeApp, CWinApp)
  17. //{{AFX_MSG_MAP(CFileChangeApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. // NOTE - the ClassWizard will add and remove mapping macros here.
  20. //    DO NOT EDIT what you see in these blocks of generated code!
  21. //}}AFX_MSG_MAP
  22. // Standard file based document commands
  23. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  24. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CFileChangeApp construction
  28. CFileChangeApp::CFileChangeApp()
  29. {
  30. // TODO: add construction code here,
  31. // Place all significant initialization in InitInstance
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // The one and only CFileChangeApp object
  35. CFileChangeApp theApp;
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CFileChangeApp initialization
  38. BOOL CFileChangeApp::InitInstance()
  39. {
  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. CMultiDocTemplate* pDocTemplate;
  57. pDocTemplate = new CMultiDocTemplate(
  58. IDR_FILECHTYPE,
  59. RUNTIME_CLASS(CFileChangeDoc),
  60. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  61. RUNTIME_CLASS(CFileChangeView));
  62. AddDocTemplate(pDocTemplate);
  63. // create main MDI Frame window
  64. CMainFrame* pMainFrame = new CMainFrame;
  65. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  66. return FALSE;
  67. m_pMainWnd = pMainFrame;
  68. // Parse command line for standard shell commands, DDE, file open
  69. CCommandLineInfo cmdInfo;
  70. ParseCommandLine(cmdInfo);
  71. // Dispatch commands specified on the command line
  72. if (!ProcessShellCommand(cmdInfo))
  73. return FALSE;
  74. // The main window has been initialized, so show and update it.
  75. pMainFrame->ShowWindow(m_nCmdShow);
  76. pMainFrame->UpdateWindow();
  77. return TRUE;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CAboutDlg dialog used for App About
  81. class CAboutDlg : public CDialog
  82. {
  83. public:
  84. CAboutDlg();
  85. // Dialog Data
  86. //{{AFX_DATA(CAboutDlg)
  87. enum { IDD = IDD_ABOUTBOX };
  88. //}}AFX_DATA
  89. // ClassWizard generated virtual function overrides
  90. //{{AFX_VIRTUAL(CAboutDlg)
  91. protected:
  92. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  93. //}}AFX_VIRTUAL
  94. // Implementation
  95. protected:
  96. //{{AFX_MSG(CAboutDlg)
  97. // No message handlers
  98. //}}AFX_MSG
  99. DECLARE_MESSAGE_MAP()
  100. };
  101. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  102. {
  103. //{{AFX_DATA_INIT(CAboutDlg)
  104. //}}AFX_DATA_INIT
  105. }
  106. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  107. {
  108. CDialog::DoDataExchange(pDX);
  109. //{{AFX_DATA_MAP(CAboutDlg)
  110. //}}AFX_DATA_MAP
  111. }
  112. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  113. //{{AFX_MSG_MAP(CAboutDlg)
  114. // No message handlers
  115. //}}AFX_MSG_MAP
  116. END_MESSAGE_MAP()
  117. // App command to run the dialog
  118. void CFileChangeApp::OnAppAbout()
  119. {
  120. CAboutDlg aboutDlg;
  121. aboutDlg.DoModal();
  122. }
  123. /////////////////////////////////////////////////////////////////////////////
  124. // CFileChangeApp message handlers