Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/kernel.git] / src / RegistryDisplay / IntervalWindow.hxx
1 //  SALOME RegistryDisplay : GUI for Registry server implementation
2 //
3 //  Copyright (C) 2003  CEA/DEN, EDF R&D
4 //
5 //
6 //
7 //  File   : IntervalWindow.hxx
8 //  Author : Oksana TCHEBANOVA
9 //  Module : SALOME
10
11 #ifndef IntervalWindow_HeaderFile
12 #define IntervalWindow_HeaderFile
13
14 # include <qwidget.h>
15 # include <qdialog.h>
16 # include <qpushbutton.h>
17 # include <qspinbox.h>
18
19 using namespace std;
20
21 class IntervalWindow : public QDialog
22 {
23 public:
24   IntervalWindow( QWidget* parent = 0 );
25   ~IntervalWindow();
26   
27   QPushButton* Ok();
28   QPushButton* Cancel();
29
30   int getValue();
31   void setValue( int );
32
33 private:
34   QSpinBox* mySpinBox;
35   QPushButton* myButtonOk;
36   QPushButton* myButtonCancel;
37 };
38
39 #endif