#pragma once class CClassToolBar : public CMFCToolBar { virtual void OnUpdateCmdUI(CFrameWnd* /*pTarget*/, BOOL bDisableIfNoHndler) { CMFCToolBar::OnUpdateCmdUI((CFrameWnd*) GetOwner(), bDisableIfNoHndler); } virtual BOOL AllowShowOnList() const { return FALSE; } }; class CClassView : public CDockablePane { public: CClassView(); virtual ~CClassView(); void SetPreviewProp(CMFCPropertyGridProperty* pProp); void RefreshPreview(); void AdjustLayout(); void OnChangeVisualStyle(); protected: CClassToolBar m_wndToolBar; CImageList m_ClassViewImages; UINT m_nCurrSort; CEdit m_wndEdit; CString m_strOriginalPreview; CMFCPropertyGridProperty* m_PreviewProp; HACCEL m_hAccel; CFont m_fntEdit; // Overrides public: virtual BOOL PreTranslateMessage(MSG* pMsg); protected: afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnContextMenu(CWnd* pWnd, CPoint point); afx_msg void OnNewFolder(); afx_msg void OnPaint(); afx_msg void OnSetFocus(CWnd* pOldWnd); afx_msg LRESULT OnChangeActiveTab(WPARAM, LPARAM); afx_msg void OnChangeEdit(); DECLARE_MESSAGE_MAP() public: afx_msg void OnEditSelectAll(); afx_msg void OnEditCut(); afx_msg void OnEditPaste(); afx_msg void OnEditUndo(); afx_msg void OnEditCopy(); };