X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FHYDROData%2FHYDROData_PolylineXY.h;h=86ae8e54d2e3f836a68cf26c1d4523e0c9da5308;hb=e7225e329739e01faed6682de0bc83cf84c28de6;hp=32732b08c1a61a7b48fbdc75e2552c0b33235edc;hpb=fd7bc8b6aff2f236893c3c549e3338668bd6bec3;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_PolylineXY.h b/src/HYDROData/HYDROData_PolylineXY.h index 32732b08..86ae8e54 100644 --- a/src/HYDROData/HYDROData_PolylineXY.h +++ b/src/HYDROData/HYDROData_PolylineXY.h @@ -23,6 +23,7 @@ protected: enum DataTag { DataTag_First = HYDROData_IPolyline::DataTag_First + 100, ///< first tag, to reserve + DataTag_GeomObjectEntry, ///< study entry of the imported GEOM object }; public: @@ -39,6 +40,17 @@ public: */ HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const; + /** + * Update the wire contour on the basis of the polyline data. + * Call this method whenever you made changes for polyline data. + */ + HYDRODATA_EXPORT virtual void Update(); + + /** + * Checks that object has 2D presentation. Reimlemented to retun true. + */ + HYDRODATA_EXPORT virtual bool IsHas2dPrs() const; + /** * Returns data of object wrapped to QVariant. * Reimplemented to wrap and return saved path. @@ -67,6 +79,26 @@ public: const bool& theIsClosed, const NCollection_Sequence& thePoints ); +public: + + /** + * Imports shape from IOR. + * \param theIOR the IOR of Geom object + * \return \c true if shape has been successfully imported + */ + HYDRODATA_EXPORT virtual bool ImportFromGeomIOR( const TCollection_AsciiString& theIOR ); + + /** + * Stores the study entry of the imported GEOM object. + * \param theEntry GEOM object entry + */ + HYDRODATA_EXPORT void SetGeomObjectEntry( const TCollection_AsciiString& theEntry ); + + /** + * Returns the imported GEOM object entry. + */ + HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectEntry() const; + public: /** @@ -79,12 +111,6 @@ public: */ HYDRODATA_EXPORT virtual bool ImportShape( const TopoDS_Shape& theShape ); - /** - * Update the wire contour on the basis of the polyline data. - * Call this method whenever you made changes for polyline data. - */ - HYDRODATA_EXPORT virtual void Update(); - /** * Returns flag indicating that polyline can be edited or not.