From d0fbc7e5dddc2bd27abcc54b9dc88d115de11584 Mon Sep 17 00:00:00 2001 From: nds Date: Thu, 17 May 2018 09:29:04 +0300 Subject: [PATCH] 0029781: Samples - Inspector tool - history tree model is not set into external callback in VInspector - AIS_InteractiveContex and VInspector_ViewModelHistory are set into VInspector_CallBack - minor correction of displaySelectedPresentations () to Hide/Show(by popup menu) any AIS_InteractiveObject, not only AIS_Shape (e.g. AIS_Trihedron) --- tools/VInspector/VInspector_Window.cxx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tools/VInspector/VInspector_Window.cxx b/tools/VInspector/VInspector_Window.cxx index 549be243d3..6e61cda840 100644 --- a/tools/VInspector/VInspector_Window.cxx +++ b/tools/VInspector/VInspector_Window.cxx @@ -310,6 +310,10 @@ bool VInspector_Window::Init (const NCollection_List if (!aCallBack.IsNull() && aCallBack != myCallBack) { myCallBack = aCallBack; + VInspector_ViewModelHistory* aHistoryModel = dynamic_cast + (myHistoryView->model()); + myCallBack->SetContext(aContext); + myCallBack->SetHistoryModel(aHistoryModel); } return true; } @@ -569,10 +573,9 @@ void VInspector_Window::displaySelectedPresentations(const bool theToDisplay) for (NCollection_List::Iterator anIOIt(aSelectedPresentations); anIOIt.More(); anIOIt.Next()) { - Handle(AIS_InteractiveObject) aPresentation = Handle(AIS_Shape)::DownCast(anIOIt.Value()); - if (aPresentation.IsNull()) - continue; - if (theToDisplay) { + Handle(AIS_InteractiveObject) aPresentation = anIOIt.Value(); + if (theToDisplay) + { aContext->Display(aPresentation, false); aContext->Load(aPresentation, -1, true); }