Salome HOME
DCQ : Merge with Ecole_ete_a6.
[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 <qtextedit.h>
33 #include <qevent.h>
34
35 class QMutex;
36
37 class QAD_PyInterp;
38 class TInitEditorThread;
39 class TExecCommandThread;
40
41 class QAD_PyEditor : public QTextEdit
42 {
43   Q_OBJECT;
44
45   friend class TInitEditorThread;
46   friend class TExecCommandThread;
47
48 public:
49   enum { PYTHON_OK = QEvent::User + 5000, PYTHON_ERROR, PYTHON_INCOMPLETE, 
50          INITIALIZE, SET_WAIT_CURSOR, UNSET_CURSOR };
51
52 public:
53   QAD_PyEditor(QAD_PyInterp*& theInterp, QMutex* theMutex,
54                QWidget *theParent = 0, const char* theName = "");
55   virtual void Init(); 
56   ~QAD_PyEditor();
57   
58   virtual void setText(QString s); 
59   bool isCommand(const QString& str) const;
60   
61 protected:
62   virtual void keyPressEvent (QKeyEvent * e);
63   virtual void mousePressEvent (QMouseEvent * e);
64   virtual void mouseReleaseEvent (QMouseEvent * e);
65   virtual void dropEvent (QDropEvent *e);
66   virtual void customEvent (QCustomEvent *e);
67   
68 public slots:
69   void handleReturn();
70   
71 private:
72   QString        _buf;
73   QString        _currentCommand;
74   QString        _currentPrompt;
75   bool           _isInHistory;
76
77   QAD_PyInterp*& myInterp;
78   QMutex* myStudyMutex;
79   QMutex* myInitEditorMutex;
80   QMutex* myExecCommandMutex;
81   TInitEditorThread* myInitEditorThread;
82   TExecCommandThread* myExecCommandThread;
83
84   QString myBanner;
85   QString myOutput;
86   QString myError;
87 };
88
89 #endif
90