Salome HOME
refs #768: local CS change for land covers
[modules/hydro.git] / src / HYDROData / HYDROData_PolylineXY.h
index 57ff8cadb614bc2054971431ea672e2cbae36f6c..e052a1c3aac0af7c39db43bff214673031e70ab0 100644 (file)
@@ -57,7 +57,8 @@ public:
   /**
    * Dump object to Python script representation.
    */
-  HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
+  HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath,
+                                                     MapOfTreatedObjects& theTreatedObjects ) const;
 
   /**
    * Update the wire contour on the basis of the polyline data.
@@ -84,6 +85,8 @@ public:
   HYDRODATA_EXPORT static QColor DefaultWireColor();
 
   HYDRODATA_EXPORT bool IsCustom() const;
+  HYDRODATA_EXPORT bool GetIsInCustomFlag() const;
+  HYDRODATA_EXPORT void SetIsInCustomFlag( bool theValue );
 
 public:
 
@@ -127,7 +130,9 @@ public:
   /**
    * 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.
@@ -297,6 +302,8 @@ protected:
    */
   HYDRODATA_EXPORT virtual void setEditable( const bool theIsEditable );
 
+  HYDRODATA_EXPORT void Interpolate();
+
 protected:
 
   friend class HYDROData_Profile;
@@ -312,6 +319,9 @@ protected:
    * Destructs properties of the object and object itself, removes it from the document.
    */
   HYDRODATA_EXPORT ~HYDROData_PolylineXY();
+
+private:
+  bool myIsInCustomFlag;
 };
 
 #endif