1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef HYDROData_IPolyline_HeaderFile
20 #define HYDROData_IPolyline_HeaderFile
22 #include "HYDROData_Entity.h"
26 class TDataStd_RealList;
27 class TDataStd_ExtStringList;
28 class TDataStd_BooleanList;
29 class TDataStd_IntegerList;
33 /**\class HYDROData_IPolyline
34 * \brief Base class that stores/retreives information about the 2D points.
36 class HYDROData_IPolyline : public HYDROData_Entity
39 enum SectionType{ SECTION_POLYLINE = 0, SECTION_SPLINE = 1 };
42 typedef NCollection_Sequence<Point> PointsList;
46 * Enumeration of tags corresponding to the persistent object parameters.
50 DataTag_First = HYDROData_Entity::DataTag_First + 100, ///< first tag, to reserve
53 DataTag_PolylineShape,
55 DataTag_SectionColors,
59 DEFINE_STANDARD_RTTIEXT(HYDROData_IPolyline, HYDROData_Entity);
64 * Sets wire color for object.
66 HYDRODATA_EXPORT virtual void SetWireColor( const QColor& theColor );
69 * Returns wire color of object.
71 HYDRODATA_EXPORT virtual QColor GetWireColor() const;
74 * Returns default wire color for new object.
76 HYDRODATA_EXPORT static QColor DefaultWireColor();
80 * Returns number of sections.
82 HYDRODATA_EXPORT virtual int NbSections() const = 0;
85 * Adds new one section.
86 * \param theSectName name of the section
87 * \param theSectionType type of section
88 * \param theIsClosed flag indicates closures of section
90 HYDRODATA_EXPORT virtual void AddSection( const TCollection_AsciiString& theSectName,
91 const SectionType theSectionType,
92 const bool theIsClosed ) = 0;
95 * Returns name of section with given index.
96 * \param theSectionIndex index of section
98 HYDRODATA_EXPORT virtual TCollection_AsciiString GetSectionName( const int theSectionIndex ) const = 0;
101 * Set name for section with given index.
102 * \param theSectionIndex index of section
103 * \param theSectionName new section name
105 HYDRODATA_EXPORT virtual void SetSectionName( const int theSectionIndex,
106 const TCollection_AsciiString& theSectionName ) = 0;
109 * Returns type of section with given index.
110 * \param theSectionIndex index of section
112 HYDRODATA_EXPORT virtual SectionType GetSectionType( const int theSectionIndex ) const = 0;
115 * Set type for section with given index.
116 * \param theSectionIndex index of section
117 * \param theSectionType new section type
119 HYDRODATA_EXPORT virtual void SetSectionType( const int theSectionIndex,
120 const SectionType theSectionType ) = 0;
123 * Returns true if section with given index is closed.
124 * \param theSectionIndex index of section
126 HYDRODATA_EXPORT virtual bool IsClosedSection( const int theSectionIndex ) const = 0;
129 * Set closed flag for section with given index.
130 * \param theSectionIndex index of section
131 * \param theIsClosed new closures state
133 HYDRODATA_EXPORT virtual void SetSectionClosed( const int theSectionIndex,
134 const bool theIsClosed ) = 0;
137 * Removes section with given index.
138 * \param theSectionIndex index of section
140 HYDRODATA_EXPORT virtual void RemoveSection( const int theSectionIndex ) = 0;
143 * Removes all sections.
145 HYDRODATA_EXPORT virtual void RemoveSections() = 0;
149 * Return number of profile points.
150 * \return number of points
152 HYDRODATA_EXPORT int NbPoints( const int theSectionIndex = -1 ) const;
155 * Adds new point for section with index "theSectionIndex".
156 * \param theSectionIndex index of section
157 * \param thePoint point to add
158 * \param theBeforeIndex if not equal -1 then insert point before this index
160 HYDRODATA_EXPORT virtual void AddPoint( const int theSectionIndex,
161 const Point& thePoint,
162 const int theBeforeIndex = -1 ) = 0;
165 * Replaces point for section with index "theSectionIndex".
166 * \param theSectionIndex index of section
167 * \param thePoint new point
168 * \param thePointIndex index of point to replace
170 HYDRODATA_EXPORT virtual void SetPoint( const int theSectionIndex,
171 const Point& thePoint,
172 const int thePointIndex ) = 0;
175 * Removes point from section with index "theSectionIndex".
176 * \param theSectionIndex index of section
177 * \param thePointIndex index of point
179 HYDRODATA_EXPORT virtual void RemovePoint( const int theSectionIndex,
180 const int thePointIndex ) = 0;
184 * Returns list of points.
185 * \param theSectionIndex if not equal -1 then list of points returned
186 * only for section with this index
187 * \return list of points
189 HYDRODATA_EXPORT virtual PointsList GetPoints( const int theSectionIndex = -1, bool IsConvertToGlobal = false ) const = 0;
191 HYDRODATA_EXPORT TopoDS_Shape GetShape() const;
192 HYDRODATA_EXPORT void SetShape( const TopoDS_Shape& theShape );
194 HYDRODATA_EXPORT void setSectionColor( const int theSectionIndex,
195 const QColor& theColor ) const;
197 HYDRODATA_EXPORT bool getSectionColor( const int theSectionIndex, QColor &theColor) const;
199 HYDRODATA_EXPORT void removeSectionColor( const int theSectionIndex = -1 ) const;
202 void RemovePolylineShape();
204 void getSectionsLists( Handle(TDataStd_ExtStringList)& theNamesList,
205 Handle(TDataStd_IntegerList)& theTypesList,
206 Handle(TDataStd_BooleanList)& theClosuresList,
207 const bool theIsCreate = true ) const;
209 void removeSectionsLists();
211 void getPointsLists( const int theSectionIndex,
212 Handle(TDataStd_RealList)& theListX,
213 Handle(TDataStd_RealList)& theListY,
214 const bool theIsCreate = true ) const;
216 void removePointsLists( const int theSectionIndex = -1 ) const;
223 * Creates new object in the internal data structure. Use higher level objects
224 * to create objects with real content.
226 HYDRODATA_EXPORT HYDROData_IPolyline();
229 * Destructs properties of the object and object itself, removes it from the document.
231 HYDRODATA_EXPORT ~HYDROData_IPolyline();