Salome HOME
Fix pb with Object Browser update, when several not-loaded components have data....
[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 /*! \class QDialog
7  * \brief For more information see <a href="http://doc.trolltech.com">QT documentation</a>.
8  */
9 /*!\class STD_CloseDlg
10  * \brief Describes a dialog box shown on closing the active study
11  */
12 class STD_CloseDlg: public QDialog
13 {
14   Q_OBJECT
15
16 public:
17   STD_CloseDlg ( QWidget * parent = 0, bool modal = FALSE, WFlags f = 0 ) ;
18   ~STD_CloseDlg ( ) { };
19
20 private slots:
21   void onButtonClicked();
22
23 private:
24   /*!\var m_pb1
25    * \brief Private, stores a dialog button 1
26    */
27   QPushButton* m_pb1; 
28   /*!\var m_pb2
29    * \brief Private, stores a dialog button 2
30    */
31   QPushButton* m_pb2;
32   /*!\var m_pb3
33    * \brief Private, stores a dialog button 3
34    */
35   QPushButton* m_pb3;
36
37   /*!\var m_pb4
38    * \brief Private, stores a dialog button 4
39    */
40   QPushButton* m_pb4;
41 };
42
43 #endif
44