Salome HOME
Extrusion fix
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeSelectionList.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_AttributeSelectionList.h
4 // Created:     22 Oct 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef ModelAPI_AttributeSelectionList_H_
8 #define ModelAPI_AttributeSelectionList_H_
9
10 #include "ModelAPI_AttributeSelection.h"
11 #include <ModelAPI_Result.h>
12
13 /**\class ModelAPI_AttributeSelectionList
14  * \ingroup DataModel
15  * \brief Attribute that contains list of references to the sub-shapes with
16  * possibility to manage them.
17  */
18
19 class ModelAPI_AttributeSelectionList : public ModelAPI_Attribute
20 {
21  public:
22   /// Adds the new reference to the end of the list
23   /// \param theContext object where the sub-shape was selected
24   /// \param theSubShape selected sub-shape (if null, the whole context is selected)
25   /// \param theTemporarily if it is true, do not store and name the added in the data framework
26   ///           (used to remove immediately, without the following updates)
27   virtual void append(const ResultPtr& theContext,
28                       const GeomShapePtr& theSubShape,
29                       const bool theTemporarily = false) = 0;
30
31   /// Adds the new reference to the end of the list by the naming name of the selected shape
32   /// The type of shape is taken from the current selection type if the given is empty
33   virtual void append(const std::string theNamingName, const std::string& theType = "") = 0;
34
35   /// Removes the last element in the list
36   virtual void removeLast() = 0;
37
38   /// Removes the elements from the list.
39   /// \param theIndices a list of indices of elements to be removed
40   virtual void remove(const std::set<int>& theIndices) = 0;
41
42   /// Returns the number of selection attributes in the list
43   virtual int size() = 0;
44
45   /// Returns true if the object with the shape are in list
46   /// \param theContext object where the sub-shape was selected
47   /// \param theSubShape selected sub-shape (if null, the whole context is selected)
48   /// \returns true if the pair is found in the attirbute
49   virtual bool isInList(
50     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
51     const bool theTemporarily = false) = 0;
52
53   /// The type of all elements selection
54   /// \returns the index of the enumeration of the type of shape
55   virtual const std::string selectionType() const = 0;
56
57   /// Sets the type of all elements selection
58   /// \param theType the index of the enumeration of the type of shape
59   virtual void setSelectionType(const std::string& theType) = 0;
60
61   /// Returns the attribute selection by the index (zero based)
62   virtual std::shared_ptr<ModelAPI_AttributeSelection> value(const int theIndex) = 0;
63
64   /// Returns all attributes
65   virtual void clear() = 0;
66
67   /// Returns the type of this class of attributes
68   static std::string typeId()
69   {
70     return "SelectionList";
71   }
72
73   /// Returns the type of this class of attributes, not static method
74   MODELAPI_EXPORT virtual std::string attributeType();
75
76   /// To virtually destroy the fields of successors
77   MODELAPI_EXPORT virtual ~ModelAPI_AttributeSelectionList();
78
79  protected:
80   /// Objects are created for features automatically
81   MODELAPI_EXPORT ModelAPI_AttributeSelectionList();
82 };
83
84 //! Pointer on double attribute
85 typedef std::shared_ptr<ModelAPI_AttributeSelectionList> AttributeSelectionListPtr;
86
87 #endif