MapDemo.cpp
上传用户:hzwailv
上传日期:2010-01-09
资源大小:405k
文件大小:5k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // MapDemo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MapDemo.h"
  5. #include "ChildFrm.h"
  6. #include "MapDemoDoc.h"
  7. #include "MapView.h"
  8. #include "MapFormView.h"
  9. #include "MainFrm.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMapDemoApp
  17. BEGIN_MESSAGE_MAP(CMapDemoApp, CWinApp)
  18. //{{AFX_MSG_MAP(CMapDemoApp)
  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. // CMapDemoApp construction
  31. CMapDemoApp::CMapDemoApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CMapDemoApp object
  38. CMapDemoApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CMapDemoApp initialization
  41. BOOL CMapDemoApp::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. pDocTemplate = new CMultiDocTemplate(
  61. IDR_DEMTYPE,
  62. RUNTIME_CLASS(CMapDemoDoc),
  63. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  64. RUNTIME_CLASS(CMapView));
  65. AddDocTemplate(pDocTemplate);
  66. pFormTemplate= new CMultiDocTemplate(
  67. IDR_FORMTYPE,
  68. RUNTIME_CLASS(CMapDemoDoc),
  69. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  70. RUNTIME_CLASS(CMapFormView));
  71. //AddDocTemplate(pFormTemplate);
  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(SW_SHOWMAXIMIZED);
  85. pMainFrame->UpdateWindow();
  86. return TRUE;
  87. }
  88. void CMapDemoApp::NotifyPaletteChanged(CWnd* pFocusWnd)
  89. {
  90. // For each doc template
  91. POSITION pos = GetFirstDocTemplatePosition();
  92. while (pos != NULL) {
  93. CDocTemplate* pTempl = GetNextDocTemplate(pos);
  94. if (pTempl != NULL) {
  95. // for each document
  96. POSITION pos2 = pTempl->GetFirstDocPosition();
  97. while (pos2 != NULL) {
  98. CMapDemoDoc* pDoc = (CMapDemoDoc*) pTempl->GetNextDoc(pos2);
  99. // Tell the doc what happened
  100. if( pDoc != NULL ) {
  101. pDoc->NotifyPaletteChanged(pFocusWnd);
  102. }
  103. }
  104. }
  105. }
  106. }
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CAboutDlg dialog used for App About
  109. class CAboutDlg : public CDialog
  110. {
  111. public:
  112. CAboutDlg();
  113. // Dialog Data
  114. //{{AFX_DATA(CAboutDlg)
  115. enum { IDD = IDD_ABOUTBOX };
  116. //}}AFX_DATA
  117. // ClassWizard generated virtual function overrides
  118. //{{AFX_VIRTUAL(CAboutDlg)
  119. protected:
  120. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  121. //}}AFX_VIRTUAL
  122. // Implementation
  123. protected:
  124. //{{AFX_MSG(CAboutDlg)
  125. // No message handlers
  126. //}}AFX_MSG
  127. DECLARE_MESSAGE_MAP()
  128. };
  129. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  130. {
  131. //{{AFX_DATA_INIT(CAboutDlg)
  132. //}}AFX_DATA_INIT
  133. }
  134. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  135. {
  136. CDialog::DoDataExchange(pDX);
  137. //{{AFX_DATA_MAP(CAboutDlg)
  138. //}}AFX_DATA_MAP
  139. }
  140. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  141. //{{AFX_MSG_MAP(CAboutDlg)
  142. // No message handlers
  143. //}}AFX_MSG_MAP
  144. END_MESSAGE_MAP()
  145. // App command to run the dialog
  146. void CMapDemoApp::OnAppAbout()
  147. {
  148. CAboutDlg aboutDlg;
  149. aboutDlg.DoModal();
  150. }
  151. /////////////////////////////////////////////////////////////////////////////
  152. // CMapDemoApp message handlers