Salome HOME
dfd9c72a738283cb348bced7ec481ccef3b9e1cf
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_Information.h
1 //  File      : SUPERVGUI_Information.h
2 //  Created   : 22 / 01 / 2002
3 //  Author    : Francis KLOSS
4 //  Project   : SALOME
5 //  Module    : SUPERVGUI
6 //  Copyright : CEA
7
8 using namespace std;
9 #ifndef SUPERVGUI_Information_H
10 #define SUPERVGUI_Information_H
11
12 #include "SUPERVGUI_Def.h"
13
14 class SUPERVGUI_Information: public QDialog {
15   Q_OBJECT
16
17   public:
18     SUPERVGUI_Information(SUPERV_CNode node, bool isReadOnly);
19     virtual ~SUPERVGUI_Information();
20
21     //bool run(SUPERV_CNode node, bool isReadOnly);
22
23   private slots:
24     void okButton();
25     void koButton();
26
27   private:
28     QString date(SUPERV_Date d);
29
30     QLineEdit*      nameV;
31     QLineEdit*      authV;
32     QLineEdit*      contV;
33     QLabel*         contL;
34     QMultiLineEdit* commV;
35     QLabel*         cdatV;
36     QLabel*         udatV;
37     SUPERV_CNode    myNode;
38 };
39
40 #endif