From 003281f4e77cd7366e27dbda98bc6e5e0b9211f4 Mon Sep 17 00:00:00 2001 From: kgv Date: Sat, 8 Apr 2017 15:03:18 +0300 Subject: [PATCH] 0028644: Visualization, AIS_MultipleConnectedInteractive - remove unused private class SelectMgr_AssemblyEntityOwner --- src/AIS/AIS_MultipleConnectedInteractive.cxx | 102 ------------------- 1 file changed, 102 deletions(-) diff --git a/src/AIS/AIS_MultipleConnectedInteractive.cxx b/src/AIS/AIS_MultipleConnectedInteractive.cxx index 83c4b437d1..bef045834f 100644 --- a/src/AIS/AIS_MultipleConnectedInteractive.cxx +++ b/src/AIS/AIS_MultipleConnectedInteractive.cxx @@ -28,108 +28,6 @@ IMPLEMENT_STANDARD_RTTIEXT(AIS_MultipleConnectedInteractive,AIS_InteractiveObject) -namespace -{ - //! SelectMgr_AssemblyEntityOwner replaces original owners in sensitive entities - //! copied from reference objects to AIS_MultipleConnectedInteractive in order to - //! redirect all selection queries to multiply connected (assembly). - class SelectMgr_AssemblyEntityOwner : public SelectMgr_EntityOwner - { - - public: - - // Copies another SelectMgr_EntityOwner. - SelectMgr_AssemblyEntityOwner (const Handle(SelectMgr_EntityOwner) theOwner, - SelectMgr_SelectableObject* theAssembly); - - void SetAssembly (SelectMgr_SelectableObject* theAssembly) - { - myAssembly = theAssembly; - } - - //! Selectable() method modified to return myAssembly. - virtual Handle(SelectMgr_SelectableObject) Selectable() const Standard_OVERRIDE - { - return myAssembly; - } - - virtual Standard_Boolean IsHilighted (const Handle(PrsMgr_PresentationManager)& PM,const Standard_Integer aMode) const Standard_OVERRIDE; - - virtual void HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& thePM, - const Handle(Prs3d_Drawer)& theStyle, - const Standard_Integer theMode) Standard_OVERRIDE; - - virtual void Unhilight (const Handle(PrsMgr_PresentationManager)& PM, const Standard_Integer aMode) Standard_OVERRIDE; - - private: - - SelectMgr_SelectableObject* myAssembly; - }; - -} - -//======================================================================= -//function : SelectMgr_AssemblyEntityOwner -//purpose : -//======================================================================= -SelectMgr_AssemblyEntityOwner::SelectMgr_AssemblyEntityOwner (const Handle(SelectMgr_EntityOwner) theOwner, - SelectMgr_SelectableObject* theAssembly) -: - SelectMgr_EntityOwner (theOwner), - myAssembly (theAssembly) -{ -} - -//======================================================================= -//function : IsHilighted -//purpose : -//======================================================================= -Standard_Boolean SelectMgr_AssemblyEntityOwner::IsHilighted (const Handle(PrsMgr_PresentationManager)& PM, - const Standard_Integer aMode) const -{ - if (HasSelectable()) - { - return PM->IsHighlighted (myAssembly, aMode); - } - - return Standard_False; -} - -//======================================================================= -//function : HilightWithColor -//purpose : -//======================================================================= -void SelectMgr_AssemblyEntityOwner::HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& thePM, - const Handle(Prs3d_Drawer)& theStyle, - const Standard_Integer theMode) -{ - if (HasSelectable()) - { - if (IsAutoHilight()) - { - thePM->Color (myAssembly, theStyle, theMode); - } - else - { - myAssembly->HilightOwnerWithColor (thePM, theStyle, this); - } - } -} - -//======================================================================= -//function : Unhilight -//purpose : -//======================================================================= -void SelectMgr_AssemblyEntityOwner::Unhilight (const Handle(PrsMgr_PresentationManager)& thePrsMgr, - const Standard_Integer ) -{ - if (HasSelectable()) - { - thePrsMgr->Unhighlight (myAssembly); - } -} - - //======================================================================= //function : AIS_MultipleConnectedInteractive //purpose :