Salome HOME
Common part of dump to python is moved to HYDROData_Entity.
[modules/hydro.git] / src / HYDROPy / HYDROData_Entity.sip
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 %ExportedHeaderCode
24 #include <HYDROData_Entity.h>
25 %End
26
27 typedef int ObjectKind;
28
29 const ObjectKind KIND_UNKNOWN;
30 const ObjectKind KIND_IMAGE;
31 const ObjectKind KIND_POLYLINE;
32 const ObjectKind KIND_BATHYMETRY;
33 const ObjectKind KIND_ALTITUDE;
34 const ObjectKind KIND_IMMERSIBLE_ZONE;
35 const ObjectKind KIND_RIVER;
36 const ObjectKind KIND_STREAM;
37 const ObjectKind KIND_CONFLUENCE;
38 const ObjectKind KIND_CHANNEL;
39 const ObjectKind KIND_OBSTACLE;
40 const ObjectKind KIND_DIGUE;
41 const ObjectKind KIND_PROFILE;
42 const ObjectKind KIND_PROFILEUZ;
43 const ObjectKind KIND_POLYLINEXY;
44 const ObjectKind KIND_CALCULATION;
45 const ObjectKind KIND_ZONE;
46 const ObjectKind KIND_REGION;
47
48 class HYDROData_Entity
49 {
50 %TypeHeaderCode
51 #include <HYDROData_Entity.h>
52 %End
53
54 %ConvertToSubClassCode
55     // HYDROData_Entity sub-classes provide a unique kind ID.
56     switch ( sipCpp->GetKind() )
57     {
58       case KIND_ALTITUDE:
59         sipClass = sipClass_HYDROData_AltitudeObject;
60         break;
61       
62       case KIND_IMAGE:
63         sipClass = sipClass_HYDROData_Image;
64         break;
65
66       case KIND_POLYLINEXY:
67         sipClass = sipClass_HYDROData_PolylineXY;
68         break;
69
70       case KIND_PROFILEUZ:
71         sipClass = sipClass_HYDROData_ProfileUZ;
72         break;
73
74       case KIND_BATHYMETRY:
75         sipClass = sipClass_HYDROData_Bathymetry;
76         break;
77
78       case KIND_OBSTACLE_ALTITUDE:
79         sipClass = sipClass_HYDROData_ObstacleAltitude;
80         break;
81
82       case KIND_CONFLUENCE:
83         sipClass = sipClass_HYDROData_Confluence;
84         break;
85         
86       case KIND_IMMERSIBLE_ZONE:
87         sipClass = sipClass_HYDROData_ImmersibleZone;
88         break;
89         
90       case KIND_DIGUE:
91         sipClass = sipClass_HYDROData_Digue;
92         break;
93
94       case KIND_CHANNEL:
95         sipClass = sipClass_HYDROData_Channel;
96         break;
97       
98       case KIND_CALCULATION:
99         sipClass = sipClass_HYDROData_CalculationCase;
100         break;
101
102       case KIND_OBSTACLE:
103         sipClass = sipClass_HYDROData_Obstacle;
104         break;
105
106       case KIND_POLYLINE:
107         sipClass = sipClass_HYDROData_Polyline3D;
108         break;
109
110       case KIND_PROFILE:
111         sipClass = sipClass_HYDROData_Profile;
112         break;
113
114       case KIND_REGION:
115         sipClass = sipClass_HYDROData_Region;
116         break;
117
118       case KIND_STREAM:
119         sipClass = sipClass_HYDROData_Stream;
120         break;
121
122       case KIND_ZONE:
123         sipClass = sipClass_HYDROData_Zone;
124         break;
125
126       case KIND_SHAPES_GROUP:
127         sipClass = sipClass_HYDROData_ShapesGroup;
128         break;
129         
130       case KIND_SPLITTED_GROUP:
131         sipClass = sipClass_HYDROData_SplittedShapesGroup;
132         break;
133
134       case KIND_UNKNOWN:
135         sipClass = sipClass_HYDROData_Entity;
136         break;
137
138       default:
139         // We don't recognise the type.
140         sipClass = NULL;
141     }
142 %End
143
144 public:
145
146   /**
147    * Returns the kind of this object. Must be redefined in all objects of known type.
148    */
149   virtual const ObjectKind GetKind() const;
150
151   /**
152    * Returns the name of this object.
153    */
154   virtual QString GetName() const;
155
156   /**
157    * Updates the name of this object.
158    */
159   virtual void SetName(const QString& theName);
160
161   /**
162    * Updates object state.
163    */
164   virtual void Update();
165
166   /**
167    * Returns data of object wrapped to QVariant.
168    * Base implementation returns null value.
169    */
170   virtual QVariant GetDataVariant();
171
172
173   /**
174    * Sets the "MustBeUpdated" flag: if object is depended on updated features.
175    * \param theFlag is true for objects that must be updated, false for up-to-date
176    */
177   virtual void SetToUpdate( bool theFlag );
178
179   /**
180    * Returns the "MustBeUpdated" flag: is object data must be updated or not
181    * \returns false if object is up to date
182    */
183   virtual bool IsMustBeUpdated() const;
184
185   /**
186    * Returns flag indicating that object is updateble or not.
187    */
188   virtual bool CanBeUpdated() const;
189
190   
191   /**
192    * Checks is object exists in the data structure.
193    * \returns true is object is not exists in the data model
194    */
195   bool IsRemoved() const;
196
197   /**
198    * Removes object from the data structure.
199    */
200   virtual void Remove();
201
202
203   /**
204    * Copies all properties of this to the destinated object.
205    * Objects must be the same type.
206    * \param theDestination initialized object (from any document) - target of copying
207    */
208   void CopyTo( HYDROData_Entity theDestination ) const [void ( const Handle_HYDROData_Entity& )];
209   %MethodCode
210     Handle(HYDROData_Entity) aCopyTo = createHandle( a0 );
211     if ( !aCopyTo.IsNull() )
212     {
213       Py_BEGIN_ALLOW_THREADS
214       sipSelfWasArg ? sipCpp->HYDROData_Entity::CopyTo( aCopyTo ):
215                       sipCpp->CopyTo( aCopyTo );
216       Py_END_ALLOW_THREADS
217     }
218   %End
219
220   /**
221    * Returns father object. For object created under root document label
222    * this method always return NULL object.
223    */
224   HYDROData_Entity GetFatherObject() const [Handle_HYDROData_Entity ()];
225   %MethodCode
226     Handle(HYDROData_Entity) aFather;
227     
228     Py_BEGIN_ALLOW_THREADS
229     aFather = sipSelfWasArg ? sipCpp->HYDROData_Entity::GetFatherObject() : 
230                               sipCpp->GetFatherObject();
231     Py_END_ALLOW_THREADS
232     
233     sipRes = createPointer( aFather );
234   %End
235
236   /**
237    * Returns the list of all reference objects of this object.
238    * Base implementation always return empty list.
239    */
240   virtual HYDROData_SequenceOfObjects GetAllReferenceObjects() const;
241
242 protected:
243
244   /**
245    * Creates new object in the internal data structure. Use higher level objects 
246    * to create objects with real content.
247    */
248   HYDROData_Entity();
249
250   /**
251    * Destructs properties of the object and object itself, removes it from the document.
252    */
253   virtual ~HYDROData_Entity();
254   
255 };