Salome HOME
Merge remote-tracking branch 'remotes/origin/HighLevelDump'
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Rotation.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        FeaturesAPI_Rotation.h
4 // Created:     07 June 2016
5 // Author:      Dmitry Bobylev
6
7 #ifndef FeaturesAPI_Rotation_H_
8 #define FeaturesAPI_Rotation_H_
9
10 #include "FeaturesAPI.h"
11
12 #include <FeaturesPlugin_Rotation.h>
13
14 #include <ModelHighAPI_Interface.h>
15 #include <ModelHighAPI_Macro.h>
16
17 class ModelHighAPI_Double;
18 class ModelHighAPI_Dumper;
19 class ModelHighAPI_Selection;
20
21 /// \class FeaturesAPI_Rotation
22 /// \ingroup CPPHighAPI
23 /// \brief Interface for Rotation feature.
24 class FeaturesAPI_Rotation: public ModelHighAPI_Interface
25 {
26 public:
27   /// Constructor without values.
28   FEATURESAPI_EXPORT
29   explicit FeaturesAPI_Rotation(const std::shared_ptr<ModelAPI_Feature>& theFeature);
30
31   /// Constructor with values.
32   FEATURESAPI_EXPORT
33   FeaturesAPI_Rotation(const std::shared_ptr<ModelAPI_Feature>& theFeature,
34                        const std::list<ModelHighAPI_Selection>& theMainObjects,
35                        const ModelHighAPI_Selection& theAxisObject,
36                        const ModelHighAPI_Double& theAngle);
37
38   /// Destructor.
39   FEATURESAPI_EXPORT
40   virtual ~FeaturesAPI_Rotation();
41
42   INTERFACE_3(FeaturesPlugin_Rotation::ID(),
43               mainObjects, FeaturesPlugin_Rotation::OBJECTS_LIST_ID(), ModelAPI_AttributeSelectionList, /** Main objects */,
44               axisObject, FeaturesPlugin_Rotation::AXIS_OBJECT_ID(), ModelAPI_AttributeSelection, /** Axis object */,
45               angle, FeaturesPlugin_Rotation::ANGLE_ID(), ModelAPI_AttributeDouble, /** Angle */)
46
47   /// Set main objects.
48   FEATURESAPI_EXPORT
49   void setMainObjects(const std::list<ModelHighAPI_Selection>& theMainObjects);
50
51   /// Set axis object.
52   FEATURESAPI_EXPORT
53   void setAxisObject(const ModelHighAPI_Selection& theAxisObject);
54
55   /// Set angle.
56   FEATURESAPI_EXPORT
57   void setAngle(const ModelHighAPI_Double& theAngle);
58
59   /// Dump wrapped feature
60   FEATURESAPI_EXPORT
61   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
62 };
63
64 /// Pointer on Rotation object.
65 typedef std::shared_ptr<FeaturesAPI_Rotation> RotationPtr;
66
67 /// \ingroup CPPHighAPI
68 /// \brief Create Rotation feature.
69 FEATURESAPI_EXPORT
70 RotationPtr addRotation(const std::shared_ptr<ModelAPI_Document>& thePart,
71                         const std::list<ModelHighAPI_Selection>& theMainObjects,
72                         const ModelHighAPI_Selection& theAxisObject,
73                         const ModelHighAPI_Double& theAngle);
74
75 #endif // FeaturesAPI_Rotation_H_