X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ResultPrs.h;h=f1ad5e1a0c2c588b59fe1d14e3543c1b486361a9;hb=a5a596631807c90ad33d0237e12fdb1ee77193ae;hp=0a1f999b7787b9321a9bebc30d836e9725281ff4;hpb=799f8076977663f19a4e637a5ec2ebe8f1e66891;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ResultPrs.h b/src/ModuleBase/ModuleBase_ResultPrs.h index 0a1f999b7..f1ad5e1a0 100644 --- a/src/ModuleBase/ModuleBase_ResultPrs.h +++ b/src/ModuleBase/ModuleBase_ResultPrs.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef ModuleBase_ResultPrs_H @@ -65,7 +64,7 @@ public: //! this selectable object ( for fast presentation draw ) Standard_EXPORT virtual void HilightOwnerWithColor( const Handle(PrsMgr_PresentationManager3d)& thePM, - const Handle(Graphic3d_HighlightStyle)& theStyle, + const Handle(Prs3d_Drawer)& theStyle, const Handle(SelectMgr_EntityOwner)& theOwner); /// Returns result object @@ -108,6 +107,11 @@ public: /// \return false if parameter is out of [0, 1] Standard_EXPORT bool setHiddenSubShapeTransparency(double theTransparency); + Standard_EXPORT TopoDS_Shape originalShape() const { return myOriginalShape; } + + Standard_EXPORT bool isSubstituted() const { return myIsSubstituted; } + + DEFINE_STANDARD_RTTIEXT(ModuleBase_ResultPrs, ViewerData_AISShape) protected: @@ -141,6 +145,8 @@ private: void collectSubShapes(BRep_Builder& theBuilder, TopoDS_Shape& theCompound, const TopoDS_Shape& theShape, const NCollection_List& theHiddenSubShapes); + void setEdgesDefaultColor(); + private: /// Reference to result object ResultPtr myResult; @@ -148,6 +154,8 @@ private: /// Original shape of the result object TopoDS_Shape myOriginalShape; + bool myIsSubstituted; + /// Container of original Shape sub shape to be hidden and not selectable NCollection_List myHiddenSubShapes; TopoDS_Compound myHiddenCompound; /// compound of hidden sub shapes