Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / PythonConsole / PythonConsole_PyEditor.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  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. 
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 //
23 //
24 //  File   : PythonConsole_PyEditor.h
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27
28 #ifndef PythonConsole_PyEditor_H
29 #define PythonConsole_PyEditor_H
30
31 #include "PythonConsole_PyInterp.h" // this include must be first (see PyInterp_base.h)!
32
33 #include <qevent.h>
34 #include <qtextedit.h>
35
36 class PythonConsole_PyInterp;
37
38 class PYCONSOLE_EXPORT PythonConsole_PyEditor : public QTextEdit
39 {
40   Q_OBJECT;
41
42 public:
43   PythonConsole_PyEditor(PyInterp_base* theInterp, QWidget *theParent = 0, const char* theName = "");
44   ~PythonConsole_PyEditor();
45   
46   virtual void setText(QString s); 
47   bool isCommand(const QString& str) const;
48
49   virtual void exec( const QString& command );
50   
51 protected:
52   virtual void contentsDropEvent( QDropEvent* event );
53   virtual void contentsMouseReleaseEvent( QMouseEvent* event );
54   virtual void keyPressEvent (QKeyEvent* event);
55   virtual void mousePressEvent (QMouseEvent* event);
56   virtual void customEvent (QCustomEvent* event);
57   
58 public slots:
59   void handleReturn();
60   void onPyInterpChanged( PyInterp_base* );
61
62   virtual QPopupMenu* createPopupMenu( const QPoint& );
63   
64 private:
65   QString        _buf;
66   QString        _currentCommand;
67   QString        _currentPrompt;
68   bool           _isInHistory;
69
70   PyInterp_base* myInterp;
71
72   QString myBanner;
73   QString myOutput;
74   QString myError;
75 };
76
77 #endif