OutputWnd.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. // 这段 MFC 示例源代码演示如何使用 MFC Microsoft Office Fluent 用户界面
  2. // ("Fluent UI"),该示例仅作为参考资料提供,
  3. // 用以补充《Microsoft 基础类参考》和
  4. // MFC C++ 库软件随附的相关电子文档。
  5. // 复制、使用或分发 Fluent UI 的许可条款是单独提供的。
  6. // 若要了解有关 Fluent UI 许可计划的详细信息,请访问
  7. // http://msdn.microsoft.com/officeui。
  8. //
  9. // 版权所有 (C) Microsoft Corporation
  10. // 保留所有权利。
  11. #include "stdafx.h"
  12. #include "OutputWnd.h"
  13. #include "Resource.h"
  14. #include "MainFrm.h"
  15. #define Max(a,b) (((a) > (b)) ? (a) : (b))
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // COutputBar
  23. COutputWnd::COutputWnd()
  24. {
  25. }
  26. COutputWnd::~COutputWnd()
  27. {
  28. }
  29. BEGIN_MESSAGE_MAP(COutputWnd, CDockablePane)
  30. ON_WM_CREATE()
  31. ON_WM_SIZE()
  32. END_MESSAGE_MAP()
  33. int COutputWnd::OnCreate(LPCREATESTRUCT lpCreateStruct)
  34. {
  35. if (CDockablePane::OnCreate(lpCreateStruct) == -1)
  36. return -1;
  37. m_Font.CreateStockObject(DEFAULT_GUI_FONT);
  38. CRect rectDummy;
  39. rectDummy.SetRectEmpty();
  40. // 创建选项卡窗口:
  41. if (!m_wndTabs.Create(CMFCTabCtrl::STYLE_FLAT, rectDummy, this, 1))
  42. {
  43. TRACE0("未能创建输出选项卡窗口\n");
  44. return -1; // 未能创建
  45. }
  46. // 创建输出窗格:
  47. const DWORD dwStyle = LBS_NOINTEGRALHEIGHT | WS_CHILD | WS_VISIBLE | WS_HSCROLL | WS_VSCROLL;
  48. if (!m_wndOutputBuild.Create(dwStyle, rectDummy, &m_wndTabs, 2) ||
  49. !m_wndOutputDebug.Create(dwStyle, rectDummy, &m_wndTabs, 3) ||
  50. !m_wndOutputFind.Create(dwStyle, rectDummy, &m_wndTabs, 4))
  51. {
  52. TRACE0("未能创建输出窗口\n");
  53. return -1; // 未能创建
  54. }
  55. m_wndOutputBuild.SetFont(&m_Font);
  56. m_wndOutputDebug.SetFont(&m_Font);
  57. m_wndOutputFind.SetFont(&m_Font);
  58. CString strTabName;
  59. BOOL bNameValid;
  60. // 将列表窗口附加到选项卡:
  61. bNameValid = strTabName.LoadString(IDS_BUILD_TAB);
  62. ASSERT(bNameValid);
  63. m_wndTabs.AddTab(&m_wndOutputBuild, strTabName, (UINT)0);
  64. bNameValid = strTabName.LoadString(IDS_DEBUG_TAB);
  65. ASSERT(bNameValid);
  66. m_wndTabs.AddTab(&m_wndOutputDebug, strTabName, (UINT)1);
  67. bNameValid = strTabName.LoadString(IDS_FIND_TAB);
  68. ASSERT(bNameValid);
  69. m_wndTabs.AddTab(&m_wndOutputFind, strTabName, (UINT)2);
  70. // 使用一些虚拟文本填写输出选项卡(无需复杂数据)
  71. FillBuildWindow();
  72. FillDebugWindow();
  73. FillFindWindow();
  74. return 0;
  75. }
  76. void COutputWnd::OnSize(UINT nType, int cx, int cy)
  77. {
  78. CDockablePane::OnSize(nType, cx, cy);
  79. // 选项卡控件应覆盖整个工作区:
  80. m_wndTabs.SetWindowPos (NULL, -1, -1, cx, cy, SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER);
  81. }
  82. void COutputWnd::AdjustHorzScroll(CListBox& wndListBox)
  83. {
  84. CClientDC dc(this);
  85. CFont* pOldFont = dc.SelectObject(&m_Font);
  86. int cxExtentMax = 0;
  87. for (int i = 0; i < wndListBox.GetCount(); i ++)
  88. {
  89. CString strItem;
  90. wndListBox.GetText(i, strItem);
  91. cxExtentMax = Max(cxExtentMax, dc.GetTextExtent(strItem).cx);
  92. }
  93. wndListBox.SetHorizontalExtent(cxExtentMax);
  94. dc.SelectObject(pOldFont);
  95. }
  96. void COutputWnd::FillBuildWindow()
  97. {
  98. m_wndOutputBuild.AddString(_T("生成输出正显示在此处。"));
  99. m_wndOutputBuild.AddString(_T("输出正显示在列表视图的行中"));
  100. m_wndOutputBuild.AddString(_T("但您可以根据需要更改其显示方式..."));
  101. }
  102. void COutputWnd::FillDebugWindow()
  103. {
  104. m_wndOutputDebug.AddString(_T("调试输出正显示在此处。"));
  105. m_wndOutputDebug.AddString(_T("输出正显示在列表视图的行中"));
  106. m_wndOutputDebug.AddString(_T("但您可以根据需要更改其显示方式..."));
  107. }
  108. void COutputWnd::FillFindWindow()
  109. {
  110. m_wndOutputFind.AddString(_T("查找输出正显示在此处。"));
  111. m_wndOutputFind.AddString(_T("输出正显示在列表视图的行中"));
  112. m_wndOutputFind.AddString(_T("但您可以根据需要更改其显示方式..."));
  113. }
  114. /////////////////////////////////////////////////////////////////////////////
  115. // COutputList1
  116. COutputList::COutputList()
  117. {
  118. }
  119. COutputList::~COutputList()
  120. {
  121. }
  122. BEGIN_MESSAGE_MAP(COutputList, CListBox)
  123. ON_WM_CONTEXTMENU()
  124. ON_COMMAND(ID_EDIT_COPY, OnEditCopy)
  125. ON_COMMAND(ID_EDIT_CLEAR, OnEditClear)
  126. ON_COMMAND(ID_VIEW_OUTPUTWND, OnViewOutput)
  127. ON_WM_WINDOWPOSCHANGING()
  128. END_MESSAGE_MAP()
  129. /////////////////////////////////////////////////////////////////////////////
  130. // COutputList 消息处理程序
  131. void COutputList::OnContextMenu(CWnd* /*pWnd*/, CPoint point)
  132. {
  133. CMenu menu;
  134. menu.LoadMenu(IDR_OUTPUT_POPUP);
  135. CMenu* pSumMenu = menu.GetSubMenu(0);
  136. if (AfxGetMainWnd()->IsKindOf(RUNTIME_CLASS(CMDIFrameWndEx)))
  137. {
  138. CMFCPopupMenu* pPopupMenu = new CMFCPopupMenu;
  139. if (!pPopupMenu->Create(this, point.x, point.y, (HMENU)pSumMenu->m_hMenu, FALSE, TRUE))
  140. return;
  141. ((CMDIFrameWndEx*)AfxGetMainWnd())->OnShowPopupMenu(pPopupMenu);
  142. UpdateDialogControls(this, FALSE);
  143. }
  144. SetFocus();
  145. }
  146. void COutputList::OnEditCopy()
  147. {
  148. MessageBox(_T("复制输出"));
  149. }
  150. void COutputList::OnEditClear()
  151. {
  152. MessageBox(_T("清除输出"));
  153. }
  154. void COutputList::OnViewOutput()
  155. {
  156. CDockablePane* pParentBar = DYNAMIC_DOWNCAST(CDockablePane, GetOwner());
  157. CMDIFrameWndEx* pMainFrame = DYNAMIC_DOWNCAST(CMDIFrameWndEx, GetTopLevelFrame());
  158. if (pMainFrame != NULL && pParentBar != NULL)
  159. {
  160. pMainFrame->SetFocus();
  161. pMainFrame->ShowPane(pParentBar, FALSE, FALSE, FALSE);
  162. pMainFrame->RecalcLayout();
  163. }
  164. }