draw.cpp
上传用户:y440e3
上传日期:2010-03-08
资源大小:200k
文件大小:5k
源码类别:

GIS编程

开发平台:

Visual C++

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