Draw.cpp
上传用户:yklx818
上传日期:2013-04-13
资源大小:459k
文件大小: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 "dbaseview.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. // 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. // CDrawApp construction
  31. CDrawApp::CDrawApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. CDocTemplate* CDrawApp::GetDocTemplate()
  37. {
  38. return pDocTemplate;
  39. }
  40. CDocTemplate* CDrawApp::GetDocTemplate1()
  41. {
  42. return pDocTemplate1;
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // The one and only CDrawApp object
  46. CDrawApp theApp;
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CDrawApp initialization
  49. BOOL CDrawApp::InitInstance()
  50. {
  51. AfxEnableControlContainer();
  52. // Standard initialization
  53. // If you are not using these features and wish to reduce the size
  54. //  of your final executable, you should remove from the following
  55. //  the specific initialization routines you do not need.
  56. #ifdef _AFXDLL
  57. Enable3dControls(); // Call this when using MFC in a shared DLL
  58. #else
  59. Enable3dControlsStatic(); // Call this when linking to MFC statically
  60. #endif
  61. // Change the registry key under which our settings are stored.
  62. // TODO: You should modify this string to be something appropriate
  63. // such as the name of your company or organization.
  64. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  65. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  66. // Register the application's document templates.  Document templates
  67. //  serve as the connection between documents, frame windows and views.
  68. CMultiDocTemplate* pDocTemplate;
  69. CMultiDocTemplate* DocTemplate1;
  70. DocTemplate1=new CMultiDocTemplate(
  71. IDR_MAINFRAME,                 //注册所用的资源
  72. RUNTIME_CLASS(CDrawDoc),       //注册文档类
  73. RUNTIME_CLASS(CChildFrame),    //注册子框架类
  74. RUNTIME_CLASS(CDatabaseView));//注册视图类
  75. pDocTemplate = new CMultiDocTemplate(
  76. IDR_DRAWTYPE,
  77. RUNTIME_CLASS(CDrawDoc),
  78. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  79. RUNTIME_CLASS(CDrawView));
  80. AddDocTemplate(pDocTemplate);
  81. // create main MDI Frame window
  82. CMainFrame* pMainFrame = new CMainFrame;
  83. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  84. return FALSE;
  85. m_pMainWnd = pMainFrame;
  86. // Parse command line for standard shell commands, DDE, file open
  87. CCommandLineInfo cmdInfo;
  88. ParseCommandLine(cmdInfo);
  89. // Dispatch commands specified on the command line
  90. if (!ProcessShellCommand(cmdInfo))
  91. return FALSE;
  92. // The main window has been initialized, so show and update it.
  93. pMainFrame->ShowWindow(m_nCmdShow);
  94. pMainFrame->UpdateWindow();
  95. return TRUE;
  96. }
  97. /////////////////////////////////////////////////////////////////////////////
  98. // CAboutDlg dialog used for App About
  99. class CAboutDlg : public CDialog
  100. {
  101. public:
  102. CAboutDlg();
  103. // Dialog Data
  104. //{{AFX_DATA(CAboutDlg)
  105. enum { IDD = IDD_ABOUTBOX };
  106. //}}AFX_DATA
  107. // ClassWizard generated virtual function overrides
  108. //{{AFX_VIRTUAL(CAboutDlg)
  109. protected:
  110. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  111. //}}AFX_VIRTUAL
  112. // Implementation
  113. protected:
  114. //{{AFX_MSG(CAboutDlg)
  115. // No message handlers
  116. //}}AFX_MSG
  117. DECLARE_MESSAGE_MAP()
  118. };
  119. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  120. {
  121. //{{AFX_DATA_INIT(CAboutDlg)
  122. //}}AFX_DATA_INIT
  123. }
  124. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  125. {
  126. CDialog::DoDataExchange(pDX);
  127. //{{AFX_DATA_MAP(CAboutDlg)
  128. //}}AFX_DATA_MAP
  129. }
  130. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  131. //{{AFX_MSG_MAP(CAboutDlg)
  132. // No message handlers
  133. //}}AFX_MSG_MAP
  134. END_MESSAGE_MAP()
  135. // App command to run the dialog
  136. void CDrawApp::OnAppAbout()
  137. {
  138. CAboutDlg aboutDlg;
  139. aboutDlg.DoModal();
  140. }
  141. /////////////////////////////////////////////////////////////////////////////
  142. // CDrawApp message handlers