Salome HOME
0020577: EDF 1164 SMESH: Bad dump of concatenate with create common groups
[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 // boost includes
47 #include <boost/shared_ptr.hpp>
48
49 class HypothesisData;
50 class HypothesesSet;
51 class SMESHGUI_GenericHypothesisCreator;
52 class SALOMEDSClient_SObject;
53 class algo_error_array;
54
55 namespace SMESH
56 {
57   typedef boost::shared_ptr<SMESHGUI_GenericHypothesisCreator> HypothesisCreatorPtr;
58
59   SMESHGUI_EXPORT
60   void InitAvailableHypotheses();
61
62   SMESHGUI_EXPORT
63   QStringList GetAvailableHypotheses( const bool isAlgo, 
64                                       const int theDim = -1, 
65                                       const bool isAux = false,
66                                       const bool isNeedGeometry = true);
67   SMESHGUI_EXPORT
68   QStringList GetHypothesesSets();
69
70   SMESHGUI_EXPORT
71   HypothesesSet* GetHypothesesSet(const QString theSetName);
72
73   SMESHGUI_EXPORT
74   HypothesisData* GetHypothesisData(const char* aHypType);
75
76   SMESHGUI_EXPORT
77   bool IsAvailableHypothesis(const HypothesisData* algoData,
78                              const QString&        hypType,
79                              bool&                 isOptional);
80
81   SMESHGUI_EXPORT
82   bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
83                              const HypothesisData* algo2Data);
84
85   SMESHGUI_EXPORT
86   HypothesisCreatorPtr GetHypothesisCreator(const char* aHypType);
87
88   SMESHGUI_EXPORT
89   SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const char* aHypType,
90                                                const char* aHypName,
91                                                const bool isAlgo = false);
92
93   SMESHGUI_EXPORT
94   bool AddHypothesisOnMesh(SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
95
96   SMESHGUI_EXPORT
97   bool AddHypothesisOnSubMesh(SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp);
98
99   SMESHGUI_EXPORT
100   bool RemoveHypothesisOrAlgorithmOnMesh(const Handle(SALOME_InteractiveObject)& IObject);
101
102   SMESHGUI_EXPORT
103   bool RemoveHypothesisOrAlgorithmOnMesh(_PTR(SObject) MorSM,
104                                          SMESH::SMESH_Hypothesis_ptr anHyp);
105
106   typedef std::vector<_PTR(SObject)> SObjectList;
107   SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp ) ;
108
109   SMESHGUI_EXPORT
110   QString GetMessageOnAlgoStateErrors(const algo_error_array& errors);
111 }
112
113 #endif