Salome HOME
cd210c5dd055fc15954b58f377b0d436c3aa745a
[plugins/gmshplugin.git] / idl / GMSHPlugin_Algorithm.idl
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016-2022  EDF R&D
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 //
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.alneos.com/ or email : contact@alneos.fr
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 #ifndef _SMESH_GMSHALGORITHM_IDL_
22 #define _SMESH_GMSHALGORITHM_IDL_
23
24 #include "SALOME_Exception.idl"
25 #include "SMESH_Hypothesis.idl"
26 #include "GEOM_Gen.idl"
27
28 /*!
29  * GMSHPlugin: interfaces to GMSH related hypotheses and algorithms
30  */
31 module GMSHPlugin
32 {
33   typedef sequence<string> string_array;
34
35   /*!
36    * GMSHPlugin_GMSH: interface of "Gmsh" algorithm
37    */
38   interface GMSHPlugin_GMSH : SMESH::SMESH_3D_Algo
39   {
40   };
41
42   /*!
43    * GMSHPlugin_GMSH_2D: interface of "Gmsh_2D" algorithm
44    */
45   interface GMSHPlugin_GMSH_2D : SMESH::SMESH_2D_Algo
46   {
47   };
48   
49   /*!
50    * GMSHPlugin_Hypothesis: interface of "GMSH parameters" hypothesis
51    */
52   interface GMSHPlugin_Hypothesis : SMESH::SMESH_Hypothesis
53   {
54     void Set2DAlgo(in long value);
55     long Get2DAlgo();
56     
57     void Set3DAlgo(in long value);
58     long Get3DAlgo();
59     
60     void SetRecomb2DAlgo(in long value);
61     long GetRecomb2DAlgo();
62     
63     void SetRecombineAll(in boolean value);
64     boolean GetRecombineAll();
65     
66     void SetSubdivAlgo(in long value);
67     long GetSubdivAlgo();
68     
69     void SetRemeshAlgo(in long value);
70     long GetRemeshAlgo();
71     
72     void SetRemeshPara(in long value);
73     long GetRemeshPara();
74     
75     void SetSmouthSteps(in double value);
76     double GetSmouthSteps();
77     
78     void SetSizeFactor(in double value);
79     double GetSizeFactor();
80
81     void SetMeshCurvatureSize(in double value);
82     double GetMeshCurvatureSize();
83     
84     void SetMaxSize(in double value);
85     double GetMaxSize();
86
87     void SetMinSize(in double value);
88     double GetMinSize();
89
90     void SetSecondOrder(in boolean value);
91     boolean GetSecondOrder();
92     
93     void SetUseIncomplElem(in boolean value);
94     boolean GetUseIncomplElem();
95     
96     void SetIs2d(in boolean value);
97     
98     void SetCompoundOnShape(in GEOM::GEOM_Object GeomObj);
99     void SetCompoundOnEntry(in string entry);
100     void UnsetCompoundOnShape(in GEOM::GEOM_Object GeomObj);
101     void UnsetCompoundOnEntry(in string entry);
102     string_array GetCompoundOnEntries();
103     
104   };
105
106   /*!
107    * GMSHPlugin_Hypothesis_2D: interface of "GMSH 2D parameters" hypothesis
108    */
109   interface GMSHPlugin_Hypothesis_2D : GMSHPlugin_Hypothesis
110   {
111   };
112
113 };
114
115 #endif