Salome HOME
7dd044d6077e65afb459ea4e621c7bb6ddc7e0c3
[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   Constructor
31 */
32 PythonConsole::PythonConsole(QWidget* parent, PyInterp_base* interp)
33 : QWidget(parent), myEditor( 0 )
34 {
35   // create python interpreter
36   myInterp = interp;
37   if ( !myInterp )
38     myInterp = new PythonConsole_PyInterp();
39   
40   // initialize Python interpretator
41   myInterp->initialize();
42
43   // create editor console
44   QVBoxLayout* lay = new QVBoxLayout( this );
45   myEditor = new PythonConsole_PyEditor(myInterp, this,"Python Interpreter");
46   lay->addWidget( myEditor );
47 }
48
49 /*!
50   Destructor
51 */
52 PythonConsole::~PythonConsole()
53 {
54 }
55
56 /*!
57   Executes command
58   \param command - string with command and arguments
59 */
60 void PythonConsole::exec( const QString& command )
61 {
62   if ( myEditor )
63     myEditor->exec( command );
64 }
65
66 /*!
67   Changes font of python console
68   \param f - new font
69 */
70 void PythonConsole::setFont( const QFont& f )
71 {
72   if( myEditor )
73     myEditor->setFont( f );
74 }
75
76 /*!
77   \return font of python console
78 */
79 QFont PythonConsole::font() const
80 {
81   QFont res;
82   if( myEditor )
83     res = myEditor->font();
84   return res;
85 }