MainFrm.cpp
上传用户:loufeng
上传日期:2007-01-02
资源大小:29k
文件大小:4k
源码类别:

工具条

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "DemoTBarD.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_DYNAMIC(CMainFrame, CMDIFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  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 (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar1.Create(this) ||
  42. !m_wndToolBar1.LoadToolBar(IDR_MAINFRAME))
  43. {
  44. TRACE0("Failed to create toolbarn");
  45. return -1;      // fail to create
  46. }
  47. m_wndToolBar1.ModifyStyle(0, TBSTYLE_FLAT);
  48. if (!m_wndToolBar2.Create(this) ||
  49. !m_wndToolBar2.LoadToolBar(IDR_WINDOW))
  50. {
  51. TRACE0("Failed to create toolbarn");
  52. return -1;      // fail to create
  53. }
  54. m_wndToolBar2.ModifyStyle(0, TBSTYLE_FLAT);
  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_wndToolBar1.EnableDocking(CBRS_ALIGN_ANY);
  65. m_wndToolBar2.EnableDocking(CBRS_ALIGN_ANY);
  66. EnableDocking(CBRS_ALIGN_ANY);
  67. DockControlBar(&m_wndToolBar1);
  68. DockControlBarLeftOf(&m_wndToolBar2,&m_wndToolBar1);
  69. return 0;
  70. }
  71. void CMainFrame::DockControlBarLeftOf(CToolBar* Bar, CToolBar* LeftOf)
  72. {
  73. CRect rect;
  74. DWORD dw;
  75. UINT n;
  76. // get MFC to adjust the dimensions of all docked ToolBars
  77. // so that GetWindowRect will be accurate
  78. RecalcLayout(TRUE);
  79. LeftOf->GetWindowRect(&rect);
  80. rect.OffsetRect(1,0);
  81. dw=LeftOf->GetBarStyle();
  82. n = 0;
  83. n = (dw&CBRS_ALIGN_TOP) ? AFX_IDW_DOCKBAR_TOP : n;
  84. n = (dw&CBRS_ALIGN_BOTTOM && n==0) ? AFX_IDW_DOCKBAR_BOTTOM : n;
  85. n = (dw&CBRS_ALIGN_LEFT && n==0) ? AFX_IDW_DOCKBAR_LEFT : n;
  86. n = (dw&CBRS_ALIGN_RIGHT && n==0) ? AFX_IDW_DOCKBAR_RIGHT : n;
  87. // When we take the default parameters on rect, DockControlBar will dock
  88. // each Toolbar on a seperate line. By calculating a rectangle, we
  89. // are simulating a Toolbar being dragged to that location and docked.
  90. DockControlBar(Bar,n,&rect);
  91. }
  92. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  93. {
  94. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  95. return FALSE;
  96. // TODO: Modify the Window class or styles here by modifying
  97. //  the CREATESTRUCT cs
  98. return TRUE;
  99. }
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CMainFrame diagnostics
  102. #ifdef _DEBUG
  103. void CMainFrame::AssertValid() const
  104. {
  105. CMDIFrameWnd::AssertValid();
  106. }
  107. void CMainFrame::Dump(CDumpContext& dc) const
  108. {
  109. CMDIFrameWnd::Dump(dc);
  110. }
  111. #endif //_DEBUG
  112. /////////////////////////////////////////////////////////////////////////////
  113. // CMainFrame message handlers