X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.h;h=a1fc83373496e5a1a6d8424d86bb7792769ac627;hb=ad8562bab9992101430a6327aa7ca06c71f6d084;hp=5be4ba3ab2e65b366605a09a4e167b4ed4ec81c7;hpb=ac7145bc4d05b5df24b7bb28e968dfdc2930aed6;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.h b/src/HYDROData/HYDROData_Tool.h index 5be4ba3a..a1fc8337 100644 --- a/src/HYDROData/HYDROData_Tool.h +++ b/src/HYDROData/HYDROData_Tool.h @@ -2,14 +2,18 @@ #ifndef HYDROData_Tool_HeaderFile #define HYDROData_Tool_HeaderFile +#include "HYDROData.h" +#include "HYDROData_Entity.h" + #include #include +#include class QFile; -class QStringList; +class Handle(HYDROData_Document); -class HYDROData_Tool { +class HYDRODATA_EXPORT HYDROData_Tool { public: @@ -17,6 +21,54 @@ public: const QStringList& theStrings, const QString& theSep = "\n" ); + /** + * Enables "MustBeUpdated" flag for Images that are depended on "MustBeUpdated" images. + * \param theDoc document where this operation is performed + */ + static void SetMustBeUpdatedImages( const Handle(HYDROData_Document)& theDoc ); + + /** + * \brief Generate name for new object. + * \param theModule module + * \param thePrefix name prefix + * \param theUsedNames list of already used names + * \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 ); + + /** + * \brief Find the data object with the specified name. + * \param theModule module + * \param theName name + * \param theObjectKind kind of object + * \return data object + */ + static Handle(HYDROData_Entity) FindObjectByName( const Handle(HYDROData_Document)& theDoc, + const QString& theName, + const ObjectKind theObjectKind = KIND_UNKNOWN ); + + /** + * \brief Find the data objects with the specified names. + * \param theModule module + * \param theNames list of names + * \param theObjectKind kind of object + * \return list of data objects + */ + static HYDROData_SequenceOfObjects FindObjectsByNames( const Handle(HYDROData_Document)& theDoc, + const QStringList& theNames, + const ObjectKind theObjectKind = KIND_UNKNOWN ); + + /** + * \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 ); + }; inline bool ValuesEquals( const double& theFirst, const double& theSecond )