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"
23 #include "HYDROData_ProfileUZ.h"
27 class HYDROData_Document;
29 /**\class HYDROData_Profile
30 * \brief Class that stores/retreives information about the profile.
32 class HYDROData_Profile : public HYDROData_Object
36 typedef gp_XYZ ProfilePoint;
37 typedef NCollection_Sequence<ProfilePoint> ProfilePoints;
41 * Enumeration of tags corresponding to the persistent object parameters.
45 DataTag_First = HYDROData_Object::DataTag_First + 100, ///< first tag, to reserve
46 DataTag_FirstPoint, ///< first(left) point
47 DataTag_LastPoint, ///< last(right) point
48 DataTag_ChildProfileUZ, ///< child parametric profile
49 DataTag_FilePath, ///< profile imported file path
50 DataTag_ProfileColor ///< color of profile
54 DEFINE_STANDARD_RTTIEXT(HYDROData_Profile, HYDROData_Object);
57 * Returns the kind of this object. Must be redefined in all objects of known type.
59 HYDRODATA_EXPORT virtual const ObjectKind GetKind() const { return KIND_PROFILE; }
62 * Dump object to Python script representation.
64 HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath,
65 MapOfTreatedObjects& theTreatedObjects ) const;
68 * Returns the top shape of the object.
70 HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const;
73 * Returns the 3d shape of the object.
75 HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D(bool forceRebuild = false, bool reverseXCoord = false) const;
78 * Updates profile 3D presentation.
79 * Call this method whenever you made changes in data structure.
80 * This method does not called automatically since it may take a very long time.
82 HYDRODATA_EXPORT virtual void Update();
84 HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
86 HYDRODATA_EXPORT static ProfilePoints CalculateProfilePoints(const HYDROData_ProfileUZ::PointsList& theParametricPoints,
87 const gp_XY& aFirstPoint, const gp_XY& aLastPoint);
90 * Returns default filling color for new profile.
92 HYDRODATA_EXPORT virtual QColor DefaultFillingColor() const;
95 * Returns default border color for new profile.
97 HYDRODATA_EXPORT virtual QColor DefaultBorderColor() const;
103 * Check profile data and returns true if profile is valid.
104 * Validity is determined by:
105 * - First(left) and Last(right) point was set
106 * - Parametric points size is more than 1
108 HYDRODATA_EXPORT bool IsValid() const;
111 * Invalidate profile first and last points.
113 HYDRODATA_EXPORT void Invalidate();
117 // Public methods to work with profile points.
120 * Set first(left) point for profile.
121 * \param thePoint the point
123 HYDRODATA_EXPORT void SetLeftPoint( const gp_XY& thePoint, bool IsConvertFromGlobal = false );
126 * Returns first(left) point of profile.
127 * \param thePoint[out] profile first point
128 * \return true if point has been set
130 HYDRODATA_EXPORT bool GetLeftPoint( gp_XY& thePoint, bool IsConvertToGlobal = false,
131 bool CanUseDefault = false ) const;
134 * Set last(right) point for profile.
135 * \param thePoint the point
137 HYDRODATA_EXPORT void SetRightPoint( const gp_XY& thePoint, bool IsConvertFromGlobal = false );
140 * Returns last(right) point of profile.
141 * \param thePoint[out] profile last point
142 * \return true if point has been set
144 HYDRODATA_EXPORT bool GetRightPoint( gp_XY& thePoint, bool IsConvertToGlobal = false,
145 bool CanUseDefault = false ) const;
148 * Returns object which store parametric presentation of profile points.
149 * \return profile U,Z
151 HYDRODATA_EXPORT Handle(HYDROData_ProfileUZ) GetProfileUZ( const bool theIsCreate = true ) const;
155 * Return number of profile points.
156 * \return number of points
158 HYDRODATA_EXPORT int NbPoints() const;
161 * Remove all profile points.
163 HYDRODATA_EXPORT void RemovePoints();
167 * Replace current profile parametric points by new one.
168 * \param thePoints the list with new points in parametric form
170 HYDRODATA_EXPORT void SetParametricPoints( const HYDROData_ProfileUZ::PointsList& thePoints );
173 * Returns profile points in parametric form.
174 * \return points list
176 HYDRODATA_EXPORT HYDROData_ProfileUZ::PointsList GetParametricPoints() const;
180 * Replace current profile points by new one.
181 * First and last points will be automatically updated.
182 * \param thePoints the list with new profile points
184 HYDRODATA_EXPORT void SetProfilePoints( const ProfilePoints& thePoints, bool IsConvertFromGlobal = true );
187 * Returns profile points.
188 * Empty sequence is returned if first or last point was not set.
189 * \return profile points list
191 HYDRODATA_EXPORT ProfilePoints GetProfilePoints( bool IsConvertToGlobal = false,
192 bool CanUseDefaultLeftRight = false ) const;
196 * Return profile point with minimal Z value.
197 * \return non-parametric profile point
199 HYDRODATA_EXPORT ProfilePoint GetBottomPoint(bool IsConvertToGlobal = false) const;
202 * Return profile middle point.
203 * \return non-parametric profile point
205 HYDRODATA_EXPORT ProfilePoint GetMiddlePoint( bool CanUseDefault ) const;
208 // Public methods to work with files.
211 * Stores the profile file path
212 * \param theFilePath profile file path
214 HYDRODATA_EXPORT void SetFilePath( const TCollection_AsciiString& theFilePath );
217 * Returns uploaded profile file path
219 HYDRODATA_EXPORT TCollection_AsciiString GetFilePath() const;
222 HYDRODATA_EXPORT void SetProfileColor( const QColor& theColor );
224 HYDRODATA_EXPORT bool GetProfileColor(QColor&) const;
228 * Imports Profile data from file. The supported file types:
229 * - parametric presentation of profile (2 points in line U,Z)
230 * - georeferenced presentation of profile (3 points in line X,Y,Z)
231 * Create as many objects as many profiles in the file are defined.
232 * \param theFileName the path to file
233 * \return \c number of successfully imported profiles
235 HYDRODATA_EXPORT static int ImportFromFile( const Handle(HYDROData_Document)& theDoc,
236 const TCollection_AsciiString& theFileName,
237 NCollection_Sequence<int>& theBadProfilesIds,
238 bool isToProject = true );
241 * Imports Profile data from file.
242 * \param theFileName the path to file
243 * \param theIsRead set to true if at least one non empty string was read from file
244 * \return \c true if file has been successfully read
246 HYDRODATA_EXPORT virtual bool ImportFromFile( const TCollection_AsciiString& theFileName,
247 bool isToProject = true,
248 bool* isNotEmpty = 0 );
251 * Imports Profile data from file.
252 * \param theFile file to read
253 * \param theIsRead set to true if at least one non empty string was read from file
254 * \return \c true if file has been successfully read
256 HYDRODATA_EXPORT virtual bool ImportFromFile( OSD_File& theFile,
257 bool isToProject = true,
258 bool* isNotEmpty = 0 );
262 * Checks and if necessary create child 3D object.
263 * Reimplemented to prevent creation of 3D child object.
265 HYDRODATA_EXPORT virtual void checkAndSetObject3D() {}
267 TopoDS_Shape CreateProfileWire( bool canUseDefaultPoints, bool reverseXCoord = false) const;
269 static void ProjectProfilePoints( ProfilePoints& thePoints );
273 friend class HYDROData_Iterator;
276 * Creates new object in the internal data structure. Use higher level objects
277 * to create objects with real content.
279 HYDRODATA_EXPORT HYDROData_Profile();
282 * Destructs properties of the object and object itself, removes it from the document.
284 HYDRODATA_EXPORT ~HYDROData_Profile();