Salome HOME
updated copyright message
[plugins/gmshplugin.git] / idl / GMSHPlugin_Algorithm.idl
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016-2023  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_3D: interface of "Gmsh" algorithm
44    */
45   interface GMSHPlugin_GMSH_3D : SMESH::SMESH_3D_Algo
46   {
47   };
48
49   /*!
50    * GMSHPlugin_GMSH_2D: interface of "Gmsh_2D" algorithm
51    */
52   interface GMSHPlugin_GMSH_2D : SMESH::SMESH_2D_Algo
53   {
54   };
55   
56   /*!
57    * GMSHPlugin_Hypothesis: interface of "GMSH parameters" hypothesis
58    */
59   interface GMSHPlugin_Hypothesis : SMESH::SMESH_Hypothesis
60   {
61     void Set2DAlgo(in long value);
62     long Get2DAlgo();
63     
64     void Set3DAlgo(in long value);
65     long Get3DAlgo();
66     
67     void SetRecomb2DAlgo(in long value);
68     long GetRecomb2DAlgo();
69     
70     void SetRecombineAll(in boolean value);
71     boolean GetRecombineAll();
72     
73     void SetSubdivAlgo(in long value);
74     long GetSubdivAlgo();
75     
76     void SetRemeshAlgo(in long value);
77     long GetRemeshAlgo();
78     
79     void SetRemeshPara(in long value);
80     long GetRemeshPara();
81     
82     void SetSmouthSteps(in double value);
83     double GetSmouthSteps();
84     
85     void SetSizeFactor(in double value);
86     double GetSizeFactor();
87
88     void SetMeshCurvatureSize(in double value);
89     double GetMeshCurvatureSize();
90     
91     void SetMaxSize(in double value);
92     double GetMaxSize();
93
94     void SetMinSize(in double value);
95     double GetMinSize();
96
97     void SetSecondOrder(in boolean value);
98     boolean GetSecondOrder();
99     
100     void SetUseIncomplElem(in boolean value);
101     boolean GetUseIncomplElem();
102     
103     void SetIs2d(in boolean value);
104     
105     void SetCompoundOnShape(in GEOM::GEOM_Object GeomObj);
106     void SetCompoundOnEntry(in string entry);
107     void UnsetCompoundOnShape(in GEOM::GEOM_Object GeomObj);
108     void UnsetCompoundOnEntry(in string entry);
109     string_array GetCompoundOnEntries();
110     
111   };
112
113   /*!
114    * GMSHPlugin_Hypothesis_2D: interface of "GMSH 2D parameters" hypothesis
115    */
116   interface GMSHPlugin_Hypothesis_2D : GMSHPlugin_Hypothesis
117   {
118   };
119
120 };
121
122 #endif