]> SALOME platform Git repositories - modules/gui.git/blob - src/STD/STD_LoadStudiesDlg.h
Salome HOME
IPAL BugID9021, added a new dialog box for a list of existent studies
[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 class QVBoxLayout; 
7 class QHBoxLayout; 
8 class QGridLayout; 
9 class QLabel;
10 class QListBox;
11 class QListBoxItem;
12 class QPushButton;
13
14 /*!\class STD_LoadStudiesDlg
15  * \brief Describes a dialog box that gives a list of opened studies.
16  * 
17  */
18 class STD_LoadStudiesDlg : public QDialog
19
20    Q_OBJECT
21
22 public:
23    STD_LoadStudiesDlg( QWidget* parent = 0, bool modal = FALSE, WFlags fl = 0 );
24    ~STD_LoadStudiesDlg() {}
25
26   /*!\var TextLabel1
27    * \brief stores a dialog text label
28    */
29   QLabel* TextLabel1;
30   
31   /*!\var buttonOk
32    * \brief stores a dialog button OK
33    */
34   QPushButton* buttonOk;
35
36   /*!\var buttonCancel
37    * \brief stores a dialog button Cancel
38    */  
39   QPushButton* buttonCancel;
40
41   /*!\var ListComponent
42    * \brief stores a dialog list compoent
43    */ 
44    QListBox* ListComponent;
45
46 };
47
48 #endif // STD_LOADSTUDIESDLG_H