FileView.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 CFileViewToolBar : 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 CFileView : public CDockablePane
  22. {
  23. // 构造
  24. public:
  25. CFileView() noexcept;
  26. void AdjustLayout();
  27. void OnChangeVisualStyle();
  28. // 特性
  29. protected:
  30. CViewTree m_wndFileView;
  31. CImageList m_FileViewImages;
  32. CFileViewToolBar m_wndToolBar;
  33. protected:
  34. void FillFileView();
  35. // 实现
  36. public:
  37. virtual ~CFileView();
  38. protected:
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. afx_msg void OnSize(UINT nType, int cx, int cy);
  41. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  42. afx_msg void OnProperties();
  43. afx_msg void OnFileOpen();
  44. afx_msg void OnFileOpenWith();
  45. afx_msg void OnDummyCompile();
  46. afx_msg void OnEditCut();
  47. afx_msg void OnEditCopy();
  48. afx_msg void OnEditClear();
  49. afx_msg void OnPaint();
  50. afx_msg void OnSetFocus(CWnd* pOldWnd);
  51. DECLARE_MESSAGE_MAP()
  52. };