Salome HOME
Profile object creation.
[modules/hydro.git] / src / HYDROData / HYDROData_Object.h
index 59ccfedb14dfb8172025c2b9e91a9ecd0cc1688a..eda7375543c9f4c098c1bf7606cc6a77183d71e3 100644 (file)
@@ -26,14 +26,8 @@ protected:
     DataTag_TopShape,
     DataTag_Shape3D,
     DataTag_Bathymetry,   ///< reference bathymetry
-  };
-
-  /**
-   * Enumeration of tags corresponding to the child sub-objects of object.
-   */
-  enum ChildTag
-  {
-    ChildTag_First = HYDROData_Entity::ChildTag_First + 100, ///< first tag, to reserve
+    DataTag_FillingColor, ///< filling color of geometrical object
+    DataTag_BorderColor   ///< border color of geometrical object
   };
 
 public:
@@ -75,6 +69,35 @@ public:
    */
   HYDRODATA_EXPORT virtual void RemoveBathymetry();
 
+   /**
+   * Sets filling color for object.
+   */
+  HYDRODATA_EXPORT virtual void SetFillingColor( const QColor& theColor );
+
+  /**
+   * Returns filling color of object.
+   */
+  HYDRODATA_EXPORT virtual QColor GetFillingColor() const;
+
+   /**
+   * Sets border color for object.
+   */
+  HYDRODATA_EXPORT virtual void SetBorderColor( const QColor& theColor );
+
+  /**
+   * Returns border color of object.
+   */
+  HYDRODATA_EXPORT virtual QColor GetBorderColor() const;
+
+  /**
+   * Returns default filling color for new object.
+   */
+  HYDRODATA_EXPORT static QColor DefaultFillingColor();
+
+  /**
+   * Returns default border color for new object.
+   */
+  HYDRODATA_EXPORT static QColor DefaultBorderColor();
 
 protected:
 
@@ -96,11 +119,21 @@ protected:
    */
   HYDRODATA_EXPORT TopoDS_Shape getTopShape() const;
 
+  /**
+   * Removes the top shape from data label of the object.
+   */
+  HYDRODATA_EXPORT void removeTopShape();
+
+
   /**
    * Retrieve the 3d shape of the object from data label.
    */
   HYDRODATA_EXPORT TopoDS_Shape getShape3D() const;
 
+  /**
+   * Removes the 3d shape from data label of the object.
+   */
+  HYDRODATA_EXPORT void removeShape3D();
 };
 
 #endif