Salome HOME
NRI : Update in order to search MODULES documentation and open active MODULE document...
[modules/kernel.git] / src / SALOMEGUI / SALOMEGUI_CloseDlg.h
1 // File      : SALOMEGUI_CloseDlg.h
2 // Created   : Wed Feb 26 11:40:52 2003
3 // Author    : Vasily RUSYAEV (vrv)
4 // Copyright : Open CASCADE
5
6 #ifndef SALOMEGUI_CloseDlg_H
7 #define SALOMEGUI_CloseDlg_H
8
9 #include <qdialog.h> 
10
11 class SALOMEGUI_CloseDlg: public QDialog
12 {
13   Q_OBJECT
14
15 public:
16   SALOMEGUI_CloseDlg ( QWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 ) ;
17   ~SALOMEGUI_CloseDlg ( ) { };
18
19 private slots:
20   void onButtonClicked();
21
22 private:
23   QPushButton* m_pb1;
24   QPushButton *m_pb2;
25   QPushButton *m_pb3;
26   QPushButton *m_pb4;
27 };
28
29 #endif
30