X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_RemoveSubShapes.h;h=15e51f32bcdd5d52c51c1a1ba0042d8226e76559;hb=e60b61962b051180dab78bb91977d58d59ca7614;hp=b5e1158a986f3aae56a5b8272e178ef8187709bc;hpb=78205c43afb89dee242a940236c22000df5af987;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h b/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h index b5e1158a9..15e51f32b 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h +++ b/src/FeaturesPlugin/FeaturesPlugin_RemoveSubShapes.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: FeaturesPlugin_RemoveSubShapes.h -// Created: 23 May 2016 -// Author: Dmitry Bobylev +// 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 +// 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 FeaturesPlugin_RemoveSubShapes_H_ #define FeaturesPlugin_RemoveSubShapes_H_ @@ -34,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_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"); + 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() { @@ -57,6 +99,9 @@ public: /// Creates a new part document if needed. FEATURESPLUGIN_EXPORT virtual void execute(); + +private: + bool myChangedInCode; }; #endif