Salome HOME
Fix for the issue #2573: Wrong position of created part
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Symmetry.h
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 #ifndef FEATURESAPI_SYMMETRY_H_
22 #define FEATURESAPI_SYMMETRY_H_
23
24 #include "FeaturesAPI.h"
25
26 #include <FeaturesPlugin_Symmetry.h>
27
28 #include <ModelHighAPI_Interface.h>
29 #include <ModelHighAPI_Macro.h>
30
31 class ModelHighAPI_Double;
32 class ModelHighAPI_Dumper;
33 class ModelHighAPI_Selection;
34
35 /// \class FeaturesAPI_Symmetry
36 /// \ingroup CPPHighAPI
37 /// \brief Interface for Symmetry feature.
38 class FeaturesAPI_Symmetry: public ModelHighAPI_Interface
39 {
40 public:
41   /// Constructor without values.
42   FEATURESAPI_EXPORT
43   explicit FeaturesAPI_Symmetry(const std::shared_ptr<ModelAPI_Feature>& theFeature);
44
45   /// Constructor with values.
46   FEATURESAPI_EXPORT
47   explicit FeaturesAPI_Symmetry(const std::shared_ptr<ModelAPI_Feature>& theFeature,
48                                 const std::list<ModelHighAPI_Selection>& theMainObjects,
49                                 const ModelHighAPI_Selection& theObject,
50                                 bool theKeepOriginal = true);
51
52   /// Destructor.
53   FEATURESAPI_EXPORT
54   virtual ~FeaturesAPI_Symmetry();
55
56   INTERFACE_6(FeaturesPlugin_Symmetry::ID(),
57               creationMethod, FeaturesPlugin_Symmetry::CREATION_METHOD(),
58               ModelAPI_AttributeString, /** Creation method */,
59               mainObjects, FeaturesPlugin_Symmetry::OBJECTS_LIST_ID(),
60               ModelAPI_AttributeSelectionList, /** Main objects */,
61               pointObject, FeaturesPlugin_Symmetry::POINT_OBJECT_ID(),
62               ModelAPI_AttributeSelection, /** Point object */,
63               axisObject, FeaturesPlugin_Symmetry::AXIS_OBJECT_ID(),
64               ModelAPI_AttributeSelection, /** Axis object */,
65               planeObject, FeaturesPlugin_Symmetry::PLANE_OBJECT_ID(),
66               ModelAPI_AttributeSelection, /** Plane object */,
67               keepOriginal, FeaturesPlugin_Symmetry::KEEP_ORIGINAL_RESULT(),
68               ModelAPI_AttributeBoolean, /** Keep original shape */)
69
70   /// Set main objects.
71   FEATURESAPI_EXPORT
72   void setMainObjects(const std::list<ModelHighAPI_Selection>& theMainObjects);
73
74   /// Modify CreationMethod, point_object attribute of the feature.
75   FEATURESAPI_EXPORT
76   void setPoint(const ModelHighAPI_Selection& thePointObject);
77
78   /// Modify CreationMethod, axis_object attribute of the feature.
79   FEATURESAPI_EXPORT
80   void setAxis(const ModelHighAPI_Selection& theAxisObject);
81
82   /// Modify CreationMethod, plane_object attribute of the feature.
83   FEATURESAPI_EXPORT
84   void setPlane(const ModelHighAPI_Selection& thePlaneObject);
85
86   /// Dump wrapped feature
87   FEATURESAPI_EXPORT
88   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
89 };
90
91 /// Pointer on Symmetry object.
92 typedef std::shared_ptr<FeaturesAPI_Symmetry> SymmetryPtr;
93
94 /// \ingroup CPPHighAPI
95 /// \brief Create Symmetry feature.
96 FEATURESAPI_EXPORT
97 SymmetryPtr addSymmetry(const std::shared_ptr<ModelAPI_Document>& thePart,
98                         const std::list<ModelHighAPI_Selection>& theMainObjects,
99                         const ModelHighAPI_Selection& theObject,
100                         bool theKeepOriginal = true);
101
102 #endif // FEATURESAPI_SYMMETRY_H_