X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_RemoveSubShapes.h;h=73a518f3bdd054ba1950a62148c91992c71acf36;hb=a930200bbf92c778fc684a3db477064f85f9cafe;hp=39cb6fabeafc166a9e99e5084807c03f276b99c3;hpb=87b6a30a3afb8fb32e7e43ade8d9c947d9eb1684;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h b/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h index 39cb6fabe..73a518f3b 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h +++ b/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 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 FeaturesPlugin_RemoveSubShapes_H_ @@ -48,13 +47,42 @@ public: return MY_BASE_SHAPE_ID; } - /// Attribute name of sub-shapes. - inline static const std::string& SUBSHAPES_ID() + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD() { - static const std::string MY_SUBSHAPES_ID("subshapes"); + static const std::string MY_CREATION_METHOD_ID("creation_method"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_KEEP_SUBSHAPES() + { + static const std::string MY_CREATION_METHOD_ID("by_keep_subshapes"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name for creation method. + inline static const std::string& CREATION_METHOD_BY_REMOVE_SUBSHAPES() + { + static const std::string MY_CREATION_METHOD_ID("by_remove_subshapes"); + return MY_CREATION_METHOD_ID; + } + + /// Attribute name of sub-shapes to keep. + inline static const std::string& SUBSHAPES_TO_KEEP_ID() + { + static const std::string MY_SUBSHAPES_ID("subshapes_to_keep"); return MY_SUBSHAPES_ID; } + /// Attribute name of sub-shapes to remove. + inline static const std::string& SUBSHAPES_TO_REMOVE_ID() + { + static const std::string MY_SUBSHAPES_ID("subshapes_to_remove"); + return MY_SUBSHAPES_ID; + } + + /// \return the kind of a feature. FEATURESPLUGIN_EXPORT virtual const std::string& getKind() { @@ -69,8 +97,11 @@ public: /// \param[in] theID identifier of changed attribute. FEATURESPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); - /// Creates a new part document if needed. + /// Performs the algorithm and stores results it in the data structure. FEATURESPLUGIN_EXPORT virtual void execute(); + +private: + bool myChangedInCode; }; #endif