X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_OperationPrs.h;h=99fd2d2379d91d2330a36f2f22100de9a7adcc55;hb=384c819a1edf4b726e3a523c1ffd2b5e6b16a4c0;hp=cc1416451b8e923a8f083b2d5d2e612d34035b9b;hpb=b58a01d9feef4187f2be788f17b1ef60a91be6b8;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_OperationPrs.h b/src/PartSet/PartSet_OperationPrs.h index cc1416451..99fd2d237 100755 --- a/src/PartSet/PartSet_OperationPrs.h +++ b/src/PartSet/PartSet_OperationPrs.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSet_OperationPrs.h -// Created: 01 Jul 2015 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2017 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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// 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 +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #ifndef PartSet_OperationPrs_H #define PartSet_OperationPrs_H @@ -23,6 +37,9 @@ #include #include +#include +#include +#include #include #include @@ -32,7 +49,7 @@ DEFINE_STANDARD_HANDLE(PartSet_OperationPrs, ViewerData_AISShape) class XGUI_Displayer; -class Handle_AIS_InteractiveObject; +class SelectMgr_Selection; /** * \ingroup GUI @@ -58,7 +75,7 @@ public: /// Switch on using of the AIS presentation with of the shape object increased on the delta void useAISWidth(); - DEFINE_STANDARD_RTTI(PartSet_OperationPrs) + DEFINE_STANDARD_RTTIEXT(PartSet_OperationPrs, ViewerData_AISShape) protected: /// Redefinition of virtual function @@ -73,7 +90,7 @@ protected: protected: /// list of visualized shapes /// \return a map of shapes - NCollection_DataMap& shapesMap(); + NCollection_DataMap& shapesMap(); private: /// Fills the map by the feature object and shapes, which should be visuaziled @@ -97,6 +114,16 @@ private: QMap >& theObjectShapes, const bool theListShouldBeCleared = true); + /// Fills the map by the feature presentation if the feature is presentable + /// \param theFeature a current feature + /// \param theWorkshop a current workshop + /// \param theObjectShapes an output map + /// \param theObjectShape an output map of objects + static void getPresentationShapes(const FeaturePtr& theFeature, + ModuleBase_IWorkshop* theWorkshop, + QMap >& theObjectShapes, + const bool theListShouldBeCleared = true); + /// Fills the map by the feature object and shapes, which should be visuaziled /// Gets the active widget, obtain the highlighted presentations if it has such and /// fill map by object and shapes @@ -139,11 +166,14 @@ private: NCollection_DataMap& theShapeToPrsMap); private: - NCollection_DataMap myShapeToPrsMap; /// list of visualized shapes + /// list of visualized shapes + NCollection_DataMap myShapeToPrsMap; ModuleBase_IWorkshop* myWorkshop; /// current workshop Quantity_Color myShapeColor; /// color of feature depended shapes - bool myUseAISWidth; /// flag if the width of a shape object should be used for the shape visualization + + /// flag if the width of a shape object should be used for the shape visualization + bool myUseAISWidth; friend class PartSet_CustomPrs; };