Salome HOME
Merge branch 'BR_LAND_COVER_MAP' of ssh://git.salome-platform.org/modules/hydro into...
[modules/hydro.git] / src / HYDROData / HYDROData_PolylineXY.h
index 3036097263f0ea5ff25c87eed0c64c0346253816..611a2a30f51a8eb3a2683937da67e5842a9c871b 100644 (file)
@@ -83,6 +83,8 @@ public:
    */
   HYDRODATA_EXPORT static QColor DefaultWireColor();
 
+  HYDRODATA_EXPORT bool IsCustom() const;
+
 public:
 
   /**
@@ -122,16 +124,12 @@ public:
 
 public:
 
-  /**
-   * Returns the 2D presentation of all points.
-   */
-  HYDRODATA_EXPORT virtual TopoDS_Shape GetShape() const;
-  HYDRODATA_EXPORT bool SetShape( const TopoDS_Shape& theShape );
-
   /**
    * Returns the 3D presentation of all points.
    */
-  HYDRODATA_EXPORT virtual bool ImportShape( const TopoDS_Shape& theShape );
+  HYDRODATA_EXPORT virtual bool ImportShape( const TopoDS_Shape& theShape,
+                                             bool IsInterpolationAllowed = false,
+                                             double theDeviation = 1E-3 );
 
   /**
    * Returns flag indicating that polyline can be edited or not.
@@ -278,7 +276,7 @@ public:
    *                        only for section with this index
    * \return list of points
    */
-  HYDRODATA_EXPORT virtual PointsList GetPoints( const int theSectionIndex = -1 ) const;
+  HYDRODATA_EXPORT virtual PointsList GetPoints( const int theSectionIndex = -1, bool IsConvertToGlobal = false ) const;
 
 
   /**
@@ -301,6 +299,8 @@ protected:
    */
   HYDRODATA_EXPORT virtual void setEditable( const bool theIsEditable );
 
+  HYDRODATA_EXPORT void Interpolate();
+
 protected:
 
   friend class HYDROData_Profile;
@@ -316,6 +316,9 @@ protected:
    * Destructs properties of the object and object itself, removes it from the document.
    */
   HYDRODATA_EXPORT ~HYDROData_PolylineXY();
+
+private:
+  bool myIsInCustomFlag;
 };
 
 #endif