3D0214.cpp
上传用户:juying163
上传日期:2014-09-24
资源大小:5867k
文件大小:4k
源码类别:

GIS编程

开发平台:

Visual C++

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