Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/yacs.git] / src / salomegui_swig / libYACS_Swig.i
1 // Copyright (C) 2006-2012  CEA/DEN, EDF R&D
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.
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 %define DOCSTRING
21 "Module that defines the YACS_Swig class to interact with the YACS GUI
22
23 To get a YACS_Swig object use ImportComponentGUI function from salome module :
24   >>> yg=salome.ImportComponentGUI('YACS')"
25 %enddef
26
27 %module(docstring=DOCSTRING) libYACS_Swig
28
29 %{
30 #include "YACSGUI_Swig.hxx"
31
32 class PyAllowThreadsGuard {
33    public:
34     PyAllowThreadsGuard() { _save = PyEval_SaveThread(); }
35     ~PyAllowThreadsGuard() { PyEval_RestoreThread(_save); }
36    private:
37     PyThreadState *_save;
38 };
39
40 %}
41
42 %include std_string.i
43
44 %ignore real_activate;
45 %ignore real_loadSchema;
46
47 /*
48   managing C++ exception in the Python API
49 */
50 %exception
51 {
52   PyAllowThreadsGuard guard;
53   $action
54 }
55
56 #ifdef DOXYGEN_IS_OK
57 %include doc.i 
58 #endif
59 %include "YACSGUI_Swig.hxx"