MainFrm.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:4k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "MyStatusBar.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. //加入对时间区域进行界面维护的宏申明
  16. ON_UPDATE_COMMAND_UI(ID_INDICATOR_DATE,OnUpdateDate)
  17. ON_WM_CREATE()
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. static UINT indicators[] =
  21. {
  22. ID_SEPARATOR,           // status line indicator
  23. ID_INDICATOR_CAPS,
  24. ID_INDICATOR_NUM,
  25. ID_INDICATOR_SCRL,
  26. };
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMainFrame construction/destruction
  29. CMainFrame::CMainFrame()
  30. {
  31. // TODO: add member initialization code here
  32. }
  33. CMainFrame::~CMainFrame()
  34. {
  35. }
  36. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  37. {
  38. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  39. return -1;
  40. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  41. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  42. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  43. {
  44. TRACE0("Failed to create toolbarn");
  45. return -1;      // fail to create
  46. }
  47. if (!m_wndStatusBar.Create(this) ||
  48. !m_wndStatusBar.SetIndicators(indicators,
  49. sizeof(indicators)/sizeof(UINT)))
  50. {
  51. TRACE0("Failed to create status barn");
  52. return -1;      // fail to create
  53. }
  54. // TODO: Delete these three lines if you don't want the toolbar to
  55. //  be dockable
  56. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  57. EnableDocking(CBRS_ALIGN_ANY);
  58. DockControlBar(&m_wndToolBar);
  59. //在状态栏中添加新的区域用以显示时间
  60. //得到目前状态栏共有多少个区域
  61. int nOrigSize = sizeof(indicators) / sizeof(UINT);
  62. //构建对话框ID标识数组
  63. UINT* pIndicators = new UINT[nOrigSize + 1];
  64. memcpy(pIndicators, indicators, sizeof(indicators));
  65. IndexOfTimeZone = nOrigSize++;
  66. //大状态栏的右侧部份设置成时间区域
  67. pIndicators[IndexOfTimeZone] = ID_INDICATOR_DATE;
  68. m_wndStatusBar.SetIndicators(pIndicators, nOrigSize);
  69. delete[] pIndicators;
  70. }
  71. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  72. {
  73. if( !CFrameWnd::PreCreateWindow(cs) )
  74. return FALSE;
  75. // TODO: Modify the Window class or styles here by modifying
  76. //  the CREATESTRUCT cs
  77. return TRUE;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CMainFrame diagnostics
  81. #ifdef _DEBUG
  82. void CMainFrame::AssertValid() const
  83. {
  84. CFrameWnd::AssertValid();
  85. }
  86. void CMainFrame::Dump(CDumpContext& dc) const
  87. {
  88. CFrameWnd::Dump(dc);
  89. }
  90. #endif //_DEBUG
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMainFrame message handlers
  93. void CMainFrame::OnUpdateDate(CCmdUI *pCmdUI)
  94. {
  95. //得到系统当前时间
  96. CTime time = CTime::GetCurrentTime();
  97. CString strDate = time.Format(_T("%A, %B %d, %y "));
  98. // 根据时间字
  99. //符串的长度计算它在状态栏输出时所需要的长度
  100. CSize size;
  101. HGDIOBJ hOldFont = NULL;
  102. //得到当前状态栏字体
  103. HFONT hFont = (HFONT)m_wndStatusBar.SendMessage(WM_GETFONT);
  104. CClientDC dc(NULL);
  105. if (hFont != NULL) 
  106. hOldFont = dc.SelectObject(hFont);
  107. //得到当前文本所需要的显示宽度
  108. size = dc.GetTextExtent(strDate);
  109. if (hOldFont != NULL) 
  110. dc.SelectObject(hOldFont);
  111. // 修改状态栏
  112. //设置时间区域的宽度size.cx
  113. m_wndStatusBar.SetPaneInfo(IndexOfTimeZone, ID_INDICATOR_DATE,0, size.cx);
  114. //设定时间区域的标题
  115. pCmdUI->SetText(strDate);
  116. //启用时间区域
  117. pCmdUI->Enable(TRUE);
  118. }