MthOutput.cpp
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:4k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MthOutput.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MthOutput.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDemoApp
  14. BEGIN_MESSAGE_MAP(CDemoApp, CWinApp)
  15. //{{AFX_MSG_MAP(CDemoApp)
  16. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. ON_COMMAND(ID_FILE_NEW, OnFileNew)
  20. //}}AFX_MSG_MAP
  21. END_MESSAGE_MAP()
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CDemoApp construction
  24. CDemoApp::CDemoApp()
  25. {
  26. // TODO: add construction code here,
  27. // Place all significant initialization in InitInstance
  28. }
  29. /////////////////////////////////////////////////////////////////////////////
  30. // The one and only CDemoApp object
  31. CDemoApp theApp;
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CDemoApp initialization
  34. BOOL CDemoApp::InitInstance()
  35. {
  36. InitCommonControls();
  37. if( !AfxInitRichEdit() )
  38. {
  39. ASSERT( FALSE );
  40. return FALSE;
  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. #if _MFC_VER < 0x700
  48. #ifdef _AFXDLL
  49. Enable3dControls(); // Call this when using MFC in a shared DLL
  50. #else
  51. Enable3dControlsStatic(); // Call this when linking to MFC statically
  52. #endif
  53. #endif
  54. // Change the registry key under which our settings are stored.
  55. // TODO: You should modify this string to be something appropriate
  56. // such as the name of your company or organization.
  57. SetRegistryKey( _T("Foss") );
  58. // To create the main window, this code creates a new frame window
  59. // object and then sets it as the application's main window object.
  60. CMDIFrameWnd* pFrame = new CMainFrame;
  61. m_pMainWnd = pFrame;
  62. // create main MthOutput frame window
  63. if (!pFrame->LoadFrame(IDR_MAINFRAME))
  64. return FALSE;
  65. // try to load shared MthOutput menus and accelerator table
  66. //TODO: add additional member variables and load calls for
  67. // additional menu types your application may need. 
  68. HINSTANCE hInst = AfxGetResourceHandle();
  69. m_hMDIMenu  = ::LoadMenu(hInst, MAKEINTRESOURCE(IDR_MDITYPE));
  70. m_hMDIAccel = ::LoadAccelerators(hInst, MAKEINTRESOURCE(IDR_MDITYPE));
  71. // // The main window has been initialized, so show and update it.
  72. // pFrame->ShowWindow(m_nCmdShow);
  73. // pFrame->UpdateWindow();
  74. // window placement persistence
  75. pFrame->ActivateFrame( m_nCmdShow );
  76. return TRUE;
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CDemoApp message handlers
  80. int CDemoApp::ExitInstance() 
  81. {
  82. //TODO: handle additional resources you may have added
  83. if (m_hMDIMenu != NULL)
  84. FreeResource(m_hMDIMenu);
  85. if (m_hMDIAccel != NULL)
  86. FreeResource(m_hMDIAccel);
  87. return CWinApp::ExitInstance();
  88. }
  89. void CDemoApp::OnFileNew() 
  90. {
  91. CMainFrame * pFrame =
  92. STATIC_DOWNCAST(
  93. CMainFrame,
  94. m_pMainWnd
  95. );
  96. // create a new MthOutput child window
  97. pFrame->CreateNewChild(
  98. RUNTIME_CLASS(CChildFrame),
  99. IDR_MDITYPE,
  100. m_hMDIMenu,
  101. m_hMDIAccel
  102. );
  103. }
  104. // App command to run the dialog
  105. void CDemoApp::OnAppAbout()
  106. {
  107. #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  108. VERIFY( ProfUISAbout() );
  109. #endif // #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  110. }
  111. /////////////////////////////////////////////////////////////////////////////
  112. // CDemoApp message handlers