Salome HOME
17.12.2013. Added Partition algorithm (draft version).
[modules/hydro.git] / src / HYDROData / HYDROData_Object.h
index 053a39e4a808f65c234cc946e45fa929def83499..e20e47893a0088434f1fb2ce685d1fde88ed7fa0 100644 (file)
@@ -4,11 +4,13 @@
 
 #include <HYDROData_Entity.h>
 
-class TopoDS_Shape;
 
 DEFINE_STANDARD_HANDLE(HYDROData_Object, HYDROData_Entity)
 
+class TopoDS_Shape;
 class Handle(HYDROData_Bathymetry);
+class Handle(HYDROData_DummyObject3D);
+class Handle(HYDROData_ShapesGroup);
 
 /**\class HYDROData_Object
  * \brief The base class for all geometrical objects in the HYDRO module.
@@ -27,7 +29,9 @@ protected:
     DataTag_Shape3D,
     DataTag_Bathymetry,   ///< reference bathymetry
     DataTag_FillingColor, ///< filling color of geometrical object
-    DataTag_BorderColor   ///< border color of geometrical object
+    DataTag_BorderColor,  ///< border color of geometrical object
+    DataTag_Object3D,     ///< child 3D object
+    DataTag_EdgesGroup,   ///< child group objects
   };
 
 public:
@@ -44,6 +48,12 @@ public:
    */
   HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetAllReferenceObjects() const;
 
+  /**
+   * Sets the "MustBeUpdated" flag: if object is depended on updated features.
+   * Reimplemented to update the state of child 3D object.
+   */
+  HYDRODATA_EXPORT virtual void SetToUpdate( bool theFlag );
+
 
   /**
    * Sets the top(2d projection) shape of the object.
@@ -66,10 +76,21 @@ public:
   HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const = 0;
 
   
+  /**
+   * Returns reference object which represent the 3D shape of object.
+   */
+  HYDRODATA_EXPORT virtual Handle(HYDROData_DummyObject3D) GetObject3D() const;
+
+  /**
+   * Returns sequence of object groups.
+   */
+  HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetGroups() const;
+
+
   /**
    * Set reference bathymetry object for geometry object.
    */
-  HYDRODATA_EXPORT virtual void SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry );
+  HYDRODATA_EXPORT virtual bool SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry );
 
   /**
    * Returns reference bathymetry object of geometry object.
@@ -111,6 +132,18 @@ public:
    */
   HYDRODATA_EXPORT static QColor DefaultBorderColor();
 
+protected:
+
+  /**
+   * Returns default filling color for new object.
+   */
+  HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const;
+
+  /**
+   * Returns default border color for new object.
+   */
+  HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const;
+
 protected:
 
   /**
@@ -126,6 +159,31 @@ protected:
 
 protected:
 
+  /**
+   * Checks and if necessary create child 3D object.
+   * Reimplement this function in your subclass if you 
+   * do not want to create child 3D object.
+   */
+  HYDRODATA_EXPORT virtual void checkAndSetObject3D();
+
+
+  /**
+   * Create new one child group object.
+   */
+  HYDRODATA_EXPORT virtual Handle(HYDROData_ShapesGroup) createGroupObject();
+
+  /**
+   * Create all necessary child group objects.
+   * Base implementation does nothing.
+   */
+  HYDRODATA_EXPORT virtual void createGroupObjects();
+
+  /**
+   * Remove all child group objects.
+   */
+  HYDRODATA_EXPORT virtual void removeGroupObjects();
+
+
   /**
    * Retrieve the top shape of the object from data label.
    */