Salome HOME
1. Implementation of new pattern mapping algorthm (mesh refinement)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_HypothesesUtils.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  CEA
4 // 
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. 
9 // 
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. 
14 // 
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 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : SMESHGUI_Hypotheses.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef SMESHGUI_HypothesesUtils_HeaderFile
29 #define SMESHGUI_HypothesesUtils_HeaderFile
30
31 #include <qstring.h>
32 #include <qstringlist.h>
33
34 #include "SALOME_InteractiveObject.hxx"
35
36 #include "SALOMEconfig.h"
37 #include CORBA_CLIENT_HEADER(SALOMEDS)
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
39 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
40
41 class HypothesisData;
42 class SMESHGUI_GenericHypothesisCreator;
43
44 namespace SMESH{
45
46   void InitAvailableHypotheses();
47
48   QStringList GetAvailableHypotheses(const bool isAlgo);
49
50   HypothesisData* GetHypothesisData(const char* aHypType);
51
52   SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const char* aHypType);
53
54   SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const char* aHypType,
55                                                const char* aHypName,
56                                                const bool isAlgo = false);
57
58   bool AddHypothesisOnMesh(SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
59
60   bool AddHypothesisOnSubMesh(SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
61
62   bool RemoveHypothesisOrAlgorithmOnMesh(const Handle(SALOME_InteractiveObject)& IObject);
63
64   bool RemoveHypothesisOrAlgorithmOnMesh(SALOMEDS::SObject_ptr MorSM,
65                                          SMESH::SMESH_Hypothesis_ptr anHyp);
66
67   SALOMEDS::Study::ListOfSObject* GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp ) ;
68
69 }
70
71 #endif