MainFrm.cpp
上传用户:oybseng
上传日期:2015-04-27
资源大小:7831k
文件大小:4k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "QGIS.h"
  5. #include "MainFrm.h"
  6. #include "QGISDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. extern CQMapObj * g_pCurMap;
  13. /////////////////////////////////////////////////`////////////////////////////
  14. // CMainFrame
  15. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  16. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  17. //{{AFX_MSG_MAP(CMainFrame)
  18. ON_WM_CREATE()
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. static UINT indicators[] =
  22. {
  23. ID_SEPARATOR,           // status line indicator
  24. ID_SEPARATOR,           // 用于显示鼠标的坐标值 
  25. ID_SEPARATOR,           // 用于显示地图比例尺
  26. ID_INDICATOR_CAPS,
  27. ID_INDICATOR_NUM,
  28. ID_INDICATOR_SCRL,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. // TODO: add member initialization code here
  35. }
  36. CMainFrame::~CMainFrame()
  37. {
  38. }
  39. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  40. {
  41. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  42. return -1;
  43. CRect rectBound(0,0,0,0);
  44. if (!m_wndToolBar.CreateEx(this,TBSTYLE_FLAT,
  45. WS_CHILD | WS_VISIBLE | CBRS_SIZE_DYNAMIC |
  46. CBRS_TOP | CBRS_TOOLTIPS | CBRS_FLYBY|CBRS_GRIPPER,
  47. rectBound,IDR_MAINFRAME) ||
  48. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  49. {
  50. TRACE0("Failed to create the mainframe toolbarn");
  51. return -1;      // fail to create
  52. }
  53. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  54. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  55. if (!m_wndStatusBar.Create(this) ||
  56. !m_wndStatusBar.SetIndicators(indicators,
  57.   sizeof(indicators)/sizeof(UINT)))
  58. {
  59. TRACE0("Failed to create status barn");
  60. return -1;      // fail to create
  61. }
  62. // TODO: Delete these three lines if you don't want the toolbar to
  63. //  be dockable
  64. m_wndToolBar.SetWindowText("标准工具栏");
  65. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  66. EnableDocking(CBRS_ALIGN_ANY);
  67. DockControlBar(&m_wndToolBar);
  68. if (!m_MyDrawToolBar.CreateEx(this,TBSTYLE_FLAT,
  69. WS_CHILD | WS_VISIBLE | CBRS_SIZE_DYNAMIC |
  70. CBRS_TOP | CBRS_TOOLTIPS | CBRS_FLYBY|CBRS_GRIPPER,
  71. rectBound, IDR_TOOLBAR_DRAW_QGIS) ||
  72. !m_MyDrawToolBar.LoadToolBar(IDR_TOOLBAR_DRAW_QGIS))
  73. {
  74. TRACE0("Failed to create the m_wndCadModifyToolBar toolbar.n");
  75. return -1;      // fail to create
  76. }
  77. m_MyDrawToolBar.SetWindowText(_T("修改工具"));
  78. m_MyDrawToolBar.EnableDocking(CBRS_ALIGN_ANY);
  79. EnableDocking(CBRS_ALIGN_ANY);
  80. DockControlBar(&m_MyDrawToolBar);
  81. if (!m_MyEditToolBar.CreateEx(this,TBSTYLE_FLAT,
  82. WS_CHILD | WS_VISIBLE | CBRS_SIZE_DYNAMIC |
  83. CBRS_TOP | CBRS_TOOLTIPS | CBRS_FLYBY|CBRS_GRIPPER,
  84. rectBound, IDR_TOOLBAR_EDIT_QGIS) ||
  85. !m_MyEditToolBar.LoadToolBar(IDR_TOOLBAR_EDIT_QGIS))
  86. {
  87. TRACE0("Failed to create the m_wndCadModifyToolBar toolbar.n");
  88. return -1;      // fail to create
  89. }
  90. m_MyEditToolBar.SetWindowText(_T("修改工具"));
  91. m_MyEditToolBar.EnableDocking(CBRS_ALIGN_ANY);
  92. EnableDocking(CBRS_ALIGN_ANY);
  93. DockControlBar(&m_MyEditToolBar);
  94. return 0;
  95. }
  96. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  97. {
  98. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  99. return FALSE;
  100. // TODO: Modify the Window class or styles here by modifying
  101. //  the CREATESTRUCT cs
  102. return TRUE;
  103. }
  104. /////////////////////////////////////////////////////////////////////////////
  105. // CMainFrame diagnostics
  106. #ifdef _DEBUG
  107. void CMainFrame::AssertValid() const
  108. {
  109. CMDIFrameWnd::AssertValid();
  110. }
  111. void CMainFrame::Dump(CDumpContext& dc) const
  112. {
  113. CMDIFrameWnd::Dump(dc);
  114. }
  115. #endif //_DEBUG
  116. /////////////////////////////////////////////////////////////////////////////
  117. // CMainFrame message handlers
  118. void CMainFrame::OnFileNew()
  119. {
  120. }