1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef HYDROData_Entity_HeaderFile
20 #define HYDROData_Entity_HeaderFile
22 #include "HYDROData.h"
23 #include <NCollection_Sequence.hxx>
24 #include <TDF_Label.hxx>
31 class Handle(TDataStd_ReferenceList);
32 class Handle_HYDROData_Entity;
35 ///! Kind of an object in a document
36 typedef int ObjectKind;
38 const ObjectKind KIND_UNKNOWN = 0; ///! Unrecognized object
39 const ObjectKind KIND_IMAGE = 1;
40 const ObjectKind KIND_POLYLINE = 2;
41 const ObjectKind KIND_BATHYMETRY = 3;
42 const ObjectKind KIND_ALTITUDE = 4;
43 const ObjectKind KIND_IMMERSIBLE_ZONE = 5;
44 const ObjectKind KIND_RIVER = 6;
45 const ObjectKind KIND_STREAM = 7;
46 const ObjectKind KIND_CONFLUENCE = 8;
47 const ObjectKind KIND_CHANNEL = 9;
48 const ObjectKind KIND_OBSTACLE = 10;
49 const ObjectKind KIND_DIGUE = 11;
50 const ObjectKind KIND_PROFILE = 12;
51 const ObjectKind KIND_PROFILEUZ = 13;
52 const ObjectKind KIND_POLYLINEXY = 14;
53 const ObjectKind KIND_CALCULATION = 15;
54 const ObjectKind KIND_ZONE = 16;
55 const ObjectKind KIND_REGION = 17;
56 const ObjectKind KIND_VISUAL_STATE = 18;
57 const ObjectKind KIND_ARTIFICIAL_OBJECT = 19;
58 const ObjectKind KIND_NATURAL_OBJECT = 20;
59 const ObjectKind KIND_DUMMY_3D = 21;
60 const ObjectKind KIND_SHAPES_GROUP = 22;
61 const ObjectKind KIND_SPLIT_GROUP = 23;
62 const ObjectKind KIND_STREAM_ALTITUDE = 24;
63 const ObjectKind KIND_OBSTACLE_ALTITUDE = 25;
64 const ObjectKind KIND_STRICKLER_TABLE = 26;
65 const ObjectKind KIND_LAND_COVER_OBSOLETE = 27;
66 const ObjectKind KIND_LAND_COVER_MAP = 28;
67 const ObjectKind KIND_LAST = KIND_LAND_COVER_MAP;
69 DEFINE_STANDARD_HANDLE(HYDROData_Entity, MMgt_TShared)
71 class MapOfTreatedObjects : public QMap<QString,Handle(Standard_Transient)>
75 class HYDRODATA_EXPORT HYDROData_SequenceOfObjects : public NCollection_Sequence<Handle_HYDROData_Entity>
78 HYDROData_SequenceOfObjects();
79 HYDROData_SequenceOfObjects( const HYDROData_SequenceOfObjects& );
80 HYDROData_SequenceOfObjects( const NCollection_Sequence<Handle_HYDROData_Entity>& );
83 ///! Is Equal for HYDROData_Entity mapping
84 HYDRODATA_EXPORT bool IsEqual(const Handle_HYDROData_Entity& theObj1, const Handle_HYDROData_Entity& theObj2);
86 /**\class HYDROData_Entity
87 * \brief Generic class of any object in the data model.
89 * Interface for getting access to the object that belong to the data model.
90 * Managed by Document. Provides access to the common properties:
91 * kind of an object, name.
93 class HYDROData_Entity : public MMgt_TShared
97 * Enumeration of tags corresponding to the persistent object parameters.
101 DataTag_First = 0, ///< first tag, to reserve
102 DataTag_ZLevel, ///< z-level of object presentation
114 Geom_3d = Geom_2d | Geom_Z,
115 Geom_2d_and_groups = Geom_2d | Geom_Groups,
116 Geom_All = Geom_3d | Geom_Groups | Geom_No,
120 DEFINE_STANDARD_RTTI(HYDROData_Entity);
123 * Returns the kind of this object. Must be redefined in all objects of known type.
125 HYDRODATA_EXPORT virtual const ObjectKind GetKind() const { return KIND_UNKNOWN; }
128 * Returns the name of this object.
130 HYDRODATA_EXPORT virtual QString GetName() const;
133 * Updates the name of this object.
135 HYDRODATA_EXPORT void SetName( const QString& theName );
138 * Returns the name of this object valid for Python script.
140 HYDRODATA_EXPORT virtual QString GetObjPyName() const;
143 * Dump object to Python script representation.
144 * Base implementation returns empty list,
145 * You should reimplement this function in your derived class if it
146 * has Python API and can be imported/exported from/to Python script.
148 HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath,
149 MapOfTreatedObjects& theTreatedObjects ) const;
152 * Updates object state. Base implementation dose nothing.
154 HYDRODATA_EXPORT virtual void Update();
156 HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
159 * Checks that object has 2D presentation. Base implementation returns false.
161 HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
164 * Show object at the top of other model objects.
166 HYDRODATA_EXPORT virtual void Show();
170 * Returns data of object wrapped to QVariant.
171 * Base implementation returns null value.
173 HYDRODATA_EXPORT virtual QVariant GetDataVariant();
177 HYDRODATA_EXPORT virtual void ClearChanged();
178 HYDRODATA_EXPORT virtual void Changed( Geometry );
180 HYDRODATA_EXPORT bool IsMustBeUpdated( Geometry ) const;
183 * Returns flag indicating that object is updateble or not.
185 HYDRODATA_EXPORT virtual bool CanBeUpdated() const;
189 * Checks is object exists in the data structure.
190 * \returns true is object is not exists in the data model
192 HYDRODATA_EXPORT bool IsRemoved() const;
195 * Removes object and it child sub-objects from the data structure.
197 HYDRODATA_EXPORT virtual void Remove();
200 * Returns flag indicating that object can be removed or not.
201 * Reimplement this method in class which can't be removed
202 * separately with it parent object.
203 * Base implementaiton returns always TRUE.
205 HYDRODATA_EXPORT virtual bool CanRemove();
208 * Copies all properties of this to the destinated object.
209 * Objects must be the same type.
210 * \param theDestination initialized object (from any document) - target of copying
212 HYDRODATA_EXPORT virtual void CopyTo( const Handle(HYDROData_Entity)& theDestination,
213 bool isGenerateNewName ) const;
216 * Returns the label of this object.
218 HYDRODATA_EXPORT TDF_Label& Label() { return myLab; }
222 * Returns father object. For object created under root document label
223 * this method always return NULL object.
225 HYDRODATA_EXPORT virtual Handle(HYDROData_Entity) GetFatherObject() const;
229 * Returns the list of all reference objects of this object.
230 * Base implementation always return empty list.
232 HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetAllReferenceObjects() const;
236 * Returns the z-level for object presentation, -1 if no z-level.
238 HYDRODATA_EXPORT virtual Standard_Boolean GetZLevel( Standard_Integer& theLevel ) const;
241 * Set the z-level for object presentation.
243 HYDRODATA_EXPORT virtual void SetZLevel( const Standard_Integer& theLevel );
246 * Remove the z-level of object presentation.
248 HYDRODATA_EXPORT virtual void RemoveZLevel();
251 Find the Python object in the document by the object name.
252 @param theTreatedObjects the map of treated objects
253 @param theScript the script
255 void findPythonReferenceObject( MapOfTreatedObjects& theTreatedObjects,
256 QStringList& theScript ) const;
259 * Internal method that used to store the color attribute
260 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
261 * \param theColor color to save
263 HYDRODATA_EXPORT void SetColor( const QColor& theColor, const int theTag = 0 );
266 * Internal method that used to retreive the color attribute
267 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
268 * \param theDefColor default color to return if attribute has not been set before
270 HYDRODATA_EXPORT QColor GetColor( const QColor& theDefColor, const int theTag = 0 ) const;
274 friend class HYDROData_Iterator;
277 * Creates new object in the internal data structure. Use higher level objects
278 * to create objects with real content.
280 HYDRODATA_EXPORT HYDROData_Entity( Geometry );
283 * Destructs properties of the object and object itself, removes it from the document.
285 virtual HYDRODATA_EXPORT ~HYDROData_Entity();
288 * Put the object to the label of the document.
289 * \param theLabel new label of the object
291 HYDRODATA_EXPORT virtual void SetLabel( const TDF_Label& theLabel );
294 * Internal method that used to store the byte array attribute
295 * \param theTag tag of a label to store attribute (for 0 this is myLab)
296 * \param theData pointer to bytes array
297 * \param theLen number of bytes in byte array that must be stored
299 void SaveByteArray(const int theTag, const char* theData, const int theLen);
302 * Internal method that used to retreive the content of byte array attribute
303 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
304 * \param theLen number of bytes in byte array
305 * \returns pointer to the internal data structure wit harray content,
306 * or NULL if array size is zero
308 const char* ByteArray(const int theTag, int& theLen) const;
311 * Internal method that used to store the reference object label attribute
312 * \param theObj pointer to reference object
313 * \param theTag tag of a label to store attribute (for 0 this is myLab)
315 int NbReferenceObjects( const int theTag = 0 ) const;
318 * Internal method that used to check object for entry into the reference list
319 * \param theObj pointer to reference object
320 * \param theTag tag of a label to store attribute (for 0 this is myLab)
322 bool HasReference( const Handle_HYDROData_Entity& theObj,
323 const int theTag = 0 ) const;
326 * Internal method that used to store the reference object label attribute
327 * \param theObj pointer to reference object
328 * \param theTag tag of a label to store attribute (for 0 this is myLab)
330 void AddReferenceObject( const Handle_HYDROData_Entity& theObj,
331 const int theTag = 0 );
334 * Internal method that used to store the reference object label attribute
335 * \param theObj pointer to reference object
336 * \param theTag tag of a label to store attribute (for 0 this is myLab)
337 * \param theIndex index in the list of references
338 - if more that len then just append it to the end of list
339 - if less than zero then prepend to the list
340 - indexing starts from 0
342 void SetReferenceObject( const Handle_HYDROData_Entity& theObj,
343 const int theTag = 0,
344 const int theIndex = 0 );
347 * Internal method that used to store the reference object label attribute
348 * \param theObj pointer to reference object
349 * \param theTag tag of a label to store attribute (for 0 this is myLab)
350 * \param theBeforeIndex index in the list of references
351 - if more that len then just append it to the end of list
352 - if less than zero then prepend to the list
353 - indexing starts from 0
355 void InsertReferenceObject( const Handle_HYDROData_Entity& theObj,
356 const int theTag = 0,
357 const int theBeforeIndex = 0 );
360 * Internal method that used to store the reference object label attribute
361 * \param theObjects sequence with pointers to reference objects
362 * \param theTag tag of a label to store attribute (for 0 this is myLab)
364 void SetReferenceObjects( const HYDROData_SequenceOfObjects& theObjects,
365 const int theTag = 0 );
368 * Internal method that used to retreive the reference object(s) attribute
369 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
370 * \param theIndex index in the list of references
371 * - indexing starts from 0
372 * \returns pointer to reference object or NULL if label is not set
374 Handle_HYDROData_Entity GetReferenceObject( const int theTag = 0,
375 const int theIndex = 0 ) const;
377 HYDROData_SequenceOfObjects GetReferenceObjects( const int theTag = 0 ) const;
380 * Internal method that used to remove the reference object attribute
381 * \param theRefLabel reference object label to remove
382 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
384 void RemoveReferenceObject( const TDF_Label& theRefLabel, const int theTag = 0 );
387 * Internal method that used to remove the reference object attribute
388 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
389 * \param theIndex index in the list of references
390 * - indexing starts from 0
392 void RemoveReferenceObject( const int theTag = 0, const int theIndex = 0 );
395 * Internal method that used to clear list of the reference objects attribute
396 * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
398 void ClearReferenceObjects( const int theTag = 0 );
403 * Dump the initial object creation to a Python script.
404 * You should call it from DumpToPython implementation before
405 * dumping fields of the object.
407 HYDRODATA_EXPORT virtual QStringList dumpObjectCreation( MapOfTreatedObjects& theTreatedObjects ) const;
410 * Returns an object type name as a string for dumping to Python.
412 QString getPyTypeID() const;
414 void setPythonReferenceObject( const QString& thePyScriptPath,
415 MapOfTreatedObjects& theTreatedObjects,
416 QStringList& theScript,
417 const Handle(HYDROData_Entity)& theRefObject,
418 const QString& theMethod ) const;
420 bool checkObjectPythonDefinition( const QString& thePyScriptPath,
421 MapOfTreatedObjects& theTreatedObjects,
422 QStringList& theScript,
423 const Handle(HYDROData_Entity)& theRefObject ) const;
425 void setPythonObjectColor( QStringList& theScript,
426 const QColor& theColor,
427 const QColor& theDefaultColor,
428 const QString& theMethod ) const;
431 Handle(TDataStd_ReferenceList) getReferenceList( const int theTag,
432 const bool theIsCreate ) const;
434 void SetShape( int theTag, const TopoDS_Shape& theShape );
435 TopoDS_Shape GetShape( int theTag ) const;
437 void SetDouble( int theTag, double theValue );
438 double GetDouble( int theTag, double theDefValue = 0.0 ) const;
440 int GetGeomChangeFlag() const;
443 /// Array of pointers to the properties of this object; index in this array is returned by \a AddProperty.
444 TDF_Label myLab; ///< label of this object