Salome HOME
Methods to work with imagw references:
[modules/hydro.git] / src / HYDROData / HYDROData_Entity.h
1
2 #ifndef HYDROData_Entity_HeaderFile
3 #define HYDROData_Entity_HeaderFile
4
5 #include "HYDROData.h"
6
7 #include <NCollection_Sequence.hxx>
8
9 #include <TDF_Label.hxx>
10
11 #include <QMap>
12
13 class QColor;
14 class QString;
15 class QVariant;
16 class QStringList;
17 class Handle(TDataStd_ReferenceList);
18 class Handle_HYDROData_Entity;
19
20 ///! Kind of an object in a document
21 typedef int ObjectKind;
22
23 const ObjectKind KIND_UNKNOWN         = 0; ///! Unrecognized object
24 const ObjectKind KIND_IMAGE           = 1;
25 const ObjectKind KIND_POLYLINE        = 2;
26 const ObjectKind KIND_BATHYMETRY      = 3;
27 const ObjectKind KIND_ALTITUDE        = 4;
28 const ObjectKind KIND_IMMERSIBLE_ZONE = 5;
29 const ObjectKind KIND_RIVER           = 6;
30 const ObjectKind KIND_STREAM          = 7;
31 const ObjectKind KIND_CONFLUENCE      = 8;
32 const ObjectKind KIND_CHANNEL         = 9;
33 const ObjectKind KIND_OBSTACLE        = 10;
34 const ObjectKind KIND_DIGUE           = 11;
35 const ObjectKind KIND_PROFILE         = 12;
36 const ObjectKind KIND_PROFILEUZ       = 13;
37 const ObjectKind KIND_POLYLINEXY      = 14;
38 const ObjectKind KIND_CALCULATION     = 15;
39 const ObjectKind KIND_ZONE            = 16;
40 const ObjectKind KIND_REGION          = 17;
41 const ObjectKind KIND_VISUAL_STATE    = 18;
42 const ObjectKind KIND_LAST            = KIND_VISUAL_STATE;
43
44 DEFINE_STANDARD_HANDLE(HYDROData_Entity, MMgt_TShared)
45
46 typedef QMap<QString,Handle(Standard_Transient)> MapOfTreatedObjects;
47
48 typedef NCollection_Sequence<Handle_HYDROData_Entity> HYDROData_SequenceOfObjects;
49
50
51 /**\class HYDROData_Entity
52  * \brief Generic class of any object in the data model.
53  *
54  * Interface for getting access to the object that belong to the data model.
55  * Managed by Document. Provides access to the common properties: 
56  * kind of an object, name.
57  */
58 class HYDROData_Entity : public MMgt_TShared
59 {
60
61 protected:
62
63   /**
64    * Enumeration of tags corresponding to the persistent object parameters.
65    */
66   enum DataTag
67   {
68     DataTag_First = 0     ///< first tag, to reserve
69     // ...
70   };
71
72 public:
73   DEFINE_STANDARD_RTTI(HYDROData_Entity);
74
75   /**
76    * Returns the kind of this object. Must be redefined in all objects of known type.
77    */
78   HYDRODATA_EXPORT virtual const ObjectKind GetKind() const { return KIND_UNKNOWN; }
79
80   /**
81    * Returns the name of this object.
82    */
83   HYDRODATA_EXPORT QString GetName() const;
84
85   /**
86    * Updates the name of this object.
87    */
88   HYDRODATA_EXPORT void SetName(const QString& theName);
89
90   /**
91    * Dump object to Python script representation.
92    * Base implementation returns empty list,
93    * You should reimplement this function in your derived class if it
94    * has Python API and can be imported/exported from/to Python script.
95    */
96   HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
97
98   /**
99    * Updates object state. Base implementation dose nothing.
100    */
101   HYDRODATA_EXPORT virtual void Update();
102
103   /**
104    * Returns data of object wrapped to QVariant.
105    * Base implementation returns null value.
106    */
107   HYDRODATA_EXPORT virtual QVariant GetDataVariant();
108
109   /**
110    * Checks is object exists in the data structure.
111    * \returns true is object is not exists in the data model
112    */
113   HYDRODATA_EXPORT bool IsRemoved() const;
114
115   /**
116    * Removes object and it child sub-objects from the data structure.
117    */
118   HYDRODATA_EXPORT virtual void Remove();
119
120   /**
121    * Returns unique integer identifier of the object (may be used for ordering of objects)
122    */
123   HYDRODATA_EXPORT inline int ID() const {return myLab.Tag();}
124
125   /**
126    * Copies all properties of this to the destinated object.
127    * Objects must be the same type.
128    * \param theDestination initialized object (from any document) - target of copying
129    */
130   HYDRODATA_EXPORT void CopyTo(Handle_HYDROData_Entity theDestination) const;
131
132   /**
133    * Returns the label of this object.
134    */
135   HYDRODATA_EXPORT TDF_Label& Label() {return myLab;}
136
137   /**
138    * Returns father object. For object created under root document label
139    * this method always return NULL object.
140    */
141   HYDRODATA_EXPORT virtual Handle(HYDROData_Entity) GetFatherObject() const;
142
143 protected:
144
145   friend class HYDROData_Iterator;
146
147   /**
148    * Creates new object in the internal data structure. Use higher level objects 
149    * to create objects with real content.
150    */
151   HYDRODATA_EXPORT HYDROData_Entity();
152
153   /**
154    * Destructs properties of the object and object itself, removes it from the document.
155    */
156   virtual HYDRODATA_EXPORT ~HYDROData_Entity();
157
158   /**
159    * Put the object to the label of the document.
160    * \param theLabel new label of the object
161    */
162   HYDRODATA_EXPORT virtual void SetLabel(TDF_Label theLabel);
163
164   /**
165    * Internal method that used to store the byte array attribute
166    * \param theTag tag of a label to store attribute (for 0 this is myLab)
167    * \param theData pointer to bytes array
168    * \param theLen number of bytes in byte array that must be stored
169    */
170   void SaveByteArray(const int theTag, const char* theData, const int theLen);
171
172   /**
173    * Internal method that used to retreive the content of byte array attribute
174    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
175    * \param theLen number of bytes in byte array
176    * \returns pointer to the internal data structure wit harray content, 
177    *          or NULL if array size is zero
178    */
179   const char* ByteArray(const int theTag, int& theLen) const;
180
181   /**
182    * Internal method that used to store the reference object label attribute
183    * \param theObj pointer to reference object
184    * \param theTag tag of a label to store attribute (for 0 this is myLab)
185    */
186   int NbReferenceObjects( const int theTag = 0 ) const;
187
188   /**
189    * Internal method that used to check object for entry into the reference list
190    * \param theObj pointer to reference object
191    * \param theTag tag of a label to store attribute (for 0 this is myLab)
192    */
193   bool HasReference( const Handle_HYDROData_Entity& theObj,
194                      const int                      theTag = 0 ) const;
195
196   /**
197    * Internal method that used to store the reference object label attribute
198    * \param theObj pointer to reference object
199    * \param theTag tag of a label to store attribute (for 0 this is myLab)
200    */
201   void AddReferenceObject( const Handle_HYDROData_Entity& theObj,
202                            const int                      theTag = 0 );
203
204   /**
205    * Internal method that used to store the reference object label attribute
206    * \param theObj pointer to reference object
207    * \param theTag tag of a label to store attribute (for 0 this is myLab)
208    * \param theIndex index in the list of references 
209              - if more that len then just append it to the end of list
210              - if less than zero then prepend to the list
211              - indexing starts from 0
212    */
213   void SetReferenceObject( const Handle_HYDROData_Entity& theObj,
214                            const int                      theTag = 0,
215                            const int                      theIndex = 0 );
216
217   /**
218    * Internal method that used to store the reference object label attribute
219    * \param theObj pointer to reference object
220    * \param theTag tag of a label to store attribute (for 0 this is myLab)
221    * \param theBeforeIndex index in the list of references 
222              - if more that len then just append it to the end of list
223              - if less than zero then prepend to the list
224              - indexing starts from 0
225    */
226   void InsertReferenceObject( const Handle_HYDROData_Entity& theObj,
227                               const int                      theTag = 0,
228                               const int                      theBeforeIndex = 0 );
229
230   /**
231    * Internal method that used to store the reference object label attribute
232    * \param theObjects sequence with pointers to reference objects
233    * \param theTag tag of a label to store attribute (for 0 this is myLab)
234    */
235   void SetReferenceObjects( const HYDROData_SequenceOfObjects& theObjects,
236                             const int                          theTag = 0 );
237
238   /**
239    * Internal method that used to retreive the reference object(s) attribute
240    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
241    * \param theIndex index in the list of references 
242    *        - indexing starts from 0
243    * \returns pointer to reference object or NULL if label is not set
244    */
245   Handle_HYDROData_Entity GetReferenceObject( const int theTag   = 0,
246                                               const int theIndex = 0 ) const;
247
248   HYDROData_SequenceOfObjects GetReferenceObjects( const int theTag = 0 ) const;
249
250   /**
251    * Internal method that used to remove the reference object attribute
252    * \param theRefLabel reference object label to remove
253    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
254    */
255   void RemoveReferenceObject( const TDF_Label& theRefLabel, const int theTag = 0 );
256
257   /**
258    * Internal method that used to remove the reference object attribute
259    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
260    * \param theIndex index in the list of references 
261    *        - indexing starts from 0
262    */
263   void RemoveReferenceObject( const int theTag = 0, const int theIndex = 0 );
264
265   /**
266    * Internal method that used to clear list of the reference objects attribute
267    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
268    */
269   void ClearReferenceObjects( const int theTag = 0 );
270
271   /**
272    * Internal method that used to store the color attribute
273    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
274    * \param theColor color to save
275    */
276   void SetColor( const QColor& theColor, const int theTag = 0 );
277
278   /**
279    * Internal method that used to retreive the color attribute
280    * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
281    * \param theDefColor default color to return if attribute has not been set before
282    */
283   QColor GetColor( const QColor& theDefColor, const int theTag = 0 ) const;
284
285  
286 protected:
287
288   void setPythonReferenceObject( MapOfTreatedObjects&            theTreatedObjects,
289                                  QStringList&                    theScript,
290                                  const Handle(HYDROData_Entity)& theRefObject,
291                                  const QString&                  theMethod ) const;
292 protected:
293
294   Handle(TDataStd_ReferenceList) getReferenceList( const int  theTag,
295                                                    const bool theIsCreate ) const;
296
297
298 protected:
299   /// Array of pointers to the properties of this object; index in this array is returned by \a AddProperty.
300   TDF_Label myLab; ///< label of this object
301 };
302
303 ///! Is Equal for HYDROData_Entity mapping
304 HYDRODATA_EXPORT bool IsEqual(const Handle_HYDROData_Entity& theObj1, const Handle_HYDROData_Entity& theObj2);
305
306 #endif