X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Polyline.h;h=53395cd813cb79460818615884a6b57282fc68ac;hb=ad8562bab9992101430a6327aa7ca06c71f6d084;hp=b5ce157efc26ef3f4c4113b3ac79d5882ee3d196;hpb=30e558c9952b2463e7d645403598fec48a9331f7;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Polyline.h b/src/HYDROData/HYDROData_Polyline.h index b5ce157e..53395cd8 100755 --- a/src/HYDROData/HYDROData_Polyline.h +++ b/src/HYDROData/HYDROData_Polyline.h @@ -13,7 +13,7 @@ class TopoDS_Wire; DEFINE_STANDARD_HANDLE(HYDROData_Polyline, HYDROData_Object) -struct PolylineSection +struct HYDRODATA_EXPORT PolylineSection { public: enum SectionType{ SECTION_POLYLINE=0, SECTION_SPLINE=1 }; @@ -48,7 +48,6 @@ protected: DataTag_SectionsClosed, DataTag_SectionsSize, DataTag_SectionsType, - DataTag_Wire, DataTag_ZValue }; @@ -60,6 +59,16 @@ public: */ HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_POLYLINE;} + /** + * Returns the top shape of the object. + */ + HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const; + + /** + * Returns the 3d shape of the object. + */ + HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const; + /** * Dump object to Python script representation. */ @@ -75,56 +84,47 @@ public: * Replace current polyline data by new sections list * \param theSections the sections list */ - HYDRODATA_EXPORT void setPolylineData( const PolylineData& theSections ); + HYDRODATA_EXPORT void SetPolylineData( const PolylineData& theSections ); /** * Return polyline data * \return polyline section list */ - HYDRODATA_EXPORT PolylineData getPolylineData() const; + HYDRODATA_EXPORT PolylineData GetPolylineData() const; /** * Returns true if polyline is closed */ - HYDRODATA_EXPORT bool isClosed() const; + HYDRODATA_EXPORT bool IsClosed() const; /** * Return polyline dimension * \return polyline dimension (2 or 3) */ - HYDRODATA_EXPORT int getDimension() const; + HYDRODATA_EXPORT int GetDimension() const; /** * Set polyline dimension (2 or 3) * \param theDimension the polyline dimension */ - HYDRODATA_EXPORT void setDimension( int theDimension ); + HYDRODATA_EXPORT void SetDimension( int theDimension ); /** * Remove all sections from polyline */ - HYDRODATA_EXPORT void removeAll(); + HYDRODATA_EXPORT void RemoveAll(); /** * Returns the painter path. * Note: currently only the first section of the polyline data is taken into account. */ - HYDRODATA_EXPORT QPainterPath painterPath() const; + HYDRODATA_EXPORT QPainterPath GetPainterPath() const; - HYDRODATA_EXPORT void SetZValue( const double theZValue ); + HYDRODATA_EXPORT void SetZValue( const double theZValue ); HYDRODATA_EXPORT double ZValue() const; - /** - * Sets the wire contour of the object. - */ - HYDRODATA_EXPORT void SetWire( const TopoDS_Wire& theWire ); - - /** - * Returns the wire contour of the object. - */ - HYDRODATA_EXPORT TopoDS_Wire Wire() const; - protected: + /** * Update the wire contour on the basis of the polyline data. */ @@ -138,12 +138,12 @@ protected: * Creates new object in the internal data structure. Use higher level objects * to create objects with real content. */ - HYDROData_Polyline(); + HYDRODATA_EXPORT HYDROData_Polyline(); /** * Destructs properties of the object and object itself, removes it from the document. */ - ~HYDROData_Polyline(); + HYDRODATA_EXPORT ~HYDROData_Polyline(); }; #endif