]> SALOME platform Git repositories - modules/gui.git/blob - src/PyConsole/PyConsole_Editor.h
Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / PyConsole / PyConsole_Editor.h
1 //  Copyright (C) 2007-2008  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.
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 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
23 // File   : PyConsole_Editor.h
24 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
25 //
26 #ifndef PYCONSOLE_EDITOR_H
27 #define PYCONSOLE_EDITOR_H
28
29 #include "PyConsole.h"
30
31 #include <QTextEdit>
32
33 class PyConsole_Interp;
34 class PyInterp_Request;
35 class QEventLoop;
36
37 class PYCONSOLE_EXPORT PyConsole_Editor : public QTextEdit
38 {
39   Q_OBJECT;
40
41 public:
42   PyConsole_Editor( PyConsole_Interp* theInterp, QWidget *theParent = 0 );
43   ~PyConsole_Editor();
44   
45   virtual void   addText( const QString& str, const bool newBlock = false ); 
46   bool           isCommand( const QString& str ) const;
47
48   virtual void   exec( const QString& command );
49   void           execAndWait( const QString& command );
50
51   bool           isSync() const;
52   void           setIsSync( const bool );
53
54 protected:
55   virtual void   dropEvent( QDropEvent* event );
56   virtual void   mouseReleaseEvent( QMouseEvent* event );
57   virtual void   keyPressEvent ( QKeyEvent* event);
58   virtual void   customEvent( QEvent* event);
59
60   virtual PyInterp_Request* createRequest( const QString& );
61
62 public slots:
63   void           cut();
64   void           paste();
65   void           clear();
66   void           handleReturn();
67   void           onPyInterpChanged( PyConsole_Interp* );
68   
69 private:
70   PyConsole_Interp* myInterp;           //!< python interpreter
71
72   QString           myCommandBuffer;    //!< python comman buffer
73   QString           myCurrentCommand;   //!< currently being printed command
74   QString           myPrompt;           //!< current command line prompt
75   int               myCmdInHistory;     //!< current history command index
76   QStringList       myHistory;          //!< commands history buffer
77   QEventLoop*       myEventLoop;        //!< internal event loop
78   QString           myBanner;           //!< current banner
79   QStringList       myQueue;            //!< python commands queue
80   bool              myIsSync;           //!< synchronous mode flag
81 };
82
83 #endif // PYCONSOLE_EDITOR_H