Salome HOME
Variables naming.
[modules/hydro.git] / src / HYDROData / HYDROData_PolylineXY.h
index d14212e163ab7e52694d798d7752b2236b572510..ccbdaba650e909267304d8482715a3985496b4b0 100644 (file)
@@ -23,6 +23,7 @@ protected:
   enum DataTag
   {
     DataTag_First = HYDROData_IPolyline::DataTag_First + 100, ///< first tag, to reserve
+    DataTag_GeomObjectEntry,  ///< study entry of the imported GEOM object
   };
 
 public:
@@ -69,10 +70,35 @@ public:
 
 public:
 
+  /**
+   * Imports shape from IOR.
+   * \param theIOR the IOR of Geom object
+   * \return \c true if shape has been successfully imported
+   */
+  HYDRODATA_EXPORT virtual bool ImportFromGeomIOR( const TCollection_AsciiString& theIOR );
+
+  /**
+   * Stores the study entry of the imported GEOM object.
+   * \param theEntry GEOM object entry
+   */
+  HYDRODATA_EXPORT void SetGeomObjectEntry( const TCollection_AsciiString& theEntry );
+
+  /**
+   * Returns the imported GEOM object entry.
+   */
+  HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectEntry() const;
+
+public:
+
+  /**
+   * Returns the 2D presentation of all points.
+   */
+  HYDRODATA_EXPORT virtual TopoDS_Shape GetShape() const;
+
   /**
    * Returns the 3D presentation of all points.
    */
-  HYDRODATA_EXPORT virtual TopoDS_Shape GetShape();
+  HYDRODATA_EXPORT virtual bool ImportShape( const TopoDS_Shape& theShape );
 
   /**
    * Update the wire contour on the basis of the polyline data.
@@ -81,10 +107,20 @@ public:
   HYDRODATA_EXPORT virtual void Update();
 
 
-   /**
+  /**
+   * Returns flag indicating that polyline can be edited or not.
+   */
+  HYDRODATA_EXPORT virtual bool IsEditable() const;
+
+  
+  /**
    * Returns true if polyline is closed
+   * \param theIsSimpleCheck flag indicating the type of checking
+   *        - if true then all wires checked on closures
+   *        - if false then for positive result polyline should consist of
+   *          only one wire and which must be closed
    */
-  HYDRODATA_EXPORT bool IsClosed() const;
+  HYDRODATA_EXPORT bool IsClosed( const bool theIsSimpleCheck = true ) const;
 
    /**
    * Returns the distance beetwen first and point with index thePointIndex
@@ -193,6 +229,14 @@ public:
                                           const Point& thePoint,
                                           const int    thePointIndex );
 
+  /**
+   * Replaces point for section with index "theSectionIndex".
+   * \param theSectionIndex index of section
+   * \param thePoints new points
+   */
+  HYDRODATA_EXPORT virtual void SetPoints( const int         theSectionIndex,
+                                           const PointsList& thePoints );
+
   /**
    * Removes point from section with index "theSectionIndex".
    * \param theSectionIndex index of section
@@ -219,6 +263,13 @@ public:
   HYDRODATA_EXPORT virtual QPainterPath GetPainterPath() const;
 
 
+protected:
+
+  /**
+   * Sets the flag indicating that polyline can be edited or not.
+   */
+  HYDRODATA_EXPORT virtual void setEditable( const bool theIsEditable );
+
 protected:
 
   friend class HYDROData_Profile;