X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.h;h=359ddf5b136bfd64c594d1fedd4f1da711eaeb5b;hb=f86cf7ecf17dbae2a1d84e0ebbab07c732208c2f;hp=0642d4fd74e6bc5da83cfbe2924ca10beb126207;hpb=5682ae51b2102d54e47d77446593b272e7eed867;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.h b/src/HYDROData/HYDROData_Tool.h index 0642d4fd..359ddf5b 100644 --- a/src/HYDROData/HYDROData_Tool.h +++ b/src/HYDROData/HYDROData_Tool.h @@ -20,23 +20,27 @@ #define HYDROData_Tool_HeaderFile #include "HYDROData.h" -#include "HYDROData_Entity.h" - -#include - -#include - -#include #include -#include -#include +#include +class HYDROData_Document; +class HYDROData_Entity; +class HYDROData_SequenceOfObjects; +class MapOfTreatedObjects; +class gp_XY; +class QColor; class QFile; -class TopoDS_Shape; -class TopTools_SequenceOfShape; -class Handle(HYDROData_Document); +class TCollection_ExtendedString; +#ifdef WIN32 + enum TopAbs_State; +#else + #include +#endif class TopoDS_Edge; +class TopoDS_Face; +class TopoDS_Shape; class TopoDS_Wire; +class Quantity_Color; class HYDRODATA_EXPORT HYDROData_Tool { @@ -54,10 +58,10 @@ 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. @@ -110,6 +114,20 @@ public: */ 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 ); + + /** + Rebuilds shape container (like compound/compsolid/shell) which contains faces (shared or nonshared with each other) + */ + static TopoDS_Shape RebuildCmp(const TopoDS_Shape& in); }; inline bool ValuesEquals( const double& theFirst, const double& theSecond ) @@ -128,8 +146,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