]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchShapePlugin/SketchShapePlugin_Feature.h
Salome HOME
6e38662a278eb9ab179bcb8c41f3c089be99b3a4
[modules/shaper.git] / src / SketchShapePlugin / SketchShapePlugin_Feature.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        SketchShapePlugin_Feature.h
4 // Created:     25 Nov 2015
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef SKETCHSHAPEPLUGIN_FEATURE_H_
8 #define SKETCHSHAPEPLUGIN_FEATURE_H_
9
10 #include "SketchShapePlugin.h"
11
12 #include <ModelAPI_Feature.h>
13
14 /**\class SketchShapePlugin_Feature
15  * \ingroup Plugins
16  * \brief Feature for extraction shapes from the sketch.
17  * The visualization of this object is a result and
18  * it is calculated if all attributes are initialized.
19  * It is possible to extract simultaneously vertices, edges and faces.
20  * 
21  */
22 class SketchShapePlugin_Feature : public ModelAPI_Feature
23 {
24  public:
25   /// SketchShape feature kind
26   inline static const std::string& ID()
27   {
28     static const std::string MY_SKETCH_SHAPE_ID("SketchShape");
29     return MY_SKETCH_SHAPE_ID;
30   }
31
32   /// List of vertices to be extracted
33   inline static const std::string& VERTEX_LIST_ID()
34   {
35     static const std::string MY_VERTEX_LIST_ID("VertexList");
36     return MY_VERTEX_LIST_ID;
37   }
38
39   /// State whether the vertices are selectable
40   inline static const std::string& VERTEX_CHOICE_ID()
41   {
42     static const std::string MY_VERTEX_CHOICE_ID("VertexChoice");
43     return MY_VERTEX_CHOICE_ID;
44   }
45
46   /// Returns the kind of a feature
47   SKETCHSHAPEPLUGIN_EXPORT virtual const std::string& getKind()
48   {
49     static std::string MY_KIND = SketchShapePlugin_Feature::ID();
50     return MY_KIND;
51   }
52
53   /// Creates an arc-shape
54   SKETCHSHAPEPLUGIN_EXPORT virtual void execute();
55
56   /// Request for initialization of data model of the feature: adding all attributes
57   SKETCHSHAPEPLUGIN_EXPORT virtual void initAttributes();
58
59   /// Called on change of any argument-attribute of this object
60   /// \param theID identifier of changed attribute
61   SKETCHSHAPEPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
62
63   /// Use plugin manager for features creation
64   SketchShapePlugin_Feature();
65 };
66
67 #endif