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_Profile_HeaderFile
20 #define HYDROData_Profile_HeaderFile
22 #include "HYDROData_Object.h"
24 #include "HYDROData_ProfileUZ.h"
26 DEFINE_STANDARD_HANDLE(HYDROData_Profile, HYDROData_Object)
30 class Handle(HYDROData_Document);
32 /**\class HYDROData_Profile
33 * \brief Class that stores/retreives information about the profile.
35 class HYDROData_Profile : public HYDROData_Object
39 typedef gp_XYZ ProfilePoint;
40 typedef NCollection_Sequence<ProfilePoint> ProfilePoints;
44 * Enumeration of tags corresponding to the persistent object parameters.
48 DataTag_First = HYDROData_Object::DataTag_First + 100, ///< first tag, to reserve
49 DataTag_FirstPoint, ///< first(left) point
50 DataTag_LastPoint, ///< last(right) point
51 DataTag_ChildProfileUZ, ///< child parametric profile
52 DataTag_FilePath ///< profile imported file path
56 DEFINE_STANDARD_RTTI(HYDROData_Profile);
59 * Returns the kind of this object. Must be redefined in all objects of known type.
61 HYDRODATA_EXPORT virtual const ObjectKind GetKind() const { return KIND_PROFILE; }
64 * Dump object to Python script representation.
66 HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath,
67 MapOfTreatedObjects& theTreatedObjects ) const;
70 * Returns the top shape of the object.
72 HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const;
75 * Returns the 3d shape of the object.
77 HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const;
80 * Updates profile 3D presentation.
81 * Call this method whenever you made changes in data structure.
82 * This method does not called automatically since it may take a very long time.
84 HYDRODATA_EXPORT virtual void Update();
86 HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
89 * Returns default filling color for new profile.
91 HYDRODATA_EXPORT virtual QColor DefaultFillingColor() const;
94 * Returns default border color for new profile.
96 HYDRODATA_EXPORT virtual QColor DefaultBorderColor() const;
102 * Check profile data and returns true if profile is valid.
103 * Validity is determined by:
104 * - First(left) and Last(right) point was set
105 * - Parametric points size is more than 1
107 HYDRODATA_EXPORT bool IsValid() const;
110 * Invalidate profile first and last points.
112 HYDRODATA_EXPORT void Invalidate();
116 // Public methods to work with profile points.
119 * Set first(left) point for profile.
120 * \param thePoint the point
122 HYDRODATA_EXPORT void SetLeftPoint( const gp_XY& thePoint, bool IsConvertFromGlobal = false );
125 * Returns first(left) point of profile.
126 * \param thePoint[out] profile first point
127 * \return true if point has been set
129 HYDRODATA_EXPORT bool GetLeftPoint( gp_XY& thePoint, bool IsConvertToGlobal = false,
130 bool CanUseDefault = false ) const;
133 * Set last(right) point for profile.
134 * \param thePoint the point
136 HYDRODATA_EXPORT void SetRightPoint( const gp_XY& thePoint, bool IsConvertFromGlobal = false );
139 * Returns last(right) point of profile.
140 * \param thePoint[out] profile last point
141 * \return true if point has been set
143 HYDRODATA_EXPORT bool GetRightPoint( gp_XY& thePoint, bool IsConvertToGlobal = false,
144 bool CanUseDefault = false ) const;
147 * Returns object which store parametric presentation of profile points.
148 * \return profile U,Z
150 HYDRODATA_EXPORT Handle(HYDROData_ProfileUZ) GetProfileUZ( const bool theIsCreate = true ) const;
154 * Return number of profile points.
155 * \return number of points
157 HYDRODATA_EXPORT int NbPoints() const;
160 * Remove all profile points.
162 HYDRODATA_EXPORT void RemovePoints();
166 * Replace current profile parametric points by new one.
167 * \param thePoints the list with new points in parametric form
169 HYDRODATA_EXPORT void SetParametricPoints( const HYDROData_ProfileUZ::PointsList& thePoints );
172 * Returns profile points in parametric form.
173 * \return points list
175 HYDRODATA_EXPORT HYDROData_ProfileUZ::PointsList GetParametricPoints() const;
179 * Replace current profile points by new one.
180 * First and last points will be automatically updated.
181 * \param thePoints the list with new profile points
183 HYDRODATA_EXPORT void SetProfilePoints( const ProfilePoints& thePoints, bool IsConvertFromGlobal = true );
186 * Returns profile points.
187 * Empty sequence is returned if first or last point was not set.
188 * \return profile points list
190 HYDRODATA_EXPORT ProfilePoints GetProfilePoints( bool IsConvertToGlobal = false,
191 bool CanUseDefaultLeftRight = false ) const;
195 * Return profile point with minimal Z value.
196 * \return non-parametric profile point
198 HYDRODATA_EXPORT ProfilePoint GetBottomPoint() const;
201 * Return profile middle point.
202 * \return non-parametric profile point
204 HYDRODATA_EXPORT ProfilePoint GetMiddlePoint( bool CanUseDefault ) const;
207 // Public methods to work with files.
210 * Stores the profile file path
211 * \param theFilePath profile file path
213 HYDRODATA_EXPORT void SetFilePath( const TCollection_AsciiString& theFilePath );
216 * Returns uploaded profile file path
218 HYDRODATA_EXPORT TCollection_AsciiString GetFilePath() const;
221 * Imports Profile data from file. The supported file types:
222 * - parametric presentation of profile (2 points in line U,Z)
223 * - georeferenced presentation of profile (3 points in line X,Y,Z)
224 * Create as many objects as many profiles in the file are defined.
225 * \param theFileName the path to file
226 * \return \c number of successfully imported profiles
228 HYDRODATA_EXPORT static int ImportFromFile( const Handle(HYDROData_Document)& theDoc,
229 const TCollection_AsciiString& theFileName,
230 NCollection_Sequence<int>& theBadProfilesIds );
233 * Imports Profile data from file.
234 * \param theFileName the path to file
235 * \param theIsRead set to true if at least one non empty string was read from file
236 * \return \c true if file has been successfully read
238 HYDRODATA_EXPORT virtual bool ImportFromFile( const TCollection_AsciiString& theFileName,
239 bool* theIsRead = 0 );
242 * Imports Profile data from file.
243 * \param theFile file to read
244 * \param theIsRead set to true if at least one non empty string was read from file
245 * \return \c true if file has been successfully read
247 HYDRODATA_EXPORT virtual bool ImportFromFile( OSD_File& theFile,
248 bool* theIsRead = 0 );
252 * Checks and if necessary create child 3D object.
253 * Reimplemented to prevent creation of 3D child object.
255 HYDRODATA_EXPORT virtual void checkAndSetObject3D() {}
257 TopoDS_Shape CreateProfileWire( bool canUseDefaultPoints ) const;
261 friend class HYDROData_Iterator;
264 * Creates new object in the internal data structure. Use higher level objects
265 * to create objects with real content.
267 HYDRODATA_EXPORT HYDROData_Profile();
270 * Destructs properties of the object and object itself, removes it from the document.
272 HYDRODATA_EXPORT ~HYDROData_Profile();