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

GIS编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. //#include "stdAfx.h"
  4. #include "3D0214.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  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_INDICATOR_CAPS,
  25. ID_INDICATOR_NUM,
  26. ID_INDICATOR_SCRL,
  27. };
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame construction/destruction
  30. CMainFrame::CMainFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  38. {
  39. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  42. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  43. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  44. {
  45. TRACE0("Failed to create toolbarn");
  46. return -1;      // fail to create
  47. }
  48. if (!m_wndStatusBar.Create(this) ||
  49. !m_wndStatusBar.SetIndicators(indicators,
  50.   sizeof(indicators)/sizeof(UINT)))
  51. {
  52. TRACE0("Failed to create status barn");
  53. return -1;      // fail to create
  54. }
  55. m_wndStatusBar.SetPaneInfo(1,ID_INDICATOR_DEMO,CBRS_GRIPPER,230);
  56. m_wndStatusBar.SetPaneInfo(2,ID_INDICATOR_AUTHOR,CBRS_GRIPPER,80);
  57. m_wndStatusBar.UpdateWindow();
  58. // TODO: Delete these three lines if you don't want the toolbar to
  59. //  be dockable
  60. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  61. EnableDocking(CBRS_ALIGN_ANY);
  62. DockControlBar(&m_wndToolBar);
  63. if (!m_wndMyToolBar1.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  64. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  65. !m_wndMyToolBar1.LoadToolBar(IDR_TOOLBAR1))
  66. {
  67. TRACE0("Failed to create toolbarn");
  68. return -1;      // fail to create
  69. }
  70. m_wndMyToolBar1.EnableDocking(CBRS_ALIGN_ANY);
  71. EnableDocking(CBRS_ALIGN_ANY);
  72. DockControlBar(&m_wndMyToolBar1);
  73. //设置窗口标题
  74. m_wndMyToolBar1.SetWindowText(_T("Tools"));
  75.     //将ToolControl 加入ToolBar
  76.     #define SNAP_WIDTH 1000 //the width   
  77.     int index = 0;
  78. RECT rect;
  79.     while (m_wndMyToolBar1.GetItemID(index) !=ID_PLACEHOLD) index++;
  80.     m_wndMyToolBar1.SetButtonInfo(index, ID_PLACEHOLD, TBBS_SEPARATOR,SNAP_WIDTH);
  81.     //找出放toolBarControl 的图标的位置
  82.     m_wndMyToolBar1.GetItemRect(index, &rect);//获取RECT指针
  83.     if (!m_tbr.Create("", WS_CHILD|WS_VISIBLE|CBS_AUTOHSCROLL| 
  84.                                        CBS_DROPDOWNLIST|CBS_HASSTRINGS,
  85.                                         rect, &m_wndMyToolBar1,NULL,FALSE,NULL))
  86. {
  87.         AfxMessageBox("Failed to create ToolBarControln");
  88.         return FALSE;
  89.     }
  90.     m_tbr.SetToolTips(true); 
  91.     m_tbr.ShowWindow(SW_SHOW);
  92. //生成活动Bar1
  93.     if (!m_wndMyBar1.Create(_T("Table of Contents"),this,CSize(200,400),TRUE,123)) 
  94. { TRACE0("Failed to create mybarn"); return -1; } 
  95.     //设置样式
  96.     m_wndMyBar1.SetBarStyle(m_wndMyBar1.GetBarStyle()|CBRS_TOOLTIPS|CBRS_FLYBY|CBRS_SIZE_DYNAMIC); 
  97.   //设置停靠
  98.     m_wndMyBar1.EnableDocking(CBRS_ALIGN_LEFT);
  99.   DockControlBar(&m_wndMyBar1, AFX_IDW_DOCKBAR_LEFT);///停靠在右边
  100. //生成TABCTRL
  101. m_TabCtrl.Create(TCS_DOWN|WS_CHILD|WS_VISIBLE,CRect(0,0,200,400),&m_wndMyBar1,125);
  102. if( m_tocdlg.Create(IDD_TOCDLG,&m_TabCtrl))
  103. m_TabCtrl.AddPage(&m_tocdlg,"Display");
  104. m_tocdlg.ShowWindow(SW_SHOW);       //显示出来
  105. m_TabCtrl.UpdateWindow(); ///更新TabControl
  106. return 0;
  107. }
  108. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  109. {
  110. if( !CFrameWnd::PreCreateWindow(cs) )
  111. return FALSE;
  112. // TODO: Modify the Window class or styles here by modifying
  113. //  the CREATESTRUCT cs
  114. cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE
  115. | WS_THICKFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_MAXIMIZE;
  116.     // center window at 90% of full screen
  117. int xSize = ::GetSystemMetrics (SM_CXSCREEN);
  118. int ySize = ::GetSystemMetrics (SM_CYSCREEN);
  119. cs.cx = xSize*8/10;
  120. cs.cy = ySize*8/10;
  121. cs.x = (xSize-cs.cx)/2;
  122. cs.y = (ySize-cs.cy)/2;
  123. return CFrameWnd::PreCreateWindow(cs);
  124. // return TRUE;
  125. }
  126. /////////////////////////////////////////////////////////////////////////////
  127. // CMainFrame diagnostics
  128. #ifdef _DEBUG
  129. void CMainFrame::AssertValid() const
  130. {
  131. CFrameWnd::AssertValid();
  132. }
  133. void CMainFrame::Dump(CDumpContext& dc) const
  134. {
  135. CFrameWnd::Dump(dc);
  136. }
  137. #endif; //_DEBUG
  138. /////////////////////////////////////////////////////////////////////////////
  139. // CMainFrame message handlers