Salome HOME
Moved some functionality to VTKViewer_Utilities.h
[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
20 class IntervalWindow : public QDialog
21 {
22 public:
23   IntervalWindow( QWidget* parent = 0 );
24   ~IntervalWindow();
25   
26   QPushButton* Ok();
27   QPushButton* Cancel();
28
29   int getValue();
30   void setValue( int );
31
32 private:
33   QSpinBox* mySpinBox;
34   QPushButton* myButtonOk;
35   QPushButton* myButtonCancel;
36 };
37
38 #endif