ClassView.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // 这段 MFC 示例源代码演示如何使用 MFC Microsoft Office Fluent 用户界面
  2. // (“Fluent UI”)。该示例仅供参考,
  3. // 用以补充《Microsoft 基础类参考》和
  4. // MFC C++ 库软件随附的相关电子文档。
  5. // 复制、使用或分发 Fluent UI 的许可条款是单独提供的。
  6. // 若要了解有关 Fluent UI 许可计划的详细信息,请访问
  7. // https://go.microsoft.com/fwlink/?LinkId=238214.
  8. //
  9. // 版权所有(C) Microsoft Corporation
  10. // 保留所有权利。
  11. #pragma once
  12. #include "ViewTree.h"
  13. class CClassToolBar : public CMFCToolBar
  14. {
  15. virtual void OnUpdateCmdUI(CFrameWnd* /*pTarget*/, BOOL bDisableIfNoHndler)
  16. {
  17. CMFCToolBar::OnUpdateCmdUI((CFrameWnd*) GetOwner(), bDisableIfNoHndler);
  18. }
  19. virtual BOOL AllowShowOnList() const { return FALSE; }
  20. };
  21. class CClassView : public CDockablePane
  22. {
  23. public:
  24. CClassView() noexcept;
  25. virtual ~CClassView();
  26. void AdjustLayout();
  27. void OnChangeVisualStyle();
  28. protected:
  29. CClassToolBar m_wndToolBar;
  30. CViewTree m_wndClassView;
  31. CImageList m_ClassViewImages;
  32. UINT m_nCurrSort;
  33. void FillClassView();
  34. // 重写
  35. public:
  36. virtual BOOL PreTranslateMessage(MSG* pMsg);
  37. protected:
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnSize(UINT nType, int cx, int cy);
  40. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  41. afx_msg void OnClassAddMemberFunction();
  42. afx_msg void OnClassAddMemberVariable();
  43. afx_msg void OnClassDefinition();
  44. afx_msg void OnClassProperties();
  45. afx_msg void OnNewFolder();
  46. afx_msg void OnPaint();
  47. afx_msg void OnSetFocus(CWnd* pOldWnd);
  48. afx_msg LRESULT OnChangeActiveTab(WPARAM, LPARAM);
  49. afx_msg void OnSort(UINT id);
  50. afx_msg void OnUpdateSort(CCmdUI* pCmdUI);
  51. DECLARE_MESSAGE_MAP()
  52. };