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

工具条

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "DialogbarDemo.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. /////////////////////////////////////////////////////////////////////////////
  22. // CMainFrame construction/destruction
  23. CMainFrame::CMainFrame()
  24. {
  25. // TODO: add member initialization code here
  26. }
  27. CMainFrame::~CMainFrame()
  28. {
  29. }
  30. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  31. {
  32. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  33. return -1;
  34. if (!m_wndToolBar.Create(this) ||
  35. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  36. {
  37. TRACE0("Failed to create toolbarn");
  38. return -1;      // fail to create
  39. }
  40. // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  41. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  42. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  43. // TODO: Delete these three lines if you don't want the toolbar to
  44. //  be dockable
  45. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  46. EnableDocking(CBRS_ALIGN_ANY);
  47. DockControlBar(&m_wndToolBar);
  48. if ( ! m_wndMyDialogBar.Create(this, IDD_DIALOGBAR, CBRS_TOP , IDD_DIALOGBAR))
  49. {
  50. TRACE0("Failed to create dialog bar from CMyDialogBar classn");
  51. return -1;      // fail to create
  52. }
  53. m_wndMyDialogBar.SetWindowText("This is docking dialog bar");
  54.   m_wndMyDialogBar.EnableDocking(CBRS_ALIGN_TOP);
  55. DockControlBar(&m_wndMyDialogBar);
  56. return 0;
  57. }
  58. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  59. {
  60. // TODO: Modify the Window class or styles here by modifying
  61. //  the CREATESTRUCT cs
  62. return CMDIFrameWnd::PreCreateWindow(cs);
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CMainFrame diagnostics
  66. #ifdef _DEBUG
  67. void CMainFrame::AssertValid() const
  68. {
  69. CMDIFrameWnd::AssertValid();
  70. }
  71. void CMainFrame::Dump(CDumpContext& dc) const
  72. {
  73. CMDIFrameWnd::Dump(dc);
  74. }
  75. #endif //_DEBUG
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CMainFrame message handlers