From 905b0e31753a825a82e3703544ea8e106c05f3de Mon Sep 17 00:00:00 2001 From: kgv Date: Thu, 17 Aug 2017 11:43:08 +0300 Subject: [PATCH] 0028527: Visualization, AIS_InteractiveContext - custom selection presentation is never removed from View --- src/AIS/AIS_InteractiveContext.cxx | 4 +++ src/SelectMgr/SelectMgr_SelectableObject.cxx | 26 ++++++++++++++++++++ src/SelectMgr/SelectMgr_SelectableObject.hxx | 10 +++++--- 3 files changed, 37 insertions(+), 3 deletions(-) diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index 5c7c027974..ebde0742e9 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -2336,6 +2336,9 @@ void AIS_InteractiveContext::EraseGlobal (const Handle(AIS_InteractiveObject)& t clearDynamicHighlight(); } + // make sure highlighting presentations are properly erased + theIObj->ErasePresentations (false); + if (IsSelected (theIObj) && aStatus->DisplayMode() != aDispMode) { @@ -2396,6 +2399,7 @@ void AIS_InteractiveContext::ClearGlobal (const Handle(AIS_InteractiveObject)& t unhighlightOwners (theIObj); myMainPM->Erase (theIObj, -1); + theIObj->ErasePresentations (true); // make sure highlighting presentations are properly erased // Object removes from Detected sequence Standard_DISABLE_DEPRECATION_WARNINGS diff --git a/src/SelectMgr/SelectMgr_SelectableObject.cxx b/src/SelectMgr/SelectMgr_SelectableObject.cxx index 417312482d..504ca4a64c 100644 --- a/src/SelectMgr/SelectMgr_SelectableObject.cxx +++ b/src/SelectMgr/SelectMgr_SelectableObject.cxx @@ -378,6 +378,32 @@ Handle(Prs3d_Presentation) SelectMgr_SelectableObject::GetSelectPresentation (co return mySelectionPrs; } +//======================================================================= +//function : ErasePresentations +//purpose : +//======================================================================= +void SelectMgr_SelectableObject::ErasePresentations (Standard_Boolean theToRemove) +{ + if (!mySelectionPrs.IsNull()) + { + mySelectionPrs->Erase(); + if (theToRemove) + { + mySelectionPrs->Clear(); + mySelectionPrs.Nullify(); + } + } + if (!myHilightPrs.IsNull()) + { + myHilightPrs->Erase(); + if (theToRemove) + { + myHilightPrs->Clear(); + myHilightPrs.Nullify(); + } + } +} + //======================================================================= //function : SetZLayer //purpose : diff --git a/src/SelectMgr/SelectMgr_SelectableObject.hxx b/src/SelectMgr/SelectMgr_SelectableObject.hxx index cf749e23af..412ac68c0d 100644 --- a/src/SelectMgr/SelectMgr_SelectableObject.hxx +++ b/src/SelectMgr/SelectMgr_SelectableObject.hxx @@ -168,7 +168,10 @@ public: Standard_EXPORT Handle(Prs3d_Presentation) GetHilightPresentation (const Handle(PrsMgr_PresentationManager3d)& TheMgr); Standard_EXPORT Handle(Prs3d_Presentation) GetSelectPresentation (const Handle(PrsMgr_PresentationManager3d)& TheMgr); - + + //! Removes presentations returned by GetHilightPresentation() and GetSelectPresentation(). + Standard_EXPORT virtual void ErasePresentations (Standard_Boolean theToRemove); + //! Set Z layer ID and update all presentations of the selectable object. //! The layers mechanism allows drawing objects in higher layers in overlay of objects in lower layers. Standard_EXPORT virtual void SetZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; @@ -219,14 +222,15 @@ protected: SelectMgr_SequenceOfSelection myselections; Handle(SelectMgr_EntityOwner) myAssemblyOwner; + Handle(Prs3d_Presentation) mySelectionPrs; + Handle(Prs3d_Presentation) myHilightPrs; Standard_Boolean myAutoHilight; private: Standard_Integer mycurrent; - Handle(Prs3d_Presentation) mySelectionPrs; - Handle(Prs3d_Presentation) myHilightPrs; Standard_Integer myGlobalSelMode; + }; #endif // _SelectMgr_SelectableObject_HeaderFile