Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/kernel.git] / src / RegistryDisplay / IntervalWindow.hxx
1 // File:        IntervalWindow.hxx
2 // Created:     Thu Apr  3 10:31:10 2003
3 // Author:      Oksana TCHEBANOVA
4 //              <ota@parcex.nnov.matra-dtv.fr>
5
6
7 #ifndef IntervalWindow_HeaderFile
8 #define IntervalWindow_HeaderFile
9
10 # include <qwidget.h>
11 # include <qdialog.h>
12 # include <qpushbutton.h>
13 # include <qspinbox.h>
14
15 using namespace std;
16
17 class IntervalWindow : public QDialog
18 {
19 public:
20   IntervalWindow( QWidget* parent = 0 );
21   ~IntervalWindow();
22   
23   QPushButton* Ok();
24   QPushButton* Cancel();
25
26   int getValue();
27   void setValue( int );
28
29 private:
30   QSpinBox* mySpinBox;
31   QPushButton* myButtonOk;
32   QPushButton* myButtonCancel;
33 };
34
35 #endif