Salome HOME
refs #430: incorrect coordinates in dump polyline
[modules/hydro.git] / src / HYDROData / HYDROData_ImmersibleZone.h
index 8f9e2fc9e3c51d9679b26d7789f4d71e686225d3..9e0b929db973e7ee00af9b12098851049200e4d4 100644 (file)
@@ -6,7 +6,7 @@
 
 DEFINE_STANDARD_HANDLE(HYDROData_ImmersibleZone, HYDROData_NaturalObject)
 
-class Handle(HYDROData_Polyline);
+class Handle(HYDROData_PolylineXY);
 
 /**\class HYDROData_ImmersibleZone
  * \brief 
@@ -21,8 +21,6 @@ protected:
   enum DataTag
   {
     DataTag_First = HYDROData_NaturalObject::DataTag_First + 100, ///< first tag, to reserve
-    DataTag_FillingColor, ///< filling color of immersible zone
-    DataTag_BorderColor,  ///< border color of immersible zone
     DataTag_Polyline,     ///< reference polyline
 };
 
@@ -39,6 +37,22 @@ public:
    */
   HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
 
+  /**
+   * Returns the list of all reference objects of this object.
+   */
+  HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetAllReferenceObjects() const;
+
+  /**
+   * Update the immersible zone object.
+   * Call this method whenever you made changes for object data.
+   */
+  HYDRODATA_EXPORT virtual void Update();
+
+  /**
+   * Checks that object has 2D presentation. Reimlemented to retun true.
+   */
+  HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
+
   /**
    * Returns the top shape of the object.
    */
@@ -49,53 +63,52 @@ public:
    */
   HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const;
 
-
   /**
    * Returns default filling color for new zone.
    */
   HYDRODATA_EXPORT static QColor DefaultFillingColor();
 
   /**
-   * Sets filling color for zone.
+   * Returns default border color for new zone.
    */
-  HYDRODATA_EXPORT virtual void SetFillingColor( const QColor& theColor );
+  HYDRODATA_EXPORT static QColor DefaultBorderColor();
 
   /**
-   * Returns filling color of zone.
+   * Sets reference polyline object for zone.
    */
-  HYDRODATA_EXPORT virtual QColor GetFillingColor() const;
-
+  HYDRODATA_EXPORT virtual void SetPolyline( const Handle(HYDROData_PolylineXY)& thePolyline );
 
   /**
-   * Returns default border color for new zone.
+   * Returns reference polyline object of zone.
    */
-  HYDRODATA_EXPORT static QColor DefaultBorderColor();
+  HYDRODATA_EXPORT virtual Handle(HYDROData_PolylineXY) GetPolyline() const;
 
   /**
-   * Sets border color for zone.
+   * Remove reference polyline object of zone.
    */
-  HYDRODATA_EXPORT virtual void SetBorderColor( const QColor& theColor );
+  HYDRODATA_EXPORT virtual void RemovePolyline();
 
-  /**
-   * Returns border color of zone.
-   */
-  HYDRODATA_EXPORT virtual QColor GetBorderColor() const;
+  HYDRODATA_EXPORT TopoDS_Shape generateTopShape() const;
+  HYDRODATA_EXPORT static TopoDS_Shape generateTopShape( const Handle(HYDROData_PolylineXY)& );
 
+protected:
 
   /**
-   * Sets reference polyline object for zone.
+   * Returns default filling color for new object.
    */
-  HYDRODATA_EXPORT virtual void SetPolyline( const Handle(HYDROData_Polyline)& thePolyline );
+  HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const;
 
   /**
-   * Returns reference polyline object of zone.
+   * Returns default border color for new object.
    */
-  HYDRODATA_EXPORT virtual Handle(HYDROData_Polyline) GetPolyline() const;
+  HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const;
+
+private:
 
   /**
-   * Remove reference polyline object of zone.
+   * Create all necessary child group objects.
    */
-  HYDRODATA_EXPORT virtual void RemovePolyline();
+  HYDRODATA_EXPORT void createGroupObjects();
 
 protected: