Salome HOME
Porting to Mandrake 10.1 and new products:
[modules/kernel.git] / src / SALOMEGUI / QAD_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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : QAD_PyEditor.h
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef QAD_PyEditor_H
30 #define QAD_PyEditor_H
31
32 #include "QAD_PyInterp.h" // this include must be first (see PyInterp_base.h)!
33 #include <qtextedit.h>
34 #include <qevent.h>
35
36 class QMutex;
37
38 class QAD_PyInterp;
39 class TInitEditorThread;
40 class TExecCommandThread;
41
42 class QAD_PyEditor : public QTextEdit
43 {
44   Q_OBJECT;
45
46   friend class TInitEditorThread;
47   friend class TExecCommandThread;
48
49 public:
50   enum { PYTHON_OK = QEvent::User + 5000, PYTHON_ERROR, PYTHON_INCOMPLETE, 
51          INITIALIZE, SET_WAIT_CURSOR, UNSET_CURSOR };
52
53 public:
54   QAD_PyEditor(QAD_PyInterp*& theInterp, QMutex* theMutex,
55                QWidget *theParent = 0, const char* theName = "");
56   virtual void Init(); 
57   ~QAD_PyEditor();
58   
59   virtual void setText(QString s); 
60   bool isCommand(const QString& str) const;
61   
62 protected:
63   virtual void contentsDropEvent( QDropEvent* event );
64   virtual void contentsMouseReleaseEvent( QMouseEvent* event );
65   virtual void keyPressEvent (QKeyEvent* event);
66   virtual void mousePressEvent (QMouseEvent* event);
67   virtual void customEvent (QCustomEvent* event);
68   
69 public slots:
70   void handleReturn();
71   
72 private:
73   QString        _buf;
74   QString        _currentCommand;
75   QString        _currentPrompt;
76   bool           _isInHistory;
77
78   QAD_PyInterp*& myInterp;
79   QMutex* myStudyMutex;
80   QMutex* myInitEditorMutex;
81   QMutex* myExecCommandMutex;
82   TInitEditorThread* myInitEditorThread;
83   TExecCommandThread* myExecCommandThread;
84
85   QString myBanner;
86   QString myOutput;
87   QString myError;
88 };
89
90 #endif
91