Salome HOME
Update copyright information
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_HypothesesUtils.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_HypothesesUtils.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef SMESHGUI_HypothesesUtils_HeaderFile
29 #define SMESHGUI_HypothesesUtils_HeaderFile
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include <qstring.h>
34 #include <qstringlist.h>
35
36 #include "SALOME_InteractiveObject.hxx"
37 #include "SALOMEDSClient_definitions.hxx"
38
39 #include "SALOMEconfig.h"
40 #include CORBA_CLIENT_HEADER(SALOMEDS)
41 #include CORBA_SERVER_HEADER(SMESH_Mesh)
42 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
43
44 #include <vector>
45
46 class HypothesisData;
47 class HypothesesSet;
48 class SMESHGUI_GenericHypothesisCreator;
49 class SALOMEDSClient_SObject;
50 class algo_error_array;
51
52 namespace SMESH{
53
54   SMESHGUI_EXPORT
55   void InitAvailableHypotheses();
56
57   SMESHGUI_EXPORT
58   QStringList GetAvailableHypotheses( const bool isAlgo, 
59                                       const int theDim = -1, 
60                                       const bool isAux = false,
61                                       const bool isNeedGeometry = true);
62   SMESHGUI_EXPORT
63   QStringList GetHypothesesSets();
64
65   SMESHGUI_EXPORT
66   HypothesesSet* GetHypothesesSet(const QString theSetName);
67
68   SMESHGUI_EXPORT
69   HypothesisData* GetHypothesisData(const char* aHypType);
70
71   SMESHGUI_EXPORT
72   bool IsAvailableHypothesis(const HypothesisData* algoData,
73                              const QString&        hypType,
74                              bool&                 isOptional);
75
76   SMESHGUI_EXPORT
77   bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
78                              const HypothesisData* algo2Data);
79
80   SMESHGUI_EXPORT
81   SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const char* aHypType);
82
83   SMESHGUI_EXPORT
84   SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const char* aHypType,
85                                                const char* aHypName,
86                                                const bool isAlgo = false);
87
88   SMESHGUI_EXPORT
89   bool AddHypothesisOnMesh(SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
90
91   SMESHGUI_EXPORT
92   bool AddHypothesisOnSubMesh(SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
93
94   SMESHGUI_EXPORT
95   bool RemoveHypothesisOrAlgorithmOnMesh(const Handle(SALOME_InteractiveObject)& IObject);
96
97   SMESHGUI_EXPORT
98   bool RemoveHypothesisOrAlgorithmOnMesh(_PTR(SObject) MorSM,
99                                          SMESH::SMESH_Hypothesis_ptr anHyp);
100
101   typedef std::vector<_PTR(SObject)> SObjectList;
102   SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp ) ;
103
104   SMESHGUI_EXPORT
105   QString GetMessageOnAlgoStateErrors(const algo_error_array& errors);
106 }
107
108 #endif