07063257_GL.cpp
上传用户:kuqidezhu
上传日期:2022-07-18
资源大小:4151k
文件大小:5k
源码类别:

3D图形编程

开发平台:

Visual C++

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