Salome HOME
Issue #1671: decrease point selection zone
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Group.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        FeaturesAPI_Group.h
4 // Created:     07 June 2016
5 // Author:      Dmitry Bobylev
6
7 #ifndef FeaturesAPI_Group_H_
8 #define FeaturesAPI_Group_H_
9
10 #include "FeaturesAPI.h"
11
12 #include <FeaturesPlugin_Group.h>
13
14 #include <ModelHighAPI_Interface.h>
15 #include <ModelHighAPI_Macro.h>
16
17 class ModelHighAPI_Dumper;
18 class ModelHighAPI_Selection;
19
20 /// \class FeaturesAPI_Group
21 /// \ingroup CPPHighAPI
22 /// \brief Interface for Group feature.
23 class FeaturesAPI_Group: public ModelHighAPI_Interface
24 {
25 public:
26   /// Constructor without values.
27   FEATURESAPI_EXPORT
28   explicit FeaturesAPI_Group(const std::shared_ptr<ModelAPI_Feature>& theFeature);
29
30   /// Constructor with values.
31   FEATURESAPI_EXPORT
32   FeaturesAPI_Group(const std::shared_ptr<ModelAPI_Feature>& theFeature,
33                     const std::list<ModelHighAPI_Selection>& theGroupList);
34
35   /// Destructor.
36   FEATURESAPI_EXPORT
37   virtual ~FeaturesAPI_Group();
38
39   INTERFACE_1(FeaturesPlugin_Group::ID(),
40               groupList, FeaturesPlugin_Group::LIST_ID(),
41               ModelAPI_AttributeSelectionList, /** Group list*/)
42
43   /// Set main objects.
44   FEATURESAPI_EXPORT
45   void setGroupList(const std::list<ModelHighAPI_Selection>& theGroupList);
46
47   /// Dump wrapped feature
48   FEATURESAPI_EXPORT
49   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
50 };
51
52 /// Pointer on Group object.
53 typedef std::shared_ptr<FeaturesAPI_Group> GroupPtr;
54
55 /// \ingroup CPPHighAPI
56 /// \brief Create Group feature.
57 FEATURESAPI_EXPORT
58 GroupPtr addGroup(const std::shared_ptr<ModelAPI_Document>& thePart,
59                   const std::list<ModelHighAPI_Selection>& theGroupList);
60
61 #endif // FeaturesAPI_Group_H_