]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROData/HYDROData_CalculationCase.h
Salome HOME
Move color tags to the base geometrical object class.
[modules/hydro.git] / src / HYDROData / HYDROData_CalculationCase.h
1
2
3 #ifndef HYDROData_CalculationCase_HeaderFile
4 #define HYDROData_CalculationCase_HeaderFile
5
6 #include <HYDROData_Entity.h>
7
8 class TopoDS_Shell;
9
10 class Handle(HYDROData_Object);
11 class Handle(HYDROData_Region);
12 class Handle(HYDROData_Zone);
13 class Handle(HYDROData_Polyline);
14
15 DEFINE_STANDARD_HANDLE(HYDROData_CalculationCase, HYDROData_Entity)
16
17
18 /**\class HYDROData_CalculationCase
19  * \brief Calculation case is defined by selection of Geometry objects with or without \93Zone of water\94.
20  *
21  */
22 class HYDROData_CalculationCase : public HYDROData_Entity
23 {
24
25 protected:
26
27   /**
28    * Enumeration of tags corresponding to the persistent object parameters.
29    */
30   enum DataTag
31   {
32     DataTag_First = HYDROData_Entity::DataTag_First + 100, ///< first tag, to reserve
33     DataTag_GeometryObject,   ///< reference geometry objects
34     DataTag_ChildRegion,      ///< child regions
35     DataTag_Region,           ///< reference regions
36     DataTag_Polyline          ///< reference boundary polyline
37   };
38
39 public:
40
41   DEFINE_STANDARD_RTTI(HYDROData_CalculationCase);
42
43   /**
44    * Returns the kind of this object. Must be redefined in all objects of known type.
45    */
46   HYDRODATA_EXPORT virtual const ObjectKind GetKind() const { return KIND_CALCULATION; }
47
48
49   /**
50    * Dump Calculation object to Python script representation.
51    */
52   HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
53
54 public:      
55   // Public methods to work with Calculation
56
57   /**
58    * Split reference geometry objects to non-intersected regions.
59    */
60   HYDRODATA_EXPORT virtual void SplitGeometryObjects();
61
62
63   /**
64    * Add new one reference geometry object for calculation case.
65    */
66   HYDRODATA_EXPORT virtual bool AddGeometryObject( const Handle(HYDROData_Object)& theObject );
67
68   /**
69    * Returns all reference geometry objects of calculation case.
70    */
71   HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetGeometryObjects() const;
72
73   /**
74    * Removes reference geometry object from calculation case.
75    */
76   HYDRODATA_EXPORT virtual void RemoveGeometryObject( const Handle(HYDROData_Object)& theObject );
77
78   /**
79    * Removes all reference geometry objects from calculation case.
80    */
81   HYDRODATA_EXPORT virtual void RemoveGeometryObjects();
82
83
84   /**
85    * Sets reference boundary polyline object for calculation case.
86    */
87   HYDRODATA_EXPORT virtual void SetBoundaryPolyline( const Handle(HYDROData_Polyline)& thePolyline );
88
89   /**
90    * Returns reference boundary polyline object of calculation case.
91    */
92   HYDRODATA_EXPORT virtual Handle(HYDROData_Polyline) GetBoundaryPolyline() const;
93
94   /**
95    * Remove reference boundary polyline object from calculation case.
96    */
97   HYDRODATA_EXPORT virtual void RemoveBoundaryPolyline();
98
99
100   /**
101    * Add new one child region for calculation case.
102    * The new region is added into the list of reference regions.
103    * The label of theZone is changed during this operation
104    * because of new region becomes the new parent for this zone.
105    */
106   HYDRODATA_EXPORT virtual Handle(HYDROData_Region) AddNewRegion( const Handle(HYDROData_Zone)& theZone );
107
108
109   /**
110    * Add new one reference region for calculation case.
111    * The label of theRegion is changed in case if old parent is not this calculation.
112    */
113   HYDRODATA_EXPORT virtual bool AddRegion( const Handle(HYDROData_Region)& theRegion );
114
115   /**
116    * Returns all reference regions of calculation case.
117    */
118   HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetRegions() const;
119
120   /**
121    * Updates names of regions to correct order.
122    */
123   HYDRODATA_EXPORT virtual void UpdateRegionsOrder();
124
125   /**
126    * Removes reference region from calculation case.
127    */
128   HYDRODATA_EXPORT virtual void RemoveRegion( const Handle(HYDROData_Region)& theRegion );
129
130   /**
131    * Removes all reference regions from calculation case.
132    */
133   HYDRODATA_EXPORT virtual void RemoveRegions();
134
135   /**
136    * Returns shell containing faces which correspond to regions.
137    * \return shell as TopoDS_Shell
138    */
139   HYDRODATA_EXPORT virtual TopoDS_Shell GetShell();
140
141 private:
142
143   /**
144    * Add new one region for calculation case.
145    * The new region is added into the list of reference regions.
146    */
147   HYDRODATA_EXPORT virtual Handle(HYDROData_Region) addNewRegion();
148
149
150 protected:
151
152   friend class HYDROData_Iterator;
153
154   /**
155    * Creates new object in the internal data structure. Use higher level objects 
156    * to create objects with real content.
157    */
158   HYDRODATA_EXPORT HYDROData_CalculationCase();
159
160   /**
161    * Destructs properties of the object and object itself, removes it from the document.
162    */
163   HYDRODATA_EXPORT ~HYDROData_CalculationCase();
164 };
165
166 #endif