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