Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / src / GEOM_SWIG_WITHIHM / libGEOM_Swig.i
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  File      : libGeometry_Swig.i
21 //  Created   : Tue Mar 26 15:04:48 2002
22 //  Author    : Nicolas REJNERI, Paul RASCLE
23 //  Project   : SALOME
24 //  Module    : GEOM
25 //
26 %module libGEOM_Swig
27
28 %{
29 #include "libGEOM_Swig.h"
30 %}
31
32 /*
33   managing C++ exception in the Python API
34 */
35 %exception
36 {
37   class PyAllowThreadsGuard {
38    public:
39     // Py_BEGIN_ALLOW_THREADS
40     PyAllowThreadsGuard() { _save = PyEval_SaveThread(); }
41     // Py_END_ALLOW_THREADS
42     ~PyAllowThreadsGuard() { PyEval_RestoreThread(_save); }
43    private:
44     PyThreadState *_save;
45   };
46
47   PyAllowThreadsGuard guard;
48
49   $action
50 }
51
52 class GEOM_Swig
53 {
54  public:
55   GEOM_Swig();
56   ~GEOM_Swig();
57
58   void createAndDisplayGO( const char* theEntry, bool theUpdateViewer = true );
59   void createAndDisplayFitAllGO( const char* theEntry );
60   void eraseGO( const char* theEntry, bool theUpdateViewer = true );
61
62   void UpdateViewer();
63
64   void setDisplayMode( const char* theEntry, int theMode, bool theUpdateViewer = true );
65   void setVectorsMode( const char* theEntry, bool theOn, bool theUpdateViewer = true );
66   void setColor( const char* theEntry, int theRed, int theGreen, int theBlue, bool theUpdateViewer = true );
67   void setTransparency( const char* theEntry, float theTransparency, bool theUpdateViewer = true );
68   void setIsos( const char* theEntry, int theNbU, int theNbV, bool theUpdateViewer = true );
69   void setDeflection( const char* theEntry, float theDeflection, bool theUpdateViewer = true );
70   void setMaterial( const char* theEntry, const char* theMaterial, bool theUpdateViewer = true );
71   void setMaterialProperty( const char* theEntry, const char* theMaterial, bool theUpdateViewer = true );
72
73   int         getIndexTopology( const char* theSubIOR, const char* theMainIOR );
74   const char* getShapeTypeString( const char* theIOR );
75   const char* getShapeTypeIcon( const char* theIOR );
76
77   bool initGeomGen();
78 };
79