Salome HOME
Issue #2343: Take into account new dimensions for show/hide dimensional constraints
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_RemoveSubShapes.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "FeaturesAPI_RemoveSubShapes.h"
22
23 #include <ModelHighAPI_Dumper.h>
24 #include <ModelHighAPI_Tools.h>
25
26 //==================================================================================================
27 FeaturesAPI_RemoveSubShapes::FeaturesAPI_RemoveSubShapes(
28   const std::shared_ptr<ModelAPI_Feature>& theFeature)
29 : ModelHighAPI_Interface(theFeature)
30 {
31   initialize();
32 }
33
34 //==================================================================================================
35 FeaturesAPI_RemoveSubShapes::FeaturesAPI_RemoveSubShapes(
36   const std::shared_ptr<ModelAPI_Feature>& theFeature,
37   const ModelHighAPI_Selection& theBase)
38 : ModelHighAPI_Interface(theFeature)
39 {
40   if(initialize()) {
41     setBase(theBase);
42
43     execute();
44   }
45 }
46
47 //==================================================================================================
48 FeaturesAPI_RemoveSubShapes::~FeaturesAPI_RemoveSubShapes()
49 {
50
51 }
52
53 //==================================================================================================
54 void FeaturesAPI_RemoveSubShapes::setBase(const ModelHighAPI_Selection& theBase)
55 {
56   fillAttribute(theBase, mybase);
57
58   execute();
59 }
60
61 //==================================================================================================
62 void FeaturesAPI_RemoveSubShapes::setSubShapesToKeep(
63   const std::list<ModelHighAPI_Selection>& theSubShapes)
64 {
65   fillAttribute(FeaturesPlugin_RemoveSubShapes::CREATION_METHOD_BY_KEEP_SUBSHAPES(),
66                 mycreationMethod);
67   fillAttribute(theSubShapes, mysubshapesToKeep);
68
69   execute();
70 }
71
72 //==================================================================================================
73 void FeaturesAPI_RemoveSubShapes::setSubShapesToRemove(
74   const std::list<ModelHighAPI_Selection>& theSubShapes)
75 {
76   fillAttribute(FeaturesPlugin_RemoveSubShapes::CREATION_METHOD_BY_REMOVE_SUBSHAPES(),
77                 mycreationMethod);
78   fillAttribute(theSubShapes, mysubshapesToRemove);
79
80   execute();
81 }
82
83 //==================================================================================================
84 void FeaturesAPI_RemoveSubShapes::dump(ModelHighAPI_Dumper& theDumper) const
85 {
86   FeaturePtr aBase = feature();
87   const std::string& aDocName = theDumper.name(aBase->document());
88
89   AttributeSelectionPtr anAttrBaseShape =
90     aBase->selection(FeaturesPlugin_RemoveSubShapes::BASE_SHAPE_ID());
91
92   std::string aCreationMethod =
93     aBase->string(FeaturesPlugin_RemoveSubShapes::CREATION_METHOD())->value();
94
95   AttributeSelectionListPtr anAttrSubShapes;
96
97   if (aCreationMethod == FeaturesPlugin_RemoveSubShapes::CREATION_METHOD_BY_KEEP_SUBSHAPES()) {
98     anAttrSubShapes =
99       aBase->selectionList(FeaturesPlugin_RemoveSubShapes::SUBSHAPES_TO_KEEP_ID());
100   }
101   else {
102     anAttrSubShapes =
103       aBase->selectionList(FeaturesPlugin_RemoveSubShapes::SUBSHAPES_TO_REMOVE_ID());
104   }
105
106   theDumper << aBase << " = model.addRemoveSubShapes(" << aDocName << ", " << anAttrBaseShape << ")"
107             << std::endl;
108   theDumper << aBase
109     << (aCreationMethod == FeaturesPlugin_RemoveSubShapes::CREATION_METHOD_BY_KEEP_SUBSHAPES() ?
110        ".setSubShapesToKeep(" : ".setSubShapesToRemove(")
111     << anAttrSubShapes << ")" << std::endl;
112 }
113
114 //==================================================================================================
115 RemoveSubShapesPtr addRemoveSubShapes(const std::shared_ptr<ModelAPI_Document>& thePart,
116                                       const ModelHighAPI_Selection& theBase)
117 {
118   std::shared_ptr<ModelAPI_Feature> aFeature =
119     thePart->addFeature(FeaturesAPI_RemoveSubShapes::ID());
120   return RemoveSubShapesPtr(new FeaturesAPI_RemoveSubShapes(aFeature, theBase));
121 }