Salome HOME
Issue #273: Add copyright string
[modules/shaper.git] / src / Model / Model_AttributeSelectionList.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_AttributeSelectionList.h
4 // Created:     22 Oct 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef Model_AttributeSelectionList_H_
8 #define Model_AttributeSelectionList_H_
9
10 #include "Model.h"
11 #include "Model_AttributeSelection.h"
12 #include <ModelAPI_AttributeSelectionList.h>
13 #include <TDataStd_Integer.hxx>
14 #include <TDataStd_Real.hxx>
15 #include <vector>
16
17 /**\class Model_AttributeSelectionList
18  * \ingroup DataModel
19  * \brief Attribute that contains list of references to the sub-shapes with
20  * possibility to manage them.
21  */
22
23 class Model_AttributeSelectionList : public ModelAPI_AttributeSelectionList
24 {
25   Handle(TDataStd_Integer) mySize;  ///< Contains size of this list
26   Handle(TDataStd_Real) mySelectionType;  ///< Contains current index, TODO: make it integer, not real
27 public:
28   /// Adds the new reference to the end of the list
29   MODEL_EXPORT virtual void append(
30     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape);
31
32   /// Returns the number ofselection attributes in the list
33   MODEL_EXPORT virtual int size();
34
35   MODEL_EXPORT virtual int selectionType();
36
37   MODEL_EXPORT virtual void setSelectionType(int);
38
39   /// Returns the attribute selection by the index (zero based)
40   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_AttributeSelection> value(const int theIndex);
41
42   /// Returns all attributes
43   MODEL_EXPORT virtual void clear();
44
45 protected:
46   /// Objects are created for features automatically
47   MODEL_EXPORT Model_AttributeSelectionList(TDF_Label& theLabel);
48
49   friend class Model_Data;
50 };
51
52 #endif