X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROCurveCreator%2FCurveCreator_Curve.hxx;h=adcfc87a8f6f8e21448d463583bfbcb14ae5597a;hb=09d10e66ba0fac5353c8d1f138055fc6fe86fb65;hp=ab073b7b0a7fd665a31b1d4fad8859c652e6d510;hpb=59cb079ea66fc8a85a75a24e4f7674b3fc099a17;p=modules%2Fhydro.git diff --git a/src/HYDROCurveCreator/CurveCreator_Curve.hxx b/src/HYDROCurveCreator/CurveCreator_Curve.hxx index ab073b7b..adcfc87a 100644 --- a/src/HYDROCurveCreator/CurveCreator_Curve.hxx +++ b/src/HYDROCurveCreator/CurveCreator_Curve.hxx @@ -41,7 +41,7 @@ class Handle_AIS_InteractiveObject; * The CurveCreator_Curve object is represented as one or more sets of * connected points; thus CurveCreator_Curve object can contain several * not connected curves (polylines or b-splines), each such curve has two - * only ends � start and end points � in other words non-manifold curves + * only ends "start and end points" in other words non-manifold curves * are not supported. */ class CURVECREATOR_EXPORT CurveCreator_Curve : public CurveCreator_ICurve @@ -140,11 +140,11 @@ public: virtual bool clear(); //! For internal use only! Undo/Redo are not used here. - virtual bool joinInternal( const int theISectionTo = -1, - const int theISectionFrom = -1 ); - //! Join range of sections to one section (join all sections if -1 is passed in one of arguments) - virtual bool join( const int theISectionTo = -1, - const int theISectionFrom = -1 ); + virtual bool joinInternal( const std::list& theSections ); + + //! Join list of sections to one section (join all if the list is empty) + // The first section in the list is a leader, another sections are joined to it + virtual bool join( const std::list& theSections ); //! Get number of sections virtual int getNbSections() const; @@ -228,7 +228,8 @@ public: const CurveCreator::Coordinates& theNewCoords ); //! Set coordinates of specified points from different sections - virtual bool setSeveralPoints( const SectionToPointCoordsList &theSectionToPntCoords); + virtual bool setSeveralPoints( const SectionToPointCoordsList &theSectionToPntCoords, + const bool theIsToSaveDiff = true ); //! For internal use only! Undo/Redo are not used here. virtual bool removePointsInternal( const SectionToPointList &thePoints ); @@ -264,6 +265,12 @@ public: */ virtual bool canPointsBeSorted(); + /** + * Saves points coordinates difference. + * \param theOldCoords the old points coordinates + */ + virtual void saveCoordDiff( const SectionToPointCoordsList &theOldCoords ); + /***********************************************/ /*** Presentation methods ***/ /***********************************************/ @@ -291,6 +298,12 @@ protected: protected: virtual void constructAISObject(); + /** + * Returns the section by the section index or NULL if the index is out of the section + * list range + * \param theSectionId the section index + */ + CurveCreator_Section* getSection( const int theSectionId ) const; protected: bool mySkipSorting;