ex101.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

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