MainFrm.cpp
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:4k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "DrawSys.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_wndDrawToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  49. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  50. !m_wndDrawToolBar.LoadToolBar(IDR_TOOLBAR_DRAW))
  51. {
  52. TRACE0("Failed to create Draw toolbarn");
  53. return -1;      // fail to create
  54. }
  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.EnableDocking(CBRS_ALIGN_ANY);
  65. m_wndDrawToolBar.EnableDocking(CBRS_ALIGN_ANY);
  66. EnableDocking(CBRS_ALIGN_ANY);
  67. DockControlBar(&m_wndToolBar);
  68. DockControlBar(&m_wndDrawToolBar);
  69. DockControlBarLeftOf(&m_wndDrawToolBar, &m_wndToolBar);
  70. if(!m_wndLeftBar.Create(this, IDD_DIALOGBAR_LEFT, CBRS_LEFT|CBRS_TOOLTIPS, IDD_DIALOGBAR_LEFT))
  71. {
  72. TRACE0("Failed to create left barn");
  73. return -1;      // fail to create
  74. }
  75. if(!m_wndShapeTree.CreateEx(WS_EX_CLIENTEDGE, WC_TREEVIEW, NULL,
  76. WS_VISIBLE|WS_CHILD|TVS_HASBUTTONS|TVS_LINESATROOT|TVS_HASLINES|TVS_HASBUTTONS|TVS_DISABLEDRAGDROP|TVS_SHOWSELALWAYS,
  77. CRect(0, 0, 0, 0), &m_wndLeftBar, ID_SHAPETREE_IN_LEFTBAR))
  78. {
  79. TRACE0("Failed to create treen");
  80. return -1;      // fail to create
  81. }
  82. return 0;
  83. }
  84. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  85. {
  86. if( !CFrameWnd::PreCreateWindow(cs) )
  87. return FALSE;
  88. // TODO: Modify the Window class or styles here by modifying
  89. //  the CREATESTRUCT cs
  90. return TRUE;
  91. }
  92. /////////////////////////////////////////////////////////////////////////////
  93. // CMainFrame diagnostics
  94. #ifdef _DEBUG
  95. void CMainFrame::AssertValid() const
  96. {
  97. CFrameWnd::AssertValid();
  98. }
  99. void CMainFrame::Dump(CDumpContext& dc) const
  100. {
  101. CFrameWnd::Dump(dc);
  102. }
  103. #endif //_DEBUG
  104. /////////////////////////////////////////////////////////////////////////////
  105. // CMainFrame message handlers
  106. void CMainFrame::DockControlBarLeftOf(CToolBar* leftBar, CToolBar* rightBar)
  107. {
  108. // 设置工具条并列停靠在同一条边上 
  109. CRect rect; // 矩形区域定义 
  110. DWORD dw; 
  111. UINT n = 0; 
  112. RecalcLayout(); //重新显示 
  113. rightBar->GetWindowRect(&rect);
  114. rect.OffsetRect(1, 0);
  115. dw=rightBar->GetBarStyle(); 
  116. n=(dw&CBRS_ALIGN_TOP) ? AFX_IDW_DOCKBAR_TOP : n; 
  117. n=(dw&CBRS_ALIGN_BOTTOM && n==0) ? AFX_IDW_DOCKBAR_BOTTOM : n;
  118. n=(dw&CBRS_ALIGN_LEFT && n==0) ? AFX_IDW_DOCKBAR_LEFT : n;
  119. n=(dw&CBRS_ALIGN_RIGHT && n==0) ? AFX_IDW_DOCKBAR_RIGHT : n;
  120. DockControlBar(leftBar, n, &rect);
  121. }