X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.h;h=e8fd7967bf0c23ad11f9f511a346fc59b6a5c53e;hb=d398a8be8e0b0259b476b358d53d234ce4c82379;hp=83b1c0421ca439e37739500e4b43971b0d2564d0;hpb=b2b21a9b49f0df8f53c3a1bcb459a4ec081a84ec;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.h b/src/HYDROData/HYDROData_Tool.h index 83b1c042..e8fd7967 100644 --- a/src/HYDROData/HYDROData_Tool.h +++ b/src/HYDROData/HYDROData_Tool.h @@ -20,21 +20,28 @@ #define HYDROData_Tool_HeaderFile #include "HYDROData.h" -#include "HYDROData_Entity.h" - -#include - -#include - -#include #include -#include -#include +#include +class Handle_HYDROData_Document; +class Handle_HYDROData_Entity; +class HYDROData_SequenceOfObjects; +class MapOfTreatedObjects; +class gp_XY; +class QColor; class QFile; +class TCollection_ExtendedString; +#ifdef WIN32 + enum TopAbs_State; +#else + #include +#endif +class TopoDS_Edge; +class TopoDS_Face; class TopoDS_Shape; +class TopoDS_Wire; class TopTools_SequenceOfShape; -class Handle(HYDROData_Document); +class Quantity_Color; class HYDRODATA_EXPORT HYDROData_Tool { @@ -44,12 +51,6 @@ public: const QStringList& theStrings, const QString& theSep = "\n" ); - /** - * Enables "MustBeUpdated" flag for objects that are depended on "MustBeUpdated" objects. - * \param theDoc document where this operation is performed - */ - static void SetMustBeUpdatedObjects( const Handle(HYDROData_Document)& theDoc ); - /** * \brief Generate name for new object. * \param theDoc document @@ -58,17 +59,17 @@ public: * \param theIsTryToUsePurePrefix if true - the prefix will be returned if the name equal to the prefix is not busy * \return generated name */ - static QString GenerateObjectName( const Handle(HYDROData_Document)& theDoc, - const QString& thePrefix, - const QStringList& theUsedNames = QStringList(), - const bool theIsTryToUsePurePrefix = false ); + static QString GenerateObjectName( const Handle_HYDROData_Document& theDoc, + const QString& thePrefix, + const QStringList& theUsedNames = QStringList(), + const bool theIsTryToUsePurePrefix = false ); /** * \brief Checks the type of object. * \param theObject object to check * \return true if object is geometry object */ - static bool IsGeometryObject( const Handle(HYDROData_Entity)& theObject ); + static bool IsGeometryObject( const Handle_HYDROData_Entity& theObject ); /** * \brief Updates the child object name. @@ -78,7 +79,7 @@ public: */ static void UpdateChildObjectName( const QString& theOldStr, const QString& theNewStr, - const Handle(HYDROData_Entity)& theObject ); + const Handle_HYDROData_Entity& theObject ); /** @@ -95,6 +96,34 @@ public: static TopAbs_State ComputePointState( const gp_XY& thePnt2d, const TopoDS_Face& theFace ); + + static double GetAltitudeForEdge( const TopoDS_Edge& theEdge, + const gp_XY& thePoint, + double theParameterTolerance, + double theSquareDistanceTolerance, + double theInvalidAltitude ); + static double GetAltitudeForWire( const TopoDS_Wire& theWire, + const gp_XY& thePoint, + double theParameterTolerance, + double theSquareDistanceTolerance, + double theInvalidAltitude ); + + /** + * \brief Returns the first shape from the group. + * \param theGroups the list of groups + * \param theGroupId the group id + */ + static TopoDS_Shape getFirstShapeFromGroup( const HYDROData_SequenceOfObjects& theGroups, + const int theGroupId ); + + static TCollection_ExtendedString toExtString( const QString& ); + static QString toQString( const TCollection_ExtendedString& ); + + static Quantity_Color toOccColor( const QColor& ); + static QColor toQtColor( const Quantity_Color& ); + + static bool IsNan( double theValue ); + static bool IsInf( double theValue ); }; inline bool ValuesEquals( const double& theFirst, const double& theSecond ) @@ -113,8 +142,12 @@ inline bool ValuesLessEquals( const double& theFirst, const double& theSecond ) return theFirst <= theSecond || ValuesEquals( theFirst, theSecond ); } - - +HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const QString& theText ); +HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const QColor& theText ); +HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const TopoDS_Shape& theShape ); +HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const TopoDS_Face& theFace ); +HYDRODATA_EXPORT bool operator == ( const gp_XY& thePoint1, const gp_XY& thePoint2 ); +HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const gp_XY& theXY ); #endif