Salome HOME
NRI : Add message (GUI lib not found).
[modules/kernel.git] / src / SALOMEGUI / SALOMEGUI_ViewChoiceDlg.h
1 //  File      : SALOMEGUI_ViewChoiceDlg.h
2 //  Created   : Mon Jul 29 22:17:24 2002
3 //  Author    : Nicolas REJNERI
4
5 //  Project   : SALOME
6 //  Module    : SALOMEGUI
7 //  Copyright : Open CASCADE 2002
8 //  $Header$
9
10 #ifndef SALOMEGUI_VIEWCHOICEDLG_H
11 #define SALOMEGUI_VIEWCHOICEDLG_H
12
13 #include <qvariant.h>
14 #include <qdialog.h>
15 #include <qvaluelist.h>
16 class QVBoxLayout; 
17 class QHBoxLayout; 
18 class QGridLayout; 
19 class QComboBox;
20 class QGroupBox;
21 class QLabel;
22 class QPushButton;
23
24 class SALOMEGUI_ViewChoiceDlg : public QDialog
25
26     Q_OBJECT
27
28 public:
29     SALOMEGUI_ViewChoiceDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
30     ~SALOMEGUI_ViewChoiceDlg();
31
32     int getSelectedViewer();
33
34     QGroupBox* GroupBox1;
35     QLabel* TextLabel1;
36     QComboBox* ComboBox1;
37     QPushButton* buttonOk;
38     QPushButton* buttonCancel;
39     QValueList<int> myViewers;
40 };
41
42 #endif // SALOMEGUI_VIEWCHOICEDLG_H