1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 CEA
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License.
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
23 // File : SMESHGUI_HypothesesUtils.h
24 // Author : Julia DOROVSKIKH
28 #ifndef SMESHGUI_HypothesesUtils_HeaderFile
29 #define SMESHGUI_HypothesesUtils_HeaderFile
32 #include <qstringlist.h>
34 #include "SALOME_InteractiveObject.hxx"
35 #include "SALOMEDSClient_definitions.hxx"
37 #include "SALOMEconfig.h"
38 #include CORBA_CLIENT_HEADER(SALOMEDS)
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
40 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
46 class SMESHGUI_GenericHypothesisCreator;
47 class SALOMEDSClient_SObject;
48 class algo_error_array;
52 void InitAvailableHypotheses();
54 QStringList GetAvailableHypotheses( const bool isAlgo,
55 const int theDim = -1,
56 const bool isAux = false);
58 QStringList GetHypothesesSets();
60 HypothesesSet* GetHypothesesSet(const QString theSetName);
62 HypothesisData* GetHypothesisData(const char* aHypType);
64 bool IsAvailableHypothesis(const HypothesisData* algoData,
65 const QString& hypType,
68 bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
69 const HypothesisData* algo2Data);
71 SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const char* aHypType);
73 SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const char* aHypType,
75 const bool isAlgo = false);
77 bool AddHypothesisOnMesh(SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
79 bool AddHypothesisOnSubMesh(SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
81 bool RemoveHypothesisOrAlgorithmOnMesh(const Handle(SALOME_InteractiveObject)& IObject);
83 bool RemoveHypothesisOrAlgorithmOnMesh(_PTR(SObject) MorSM,
84 SMESH::SMESH_Hypothesis_ptr anHyp);
86 typedef std::vector<_PTR(SObject)> SObjectList;
87 SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp ) ;
89 QString GetMessageOnAlgoStateErrors(const algo_error_array& errors);