MainFrm.cpp
上传用户:yafeite800
上传日期:2020-09-17
资源大小:36k
文件大小:3k
源码类别:

状态条

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "UseStatus.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. ON_WM_CREATE()
  17. ON_UPDATE_COMMAND_UI(ID_LEFT,OnUpdateLeft)
  18. ON_UPDATE_COMMAND_UI(ID_RIGHT,OnUpdateRight)
  19. ON_COMMAND(ID_VIEW_STATUS_BAR, OnViewStatusBar)
  20. ON_UPDATE_COMMAND_UI(ID_VIEW_STATUS_BAR, OnUpdateViewStatusBar)
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. static UINT indicators[] =
  24. {
  25. ID_SEPARATOR,           // status line indicator
  26. ID_INDICATOR_CAPS,
  27. ID_LEFT,
  28. ID_RIGHT,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. // TODO: add member initialization code here
  35. }
  36. CMainFrame::~CMainFrame()
  37. {
  38. }
  39. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  40. {
  41. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  42. return -1;
  43. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  44. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  45. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  46. {
  47. TRACE0("Failed to create toolbarn");
  48. return -1;      // fail to create
  49. }
  50. if (!m_wndStatusBar.Create(this,
  51. WS_CHILD|WS_VISIBLE|CBRS_BOTTOM,ID_STATUSBAR) ||
  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: 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. return 0;
  64. }
  65. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  66. {
  67. if( !CFrameWnd::PreCreateWindow(cs) )
  68. return FALSE;
  69. // TODO: Modify the Window class or styles here by modifying
  70. //  the CREATESTRUCT cs
  71. return TRUE;
  72. }
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CMainFrame diagnostics
  75. #ifdef _DEBUG
  76. void CMainFrame::AssertValid() const
  77. {
  78. CFrameWnd::AssertValid();
  79. }
  80. void CMainFrame::Dump(CDumpContext& dc) const
  81. {
  82. CFrameWnd::Dump(dc);
  83. }
  84. void CMainFrame::OnUpdateLeft(CCmdUI * pCmdUI)
  85. {
  86. pCmdUI->Enable(::GetKeyState(VK_LBUTTON)<0);
  87. }
  88. void CMainFrame::OnUpdateRight(CCmdUI * pCmdUI)
  89. {
  90. pCmdUI->Enable(::GetKeyState(VK_RBUTTON)<0);
  91. }
  92. #endif //_DEBUG
  93. /////////////////////////////////////////////////////////////////////////////
  94. // CMainFrame message handlers
  95. void CMainFrame::OnViewStatusBar() 
  96. {
  97. m_wndStatusBar.ShowWindow((m_wndStatusBar.GetStyle()&WS_VISIBLE)==0);
  98. RecalcLayout();
  99. }
  100. void CMainFrame::OnUpdateViewStatusBar(CCmdUI* pCmdUI) 
  101. {
  102. pCmdUI->SetCheck((m_wndStatusBar.GetStyle()&WS_VISIBLE)!=0);
  103. }