Salome HOME
ca978831b52019066af324cf6b3f9e7006f94870
[modules/gui.git] / src / STD / STD_CloseDlg.h
1 #ifndef STD_CloseDlg_H
2 #define STD_CloseDlg_H
3
4 #include <qdialog.h> 
5
6 /*!
7  * \brief 
8  *
9  * 
10  */
11 class STD_CloseDlg: public QDialog
12 {
13   Q_OBJECT
14
15 public:
16   STD_CloseDlg ( QWidget * parent = 0, bool modal = FALSE, WFlags f = 0 ) ;
17   ~STD_CloseDlg ( ) { };
18
19 private slots:
20   void onButtonClicked();
21
22 private:
23   /*!\var m_pb1
24    * \brief Private, stores a dialog button 1
25    */
26   QPushButton* m_pb1; 
27   /*!\var m_pb2
28    * \brief Private, stores a dialog button 2
29    */
30   QPushButton* m_pb2;
31   /*!\var m_pb3
32    * \brief Private, stores a dialog button 3
33    */
34   QPushButton* m_pb3;
35
36   /*!\var m_pb4
37    * \brief Private, stores a dialog button 4
38    */
39   QPushButton* m_pb4;
40 };
41
42 #endif
43