Salome HOME
794dccf6a6e0f6fcb610d16f5de1475fd0bf179c
[modules/gui.git] / src / STD / STD_LoadStudiesDlg.h
1 #ifndef STD_LOADSTUDIESDLG_H
2 #define STD_LOADSTUDIESDLG_H
3
4 #include <STD.h>
5
6 #include <qdialog.h>
7 #include <qvariant.h>
8
9 class QLabel;
10 class QListBox;
11 class QPushButton;
12 class QVBoxLayout; 
13 class QHBoxLayout; 
14 class QGridLayout; 
15 class QListBoxItem;
16
17 /*!\class STD_LoadStudiesDlg
18  * \brief Describes a dialog box that gives a list of opened studies.
19  * 
20  */
21 class STD_EXPORT STD_LoadStudiesDlg : public QDialog
22
23    Q_OBJECT
24
25 public:
26    STD_LoadStudiesDlg( QWidget* parent = 0, bool modal = FALSE, WFlags fl = 0 );
27    ~STD_LoadStudiesDlg() {}
28
29   /*!\var TextLabel1
30    * \brief stores a dialog text label
31    */
32   QLabel* TextLabel1;
33   
34   /*!\var buttonOk
35    * \brief stores a dialog button OK
36    */
37   QPushButton* buttonOk;
38
39   /*!\var buttonCancel
40    * \brief stores a dialog button Cancel
41    */  
42   QPushButton* buttonCancel;
43
44   /*!\var ListComponent
45    * \brief stores a dialog list compoent
46    */ 
47    QListBox* ListComponent;
48
49 };
50
51 #endif // STD_LOADSTUDIESDLG_H