1 #ifndef HYDROData_Polyline_HeaderFile
2 #define HYDROData_Polyline_HeaderFile
4 #include <HYDROData_Object.h>
6 #include <TCollection_ExtendedString.hxx>
9 #include <QPainterPath>
14 DEFINE_STANDARD_HANDLE(HYDROData_Polyline, HYDROData_Object)
16 struct HYDRODATA_EXPORT PolylineSection
19 enum SectionType{ SECTION_POLYLINE=0, SECTION_SPLINE=1 };
21 PolylineSection(){ myIsClosed=true; myType=SECTION_POLYLINE; mySectionName="Section";}
22 TCollection_ExtendedString mySectionName;
25 QList<double> myCoords;
28 /**\class HYDROData_Polyline
29 * \brief Class that stores/retreives information about the painter path.
31 * Keeps path as binary array of element type and coordinates
32 * of image with correspondent API for forkind wit hthese properties.
34 class HYDROData_Polyline : public HYDROData_Object
38 typedef QList<PolylineSection> PolylineData;
42 * Enumeration of tags corresponding to the persistent object parameters.
46 DataTag_First = HYDROData_Object::DataTag_First + 100, ///< first tag, to reserve
48 DataTag_SectionsClosed,
55 DEFINE_STANDARD_RTTI(HYDROData_Polyline);
58 * Returns the kind of this object. Must be redefined in all objects of known type.
60 HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_POLYLINE;}
63 * Returns the top shape of the object.
65 HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const;
68 * Returns the 3d shape of the object.
70 HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const;
73 * Dump object to Python script representation.
75 HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
78 * Returns data of object wrapped to QVariant.
79 * Reimplemented to wrap and return saved path.
81 HYDRODATA_EXPORT virtual QVariant GetDataVariant();
84 * Replace current polyline data by new sections list
85 * \param theSections the sections list
87 HYDRODATA_EXPORT void SetPolylineData( const PolylineData& theSections );
90 * Return polyline data
91 * \return polyline section list
93 HYDRODATA_EXPORT PolylineData GetPolylineData() const;
96 * Returns true if polyline is closed
98 HYDRODATA_EXPORT bool IsClosed() const;
101 * Return polyline dimension
102 * \return polyline dimension (2 or 3)
104 HYDRODATA_EXPORT int GetDimension() const;
107 * Set polyline dimension (2 or 3)
108 * \param theDimension the polyline dimension
110 HYDRODATA_EXPORT void SetDimension( int theDimension );
113 * Remove all sections from polyline
115 HYDRODATA_EXPORT void RemoveAll();
118 * Returns the painter path.
119 * Note: currently only the first section of the polyline data is taken into account.
121 HYDRODATA_EXPORT QPainterPath GetPainterPath() const;
123 HYDRODATA_EXPORT void SetZValue( const double theZValue );
124 HYDRODATA_EXPORT double ZValue() const;
129 * Update the wire contour on the basis of the polyline data.
131 void UpdateWire( const PolylineData& theSections );
135 friend class HYDROData_Iterator;
138 * Creates new object in the internal data structure. Use higher level objects
139 * to create objects with real content.
141 HYDRODATA_EXPORT HYDROData_Polyline();
144 * Destructs properties of the object and object itself, removes it from the document.
146 HYDRODATA_EXPORT ~HYDROData_Polyline();