Salome HOME
Issue #2130: arc is done not as desired
[modules/shaper.git] / src / CollectionAPI / CollectionAPI_Field.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        CollectionAPI_Field.h
4 // Created:     16 Nov 2016
5 // Author:      Mikhail Ponikarov
6
7 #ifndef CollectionAPI_Field_H_
8 #define CollectionAPI_Field_H_
9
10 #include "CollectionAPI.h"
11
12 #include <CollectionPlugin_Field.h>
13
14 #include <ModelHighAPI_Interface.h>
15 #include <ModelHighAPI_Macro.h>
16
17 class ModelHighAPI_Dumper;
18 class ModelHighAPI_Selection;
19 class ModelHighAPI_Integer;
20 class ModelHighAPI_ComponentValue;
21
22 /// \class CollectionAPI_Field
23 /// \inField CPPHighAPI
24 /// \brief Interface for Field feature.
25 class CollectionAPI_Field: public ModelHighAPI_Interface
26 {
27 public:
28   /// Constructor without values.
29   COLLECTIONAPI_EXPORT
30   explicit CollectionAPI_Field(const std::shared_ptr<ModelAPI_Feature>& theFeature);
31
32   /// Destructor.
33   COLLECTIONAPI_EXPORT
34   virtual ~CollectionAPI_Field();
35
36   INTERFACE_4(CollectionPlugin_Field::ID(),
37     selection, CollectionPlugin_Field::SELECTED_ID(),
38     ModelAPI_AttributeSelectionList, /** Field selection list*/,
39     componentsNames, CollectionPlugin_Field::COMPONENTS_NAMES_ID(),
40     ModelAPI_AttributeStringArray, /** Names of components list of strings */,
41     stamps, CollectionPlugin_Field::STAMPS_ID(),
42     ModelAPI_AttributeIntArray, /** Identifiers of stamps */,
43     values, CollectionPlugin_Field::VALUES_ID(), ModelAPI_AttributeTables /** Table of values */,
44     )
45
46   /// Set selected objects.
47   COLLECTIONAPI_EXPORT
48   void setSelection(const std::list<ModelHighAPI_Selection>& theFieldList);
49   /// Set names of components
50   COLLECTIONAPI_EXPORT
51   void setComponentsNames(const std::list<std::string>& theNames);
52   /// Set type of values
53   COLLECTIONAPI_EXPORT
54   void setValuesType(const std::string& theType);
55   /// Set number of steps
56   COLLECTIONAPI_EXPORT
57   void setStepsNum(const ModelHighAPI_Integer& theSteps);
58   /// Set stamps identifiers
59   COLLECTIONAPI_EXPORT
60   void setStamps(const std::list<ModelHighAPI_Integer>& theStamps);
61   /// Sets the double values of specific step
62   COLLECTIONAPI_EXPORT
63   void addStep(const ModelHighAPI_Integer& theStepNum, const ModelHighAPI_Integer& theStamp,
64     const std::list<std::list<double> >& theComponents);
65   /// Sets the integer values of specific step
66   COLLECTIONAPI_EXPORT
67   void addStep(const ModelHighAPI_Integer& theStepNum, const ModelHighAPI_Integer& theStamp,
68     const std::list<std::list<int> >& theComponents);
69   /// Sets the string values of specific step
70   COLLECTIONAPI_EXPORT
71   void addStep(const ModelHighAPI_Integer& theStepNum, const ModelHighAPI_Integer& theStamp,
72     const std::list<std::list<std::string> >& theComponents);
73   /// Sets the boolean values of specific step
74   COLLECTIONAPI_EXPORT
75   void addStep(const ModelHighAPI_Integer& theStepNum, const ModelHighAPI_Integer& theStamp,
76     const std::list<std::list<bool> >& theComponents);
77
78   /// Dump wrapped feature
79   COLLECTIONAPI_EXPORT
80   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
81
82   /// Returns the internal values tables
83   COLLECTIONAPI_EXPORT
84   std::shared_ptr<ModelAPI_AttributeTables> tableValues();
85
86 };
87
88 /// Pointer on Field object.
89 typedef std::shared_ptr<CollectionAPI_Field> FieldPtr;
90
91 /// \inField CPPHighAPI
92 /// \brief Create Field feature.
93 COLLECTIONAPI_EXPORT
94 FieldPtr addField(const std::shared_ptr<ModelAPI_Document>& thePart,
95                   const ModelHighAPI_Integer& theStepsNum,
96                   const std::string& theComponentType,
97                   const int theComponentsNum,
98                   const std::list<std::string>& theComponentNames,
99                   const std::list<ModelHighAPI_Selection>& theSelectionList);
100
101 #endif // CollectionAPI_Field_H_