Gui_DevStudio.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:5k
源码类别:

对话框与窗口

开发平台:

Visual C++

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