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

工具条

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "MDITest.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. IconMap icons[] =
  12. {
  13. { ID_FILE_OPEN, IDI_ICON2 }
  14. };
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMainFrame
  17. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  18. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  19. //{{AFX_MSG_MAP(CMainFrame)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code !
  22. ON_WM_CREATE()
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. static UINT indicators[] =
  26. {
  27. ID_SEPARATOR,           // status line indicator
  28. ID_INDICATOR_CAPS,
  29. ID_INDICATOR_NUM,
  30. ID_INDICATOR_SCRL,
  31. };
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CMainFrame construction/destruction
  34. CMainFrame::CMainFrame()
  35. {
  36. // TODO: add member initialization code here
  37. }
  38. CMainFrame::~CMainFrame()
  39. {
  40. }
  41. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  42. {
  43. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  44. return -1;
  45. if (!m_wndToolBar.Create(this) ||
  46. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  47. {
  48. TRACE0("Failed to create toolbarn");
  49. return -1;      // fail to create
  50. }
  51. if (!m_wndStatusBar.Create(this) ||
  52. !m_wndStatusBar.SetIndicators(indicators,
  53.   sizeof(indicators)/sizeof(UINT)))
  54. {
  55. TRACE0("Failed to create status barn");
  56. return -1;      // fail to create
  57. }
  58. // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  59. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  60. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  61. // TODO: Delete these three lines if you don't want the toolbar to
  62. //  be dockable
  63. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  64. EnableDocking(CBRS_ALIGN_ANY);
  65. DockControlBar(&m_wndToolBar);
  66. SetIconMap(sizeof(icons)/sizeof(IconMap),icons);
  67. return 0;
  68. }
  69. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  70. {
  71. // TODO: Modify the Window class or styles here by modifying
  72. //  the CREATESTRUCT cs
  73. return CMDIFrameWnd::PreCreateWindow(cs);
  74. }
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CMainFrame diagnostics
  77. #ifdef _DEBUG
  78. void CMainFrame::AssertValid() const
  79. {
  80. CMDIFrameWnd::AssertValid();
  81. }
  82. void CMainFrame::Dump(CDumpContext& dc) const
  83. {
  84. CMDIFrameWnd::Dump(dc);
  85. }
  86. #endif //_DEBUG
  87. /////////////////////////////////////////////////////////////////////////////
  88. // CMainFrame message handlers