From 4679d975dce9feb270f62dc7221db399298d0380 Mon Sep 17 00:00:00 2001 From: kgv Date: Tue, 4 Jul 2017 14:15:34 +0300 Subject: [PATCH] 0028888: Visualization - AIS_InteractiveContext should not hold V3d_View handle which will cause accessing invalid removed V3d_View --- src/AIS/AIS_InteractiveContext.hxx | 1 - src/AIS/AIS_InteractiveContext_1.cxx | 1 - src/AIS/AIS_InteractiveContext_2.cxx | 10 +++++----- src/AIS/AIS_LocalContext.hxx | 5 ++++- src/AIS/AIS_LocalContext_1.cxx | 11 ++++++++++- 5 files changed, 19 insertions(+), 9 deletions(-) diff --git a/src/AIS/AIS_InteractiveContext.hxx b/src/AIS/AIS_InteractiveContext.hxx index d9b070a5a9..59b0524b7d 100644 --- a/src/AIS/AIS_InteractiveContext.hxx +++ b/src/AIS/AIS_InteractiveContext.hxx @@ -1863,7 +1863,6 @@ protected: Handle(Prs3d_Drawer) myStyles[Prs3d_TypeOfHighlight_NB]; AIS_DataMapOfILC myLocalContexts; Standard_Integer myCurLocalIndex; - Handle(V3d_View) mylastmoveview; TColStd_SequenceOfInteger myDetectedSeq; Standard_Integer myCurDetected; Standard_Integer myCurHighlighted; diff --git a/src/AIS/AIS_InteractiveContext_1.cxx b/src/AIS/AIS_InteractiveContext_1.cxx index 778808727f..e83a397efc 100644 --- a/src/AIS/AIS_InteractiveContext_1.cxx +++ b/src/AIS/AIS_InteractiveContext_1.cxx @@ -422,7 +422,6 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer th theView->Viewer()->Update(); } - mylastmoveview = theView; return aStatus; } diff --git a/src/AIS/AIS_InteractiveContext_2.cxx b/src/AIS/AIS_InteractiveContext_2.cxx index 48334f47ed..b62d0a5c75 100644 --- a/src/AIS/AIS_InteractiveContext_2.cxx +++ b/src/AIS/AIS_InteractiveContext_2.cxx @@ -60,12 +60,12 @@ OpenLocalContext(const Standard_Boolean UseDisplayedObjects, const Handle(AIS_InteractiveObject) aLastPickedAIS = Handle(AIS_InteractiveObject)::DownCast (myLastPicked->Selectable()); unhighlightGlobal (aLastPickedAIS); }} - - if(!mylastmoveview.IsNull()){ - if(myCurLocalIndex>0) - myLocalContexts(myCurLocalIndex)->UnhilightLastDetected(mylastmoveview); + + if (myCurLocalIndex > 0) + { + myLocalContexts (myCurLocalIndex)->UnhilightLastDetected (myMainVwr); } - + // entities connected to dynamic selection at neutral point are set to 0. myLastinMain.Nullify(); diff --git a/src/AIS/AIS_LocalContext.hxx b/src/AIS/AIS_LocalContext.hxx index 90e6ec6071..3b2a79671c 100644 --- a/src/AIS/AIS_LocalContext.hxx +++ b/src/AIS/AIS_LocalContext.hxx @@ -164,7 +164,10 @@ public: Standard_EXPORT Standard_Integer HilightPreviousDetected (const Handle(V3d_View)& theView, const Standard_Boolean theToRedrawImmediate); //! returns True if something was done... - Standard_EXPORT Standard_Boolean UnhilightLastDetected (const Handle(V3d_View)& aView); + Standard_EXPORT Standard_Boolean UnhilightLastDetected (const Handle(V3d_Viewer)& theViewer); + + //! returns True if something was done... + Standard_EXPORT Standard_Boolean UnhilightLastDetected (const Handle(V3d_View)& theView); //! returns the number of selected Standard_EXPORT AIS_StatusOfPick AddSelect (const Handle(SelectMgr_EntityOwner)& theObject); diff --git a/src/AIS/AIS_LocalContext_1.cxx b/src/AIS/AIS_LocalContext_1.cxx index d2cb07c845..7b83743cfe 100644 --- a/src/AIS/AIS_LocalContext_1.cxx +++ b/src/AIS/AIS_LocalContext_1.cxx @@ -1362,6 +1362,15 @@ Standard_Integer AIS_LocalContext::HilightPreviousDetected (const Handle(V3d_Vie //purpose : //======================================================================= Standard_Boolean AIS_LocalContext::UnhilightLastDetected (const Handle(V3d_View)& theView) +{ + return UnhilightLastDetected (theView->Viewer()); +} + +//======================================================================= +//function : UnhilightLastDetected +//purpose : +//======================================================================= +Standard_Boolean AIS_LocalContext::UnhilightLastDetected (const Handle(V3d_Viewer)& theViewer) { if (!IsValidIndex (mylastindex)) { @@ -1371,7 +1380,7 @@ Standard_Boolean AIS_LocalContext::UnhilightLastDetected (const Handle(V3d_View) myMainPM->BeginImmediateDraw(); const Handle(SelectMgr_EntityOwner)& anOwner = myMapOfOwner->FindKey (mylastindex); anOwner->Unhilight (myMainPM); - myMainPM->EndImmediateDraw (theView->Viewer()); + myMainPM->EndImmediateDraw (theViewer); mylastindex = 0; return Standard_True; }