Salome HOME
Copyrights update
[modules/gui.git] / src / PythonConsole / PythonConsole_PyConsole.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA 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/
18 //
19 #include "PythonConsole_PyConsole.h"
20 #include "PythonConsole_PyEditor.h"
21 #include "PyInterp_base.h"
22
23 #include "SUIT_Desktop.h"
24
25 #include <qlayout.h>
26
27 using namespace std;
28
29 //****************************************************************
30 PythonConsole::PythonConsole(QWidget* parent, PyInterp_base* interp)
31 : QWidget(parent), myEditor( 0 )
32 {
33   // create python interpreter
34   myInterp = interp;
35   if ( !myInterp )
36     myInterp = new PythonConsole_PyInterp();
37   
38   // initialize Python interpretator
39   myInterp->initialize();
40
41   // create editor console
42   QVBoxLayout* lay = new QVBoxLayout( this );
43   myEditor = new PythonConsole_PyEditor(myInterp, this,"Python Interpreter");
44   lay->addWidget( myEditor );
45 }
46
47 //****************************************************************
48 PythonConsole::~PythonConsole()
49 {
50 }
51
52 //****************************************************************
53 void PythonConsole::exec( const QString& command )
54 {
55   if ( myEditor )
56     myEditor->exec( command );
57 }
58
59 //****************************************************************
60 void PythonConsole::setFont( const QFont& f )
61 {
62   if( myEditor )
63     myEditor->setFont( f );
64 }
65
66 //****************************************************************
67 QFont PythonConsole::font() const
68 {
69   QFont res;
70   if( myEditor )
71     res = myEditor->font();
72   return res;
73 }