Salome HOME
quick optimization patch (bytearray for images)
[modules/hydro.git] / src / HYDROData / HYDROData_PolylineXY.h
index 3036097263f0ea5ff25c87eed0c64c0346253816..8375616b912921c6e36b12f4aabca5daa9314387 100644 (file)
@@ -20,8 +20,7 @@
 #define HYDROData_PolylineXY_HeaderFile
 
 #include "HYDROData_IPolyline.h"
-
-DEFINE_STANDARD_HANDLE(HYDROData_PolylineXY, HYDROData_IPolyline)
+#include <TopTools_HSequenceOfShape.hxx>
 
 class QPainterPath;
 class QTransform;
@@ -30,7 +29,7 @@ class gp_XYZ;
 class gp_Pnt;
 
 /**\class HYDROData_PolylineXY
- * \brief Class that stores/retreives information about the 
+ * \brief Class that stores/retrieves information about the
  *        parametric profile points.
  */
 class HYDROData_PolylineXY : public HYDROData_IPolyline
@@ -46,7 +45,7 @@ protected:
   };
 
 public:
-  DEFINE_STANDARD_RTTI(HYDROData_PolylineXY);
+  DEFINE_STANDARD_RTTIEXT(HYDROData_PolylineXY, HYDROData_IPolyline);
 
 
   /**
@@ -57,7 +56,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.
@@ -68,13 +68,13 @@ public:
   HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
 
   /**
-   * Checks that object has 2D presentation. Reimlemented to retun true.
+   * Checks that object has 2D presentation. Re-implemented to return true.
    */
   HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
 
   /**
    * Returns data of object wrapped to QVariant.
-   * Reimplemented to wrap and return saved path.
+   * Re-implemented to wrap and return saved path.
    */
   HYDRODATA_EXPORT virtual QVariant GetDataVariant();
 
@@ -83,17 +83,21 @@ public:
    */
   HYDRODATA_EXPORT static QColor DefaultWireColor();
 
+  HYDRODATA_EXPORT bool IsCustom() const;
+  HYDRODATA_EXPORT bool GetIsInCustomFlag() const;
+  HYDRODATA_EXPORT void SetIsInCustomFlag( bool theValue );
+
 public:
 
   /**
-   * Returns the presentation of polyline section in CAS maner.
+   * Returns the presentation of polyline section in CAS manner.
    */
   HYDRODATA_EXPORT static TopoDS_Wire BuildWire( const SectionType&                  theType,
                                                  const bool&                         theIsClosed,
                                                  const NCollection_Sequence<gp_XYZ>& thePoints );
 
   /**
-   * Returns the presentation of polyline section in Qt maner.
+   * Returns the presentation of polyline section in Qt manner.
    */
   HYDRODATA_EXPORT static void BuildPainterPath( QPainterPath&                       thePath,
                                                  const SectionType&                  theType,
@@ -122,16 +126,14 @@ 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,
+                                             const Handle( HYDROData_PolylineXY )& theOldPolyline,
+                                             bool IsClosureAllowed = true,
+                                             double theDeviation = 1.);
 
   /**
    * Returns flag indicating that polyline can be edited or not.
@@ -148,14 +150,18 @@ public:
    */
   HYDRODATA_EXPORT bool IsClosed( const bool theIsSimpleCheck = true ) const;
 
+  /**
+   * Returns connected wires and their number, by rebuild of the wires from the edges, looking for connections
+   */
+  HYDRODATA_EXPORT int GetNbConnectedWires(Handle(TopTools_HSequenceOfShape)& aConnectedWires) const;
+
    /**
-   * Returns the distance beetwen first and point with index thePointIndex
+   * Returns the distance between first and point with index thePointIndex
    * at the section with index theSectionIndex. -1 is returned if error is occurred.
    */
   HYDRODATA_EXPORT double GetDistance( const int theSectionIndex,
                                        const int thePointIndex ) const;
 
-
   /**
    * Returns number of sections.
    */
@@ -278,7 +284,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 +307,8 @@ protected:
    */
   HYDRODATA_EXPORT virtual void setEditable( const bool theIsEditable );
 
+  HYDRODATA_EXPORT void Interpolate();
+
 protected:
 
   friend class HYDROData_Profile;
@@ -316,6 +324,9 @@ protected:
    * Destructs properties of the object and object itself, removes it from the document.
    */
   HYDRODATA_EXPORT ~HYDROData_PolylineXY();
+
+private:
+  bool myIsInCustomFlag;
 };
 
 #endif