Salome HOME
Merge branch 'master' into V7_5_BR
[modules/gui.git] / src / PyConsole / PyConsole_Interp.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 //  File   : PyConsole_Interp.cxx
23 //  Author : Nicolas REJNERI, Adrien BRUNETON
24
25 #include "PyConsole_Interp.h"
26
27 /*!
28   \class PyConsole_Interp
29   \brief Python interpreter to be embedded to the SALOME study's GUI.
30
31   There is only one Python interpreter for the whole SALOME environment.
32
33   Call the initialize() method defined in the base class PyInterp_Interp,
34   to initialize the interpreter after instance creation.
35
36   The method initialize() calls virtuals methods
37   - initPython()  to initialize global Python interpreter
38   - initContext() to initialize interpreter internal context
39   - initRun()     to prepare interpreter for running commands
40 */
41
42 /*!
43   \brief Constructor.
44
45   Creates new python interpreter.
46 */
47 PyConsole_Interp::PyConsole_Interp(): PyInterp_Interp()
48 {
49 }
50
51 /*!
52   \brief Destructor.
53
54   Does nothing for the moment.
55 */
56 PyConsole_Interp::~PyConsole_Interp()
57 {
58 }
59
60 /*! Sets the variable "__IN_SALOME_GUI_CONSOLE" to True.
61 * This is not attached to a module (like salome_iapp.IN_SALOME_GUI_CONSOLE)
62 * since modules are shared across all interpreters in SALOME.
63 *
64 * (GIL is already acquired here)
65 */
66 int PyConsole_Interp::beforeRun()
67 {
68   return PyRun_SimpleString("__builtins__.__IN_SALOME_GUI_CONSOLE=True");
69 }
70  
71 int PyConsole_Interp::afterRun()
72 {
73   return PyRun_SimpleString("__builtins__.__IN_SALOME_GUI_CONSOLE=False");
74 }
75
76 QStringList PyConsole_Interp::getLastMatches() const
77 {
78   return QStringList();
79 }
80
81 QString PyConsole_Interp::getDocStr() const
82 {
83   return QString();
84 }
85
86 int PyConsole_Interp::runDirCommand(const QString&, const QString& )
87 {
88   return 0;
89 }
90
91 void PyConsole_Interp::clearCompletion()
92 {
93 }