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