Salome HOME
The data model has been rolled back to previous version.
[modules/hydro.git] / src / HYDROData / HYDROData_Object.h
index e8669db7fecd44428e47d65c15836e6156acc8d2..594bbd60e0dc65c8a0f2b06ef3ed7fc0660d3b08 100644 (file)
@@ -1,50 +1,20 @@
+
 #ifndef HYDROData_Object_HeaderFile
 #define HYDROData_Object_HeaderFile
 
-#include <HYDROData.h>
-
-#include <NCollection_Sequence.hxx>
-#include <TDF_Label.hxx>
-#include <QMap>
-
-class QColor;
-class QString;
-class QVariant;
-class QStringList;
-class Handle(TDataStd_ReferenceList);
-class Handle_HYDROData_Object;
-
-///! Kind of an object in a document
-typedef int ObjectKind;
-///! Unrecognized object
-const ObjectKind KIND_UNKNOWN        = 0;
-const ObjectKind KIND_IMAGE          = 1;
-const ObjectKind KIND_POLYLINE       = 2;
-const ObjectKind KIND_VISUAL_STATE   = 3;
-const ObjectKind KIND_BATHYMETRY     = 4;
-const ObjectKind KIND_CALCULATION    = 5;
-const ObjectKind KIND_PROFILE        = 6;
-const ObjectKind KIND_PROFILES_GROUP = 7;
-const ObjectKind KIND_GUIDE_LINE     = 8;
-const ObjectKind KIND_ZONE           = 9;
-const ObjectKind KIND_REGION         = 10;
-const ObjectKind KIND_LAST           = KIND_REGION;
+#include <HYDROData_Entity.h>
 
-DEFINE_STANDARD_HANDLE(HYDROData_Object, MMgt_TShared)
+class TopoDS_Shape;
 
-typedef QMap<QString,Handle(Standard_Transient)> MapOfTreatedObjects;
-
-typedef NCollection_Sequence<Handle_HYDROData_Object> HYDROData_SequenceOfObjects;
+DEFINE_STANDARD_HANDLE(HYDROData_Object, HYDROData_Entity)
 
+class Handle(HYDROData_Bathymetry);
 
 /**\class HYDROData_Object
- * \brief Generic class of any object in the data model.
+ * \brief The base class for all geometrical objects in the HYDRO module.
  *
- * Interface for getting access to the object that belong to the data model.
- * Managed by Document. Provides access to the common properties: 
- * kind of an object, name.
  */
-class HYDROData_Object : public MMgt_TShared
+class HYDROData_Object : public HYDROData_Entity
 {
 protected:
   /**
@@ -52,81 +22,85 @@ protected:
    */
   enum DataTag
   {
-    DataTag_First = 0     ///< first tag, to reserve
-    // ...
+    DataTag_First = HYDROData_Entity::DataTag_First + 100, ///< first tag, to reserve
+    DataTag_TopShape,
+    DataTag_Shape3D,
+    DataTag_Bathymetry,   ///< reference bathymetry
+    DataTag_FillingColor, ///< filling color of geometrical object
+    DataTag_BorderColor   ///< border color of geometrical object
   };
 
 public:
   DEFINE_STANDARD_RTTI(HYDROData_Object);
 
   /**
-   * Returns the kind of this object. Must be redefined in all objects of known type.
+   * Sets the top(2d projection) shape of the object.
    */
-  HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_UNKNOWN;}
+  HYDRODATA_EXPORT virtual void SetTopShape( const TopoDS_Shape& theShape );
 
   /**
-   * Returns the name of this object.
+   * Returns the top shape of the object.
    */
-  HYDRODATA_EXPORT QString GetName() const;
+  HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const = 0;
 
   /**
-   * Updates the name of this object.
+   * Sets the 3d shape of the object.
    */
-  HYDRODATA_EXPORT void SetName(const QString& theName);
+  HYDRODATA_EXPORT virtual void SetShape3D( const TopoDS_Shape& theShape );
 
   /**
-   * Dump object to Python script representation.
-   * Base implementation returns empty list,
-   * You should reimplement this function in your derived class if it
-   * has Python API and can be imported/exported from/to Python script.
+   * Returns the 3d shape of the object.
    */
-  HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
+  HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const = 0;
 
+  
   /**
-   * Updates object state.
-   * Base implementation dose nothing.
-   * \param theIsForce force reupdating of data object
+   * Set reference bathymetry object for geometry object.
    */
-  HYDRODATA_EXPORT virtual void Update( const bool theIsForce = true );
+  HYDRODATA_EXPORT virtual void SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry );
 
   /**
-   * Returns data of object wrapped to QVariant.
-   * Base implementation returns null value.
+   * Returns reference bathymetry object of geometry object.
    */
-  HYDRODATA_EXPORT virtual QVariant GetDataVariant();
+  HYDRODATA_EXPORT virtual Handle(HYDROData_Bathymetry) GetBathymetry() const;
 
   /**
-   * Checks is object exists in the data structure.
-   * \returns true is object is not exists in the data model
+   * Clear the reference bathymetry object for geometry object.
+   */
+  HYDRODATA_EXPORT virtual void RemoveBathymetry();
+
+   /**
+   * Sets filling color for object.
    */
-  HYDRODATA_EXPORT bool IsRemoved() const;
+  HYDRODATA_EXPORT virtual void SetFillingColor( const QColor& theColor );
 
   /**
-   * Removes object from the data structure.
+   * Returns filling color of object.
    */
-  HYDRODATA_EXPORT void Remove();
+  HYDRODATA_EXPORT virtual QColor GetFillingColor() const;
+
+   /**
+   * Sets border color for object.
+   */
+  HYDRODATA_EXPORT virtual void SetBorderColor( const QColor& theColor );
 
   /**
-   * Returns unique integer identifier of the object (may be used for ordering of objects)
+   * Returns border color of object.
    */
-  HYDRODATA_EXPORT inline int ID() const {return myLab.Tag();}
+  HYDRODATA_EXPORT virtual QColor GetBorderColor() const;
 
   /**
-   * Copies all properties of this to the destinated object.
-   * Objects must be the same type.
-   * \param theDestination initialized object (from any document) - target of copying
+   * Returns default filling color for new object.
    */
-  HYDRODATA_EXPORT void CopyTo(Handle_HYDROData_Object theDestination) const;
+  HYDRODATA_EXPORT static QColor DefaultFillingColor();
 
   /**
-   * Returns the label of this object.
+   * Returns default border color for new object.
    */
-  HYDRODATA_EXPORT TDF_Label& Label() {return myLab;}
+  HYDRODATA_EXPORT static QColor DefaultBorderColor();
 
 protected:
 
-  friend class HYDROData_Iterator;
-
   /**
    * Creates new object in the internal data structure. Use higher level objects 
    * to create objects with real content.
@@ -138,124 +112,18 @@ protected:
    */
   virtual HYDRODATA_EXPORT ~HYDROData_Object();
 
-  /**
-   * Put the object to the label of the document.
-   * \param theLabel new label of the object
-   */
-  HYDRODATA_EXPORT virtual void SetLabel(TDF_Label theLabel);
-
-  /**
-   * Internal method that used to store the byte array attribute
-   * \param theTag tag of a label to store attribute (for 0 this is myLab)
-   * \param theData pointer to bytes array
-   * \param theLen number of bytes in byte array that must be stored
-   */
-  void SaveByteArray(const int theTag, const char* theData, const int theLen);
-
-  /**
-   * Internal method that used to retreive the content of byte array attribute
-   * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
-   * \param theLen number of bytes in byte array
-   * \returns pointer to the internal data structure wit harray content, 
-   *          or NULL if array size is zero
-   */
-  const char* ByteArray(const int theTag, int& theLen) const;
-
-  /**
-   * Internal method that used to store the reference object label attribute
-   * \param theObj pointer to reference object
-   * \param theTag tag of a label to store attribute (for 0 this is myLab)
-   */
-  int NbReferenceObjects( const int theTag = 0 ) const;
-
-  /**
-   * Internal method that used to store the reference object label attribute
-   * \param theObj pointer to reference object
-   * \param theTag tag of a label to store attribute (for 0 this is myLab)
-   */
-  void AddReferenceObject( const Handle_HYDROData_Object& theObj,
-                           const int                      theTag = 0 );
-
-  /**
-   * Internal method that used to store the reference object label attribute
-   * \param theObj pointer to reference object
-   * \param theTag tag of a label to store attribute (for 0 this is myLab)
-   * \param theIndex index in the list of references 
-             - if more that len then just append it to the end of list
-             - if less than zero then prepend to the list
-             - indexing starts from 0
-   */
-  void SetReferenceObject( const Handle_HYDROData_Object& theObj,
-                           const int                      theTag = 0,
-                           const int                      theIndex = 0 );
-
-  /**
-   * Internal method that used to store the reference object label attribute
-   * \param theObjects sequence with pointers to reference objects
-   * \param theTag tag of a label to store attribute (for 0 this is myLab)
-   */
-  void SetReferenceObjects( const HYDROData_SequenceOfObjects& theObjects,
-                            const int                          theTag = 0 );
-
-  /**
-   * Internal method that used to retreive the reference object(s) attribute
-   * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
-   * \param theIndex index in the list of references 
-   *        - indexing starts from 0
-   * \returns pointer to reference object or NULL if label is not set
-   */
-  Handle_HYDROData_Object GetReferenceObject( const int theTag   = 0,
-                                              const int theIndex = 0 ) const;
-
-  HYDROData_SequenceOfObjects GetReferenceObjects( const int theTag = 0 ) const;
-
-  /**
-   * Internal method that used to remove the reference object attribute
-   * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
-   * \param theIndex index in the list of references 
-   *        - indexing starts from 0
-   */
-  void RemoveReferenceObject( const int theTag = 0, const int theIndex = 0 );
-
-  /**
-   * Internal method that used to clear list of the reference objects attribute
-   * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
-   */
-  void ClearReferenceObjects( const int theTag = 0 );
+protected:
 
   /**
-   * Internal method that used to store the color attribute
-   * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
-   * \param theColor color to save
+   * Retrieve the top shape of the object from data label.
    */
-  void SetColor( const QColor& theColor, const int theTag = 0 );
+  HYDRODATA_EXPORT TopoDS_Shape getTopShape() const;
 
   /**
-   * Internal method that used to retreive the color attribute
-   * \param theTag tag of a label that keeps the attribute (for 0 this is myLab)
-   * \param theDefColor default color to return if attribute has not been set before
+   * Retrieve the 3d shape of the object from data label.
    */
-  QColor GetColor( const QColor& theDefColor, const int theTag = 0 ) const;
-
-protected:
+  HYDRODATA_EXPORT TopoDS_Shape getShape3D() const;
 
-  void setPythonReferenceObject( MapOfTreatedObjects&            theTreatedObjects,
-                                 QStringList&                    theScript,
-                                 const Handle(HYDROData_Object)& theRefObject,
-                                 const QString&                  theMethod ) const;
-protected:
-
-  Handle(TDataStd_ReferenceList) getReferenceList( const int  theTag,
-                                                   const bool theIsCreate ) const;
-
-
-protected:
-  /// Array of pointers to the properties of this object; index in this array is returned by \a AddProperty.
-  TDF_Label myLab; ///< label of this object
 };
 
-///! Is Equal for HYDROData_Object mapping
-HYDRODATA_EXPORT bool IsEqual(const Handle_HYDROData_Object& theObj1, const Handle_HYDROData_Object& theObj2);
-
 #endif