X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.h;h=eab582db707ce1b6616b4759d51671c6a1b05c9a;hb=c7cf59e092fe050003d1e556715e3ac97acf6bd4;hp=e2306013ba25e6ee04b662125eace51d1e895a50;hpb=a3ae70db118828f7996bab07e05d18d619dd2c41;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.h b/src/HYDROData/HYDROData_Tool.h index e2306013..eab582db 100644 --- a/src/HYDROData/HYDROData_Tool.h +++ b/src/HYDROData/HYDROData_Tool.h @@ -1,16 +1,104 @@ +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef HYDROData_Tool_HeaderFile #define HYDROData_Tool_HeaderFile +#include "HYDROData.h" +#include "HYDROData_Entity.h" + #include +#include +#include +#include +#include +#include -class HYDROData_Tool { +class QFile; +class TopoDS_Shape; +class TopTools_SequenceOfShape; +class Handle(HYDROData_Document); -public: +class HYDRODATA_EXPORT HYDROData_Tool { +public: + static void WriteStringsToFile( QFile& theFile, + 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 + * \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 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 ); + + /** + * \brief Updates the child object name. + * \param theOldStr old father object name + * \param theNewStr new father object name + * \param theObject object to update + */ + static void UpdateChildObjectName( const QString& theOldStr, + const QString& theNewStr, + const Handle(HYDROData_Entity)& theObject ); + + + /** + * \brief Generate name for new object in python environment. + * \param theTreatedObjects objects which was alredy created by dump operation + * \param thePrefix name prefix + * \return generated name + */ + static QString GenerateNameForPython( const MapOfTreatedObjects& theTreatedObjects, + const QString& thePrefix ); + /** + * Computes Point State from TopAbs (simplified & limited method). + */ + + static TopAbs_State ComputePointState( const gp_XY& thePnt2d, + const TopoDS_Face& theFace ); }; inline bool ValuesEquals( const double& theFirst, const double& theSecond )