]> SALOME platform Git repositories - modules/superv.git/blob - src/SUPERVGUI/SUPERVGUI_Python.h
Salome HOME
This commit was generated by cvs2git to create branch 'IMPORT'.
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_Python.h
1 // File      : SUPERVGUI_Python.h
2 // Created   : 18 / 06 / 2002
3 // Author    : Francis KLOSS
4 // Project   : SALOME
5 // Module    : SUPERVGUI
6 // Copyright : CEA
7
8 #ifndef SUPERVGUI_Python_H
9 #define SUPERVGUI_Python_H
10
11 using namespace std;
12 #include "SUPERVGUI_Def.h"
13 #include "QAD_PyInterp.h"
14
15 class SUPERVGUI_Python: public QDialog {
16   Q_OBJECT
17
18   public:
19     SUPERVGUI_Python(QAD_PyInterp* pi, bool isReadOnly);
20     virtual ~SUPERVGUI_Python();
21
22   private slots:
23     void accept();
24     void reject();
25
26   private:
27     QAD_PyInterp*   py_int;
28     QMultiLineEdit* edit;
29     QPushButton*    ok;
30     QPushButton*    ko;
31 };
32
33 #endif