X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROCurveCreator%2FCurveCreator_ICurve.hxx;h=40696e9bebe51e741207ff1852a71f72a42c7830;hb=c363fc5c3541669e07cf4d991cc1e94253147ac1;hp=4a9b4c3b659ddd25d6dbdfa6a8f020df995ed9f3;hpb=66eed78107ad562c2846807c99978fe5a212cca4;p=modules%2Fhydro.git diff --git a/src/HYDROCurveCreator/CurveCreator_ICurve.hxx b/src/HYDROCurveCreator/CurveCreator_ICurve.hxx index 4a9b4c3b..40696e9b 100644 --- a/src/HYDROCurveCreator/CurveCreator_ICurve.hxx +++ b/src/HYDROCurveCreator/CurveCreator_ICurve.hxx @@ -25,6 +25,10 @@ #include "CurveCreator_Macro.hxx" #include +#include +#include + +class Handle_AIS_InteractiveObject; namespace CurveCreator { @@ -53,6 +57,12 @@ namespace CurveCreator */ class CURVECREATOR_EXPORT CurveCreator_ICurve { +public: + typedef std::pair SectionToPoint; + typedef std::deque SectionToPointList; + + typedef std::deque< std::pair< SectionToPoint,std::deque< float > > > SectionToPointCoordsList; + public: /***********************************************/ /*** Undo/Redo methods ***/ @@ -140,9 +150,14 @@ public: virtual bool setPoint( const int theISection, const int theIPnt, const std::deque& theNewCoords ) = 0; + + //! Set coordinates of specified points from different sections + virtual bool setSeveralPoints( const SectionToPointCoordsList &theSectionToPntCoords) = 0; //! Remove point with given id virtual bool removePoint( const int theISection, const int theIPnt = -1 ) = 0; + //! Remove several points from different sections + virtual bool removeSeveralPoints( const SectionToPointList &theSectionToPntIDs) = 0; //! Get coordinates of specified point virtual std::deque getPoint( const int theISection, @@ -163,7 +178,12 @@ public: /***********************************************/ /*** Presentation methods ***/ /***********************************************/ -// virtual TopoDS_Wire constructWire() const = 0; + + virtual Handle_AIS_InteractiveObject getAISObject( const bool theNeedToBuild = false ) const = 0; + +protected: + virtual void constructAISObject() = 0; + }; #endif