Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef QMITKLEVELWINDOWRANGECHANGEDIALOG_H_
00019 #define QMITKLEVELWINDOWRANGECHANGEDIALOG_H_
00020
00021 #include "ui_QmitkLevelWindowRangeChange.h"
00022
00023 #include <QDialog>
00024
00025 #include <mitkCommon.h>
00026
00027 class QMITK_EXPORT QmitkLevelWindowRangeChangeDialog : public QDialog, public Ui::QmitkLevelWindowRangeChange
00028 {
00029 Q_OBJECT
00030
00031 public:
00032
00033 QmitkLevelWindowRangeChangeDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
00034
00035 int getLowerLimit();
00036
00037 int getUpperLimit();
00038
00039 void setLowerLimit( int rangeMin );
00040
00041 void setUpperLimit( int rangeMax );
00042
00043 protected slots:
00044
00045 void inputValidator();
00046
00047 };
00048
00049 #endif