Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_THRESHOLD_H
00011 #define UI_THRESHOLD_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QDialog>
00018 #include <QtGui/QHeaderView>
00019 #include <QtGui/QLabel>
00020 #include <QtGui/QVBoxLayout>
00021 #include <QtGui/QWidget>
00022 #include "qwt_slider.h"
00023
00024 QT_BEGIN_NAMESPACE
00025
00026 class Ui_Threshold
00027 {
00028 public:
00029 QWidget *layoutWidget;
00030 QVBoxLayout *vboxLayout;
00031 QLabel *lblSliderHigh;
00032 QwtSlider *SliderHigh;
00033 QLabel *lblSliderLow;
00034 QwtSlider *SliderLow;
00035 QLabel *lblTitle;
00036
00037 void setupUi(QDialog *Threshold)
00038 {
00039 if (Threshold->objectName().isEmpty())
00040 Threshold->setObjectName(QString::fromUtf8("Threshold"));
00041 Threshold->resize(479, 216);
00042 layoutWidget = new QWidget(Threshold);
00043 layoutWidget->setObjectName(QString::fromUtf8("layoutWidget"));
00044 layoutWidget->setGeometry(QRect(70, 30, 341, 171));
00045 vboxLayout = new QVBoxLayout(layoutWidget);
00046 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00047 vboxLayout->setContentsMargins(0, 0, 0, 0);
00048 lblSliderHigh = new QLabel(layoutWidget);
00049 lblSliderHigh->setObjectName(QString::fromUtf8("lblSliderHigh"));
00050 lblSliderHigh->setAlignment(Qt::AlignCenter);
00051
00052 vboxLayout->addWidget(lblSliderHigh);
00053
00054 SliderHigh = new QwtSlider(layoutWidget);
00055 SliderHigh->setObjectName(QString::fromUtf8("SliderHigh"));
00056
00057 vboxLayout->addWidget(SliderHigh);
00058
00059 lblSliderLow = new QLabel(layoutWidget);
00060 lblSliderLow->setObjectName(QString::fromUtf8("lblSliderLow"));
00061 lblSliderLow->setAlignment(Qt::AlignCenter);
00062
00063 vboxLayout->addWidget(lblSliderLow);
00064
00065 SliderLow = new QwtSlider(layoutWidget);
00066 SliderLow->setObjectName(QString::fromUtf8("SliderLow"));
00067
00068 vboxLayout->addWidget(SliderLow);
00069
00070 lblSliderHigh->raise();
00071 SliderHigh->raise();
00072 lblSliderLow->raise();
00073 SliderLow->raise();
00074 lblTitle = new QLabel(Threshold);
00075 lblTitle->setObjectName(QString::fromUtf8("lblTitle"));
00076 lblTitle->setGeometry(QRect(70, 0, 339, 35));
00077
00078 retranslateUi(Threshold);
00079
00080 QMetaObject::connectSlotsByName(Threshold);
00081 }
00082
00083 void retranslateUi(QDialog *Threshold)
00084 {
00085 Threshold->setWindowTitle(QApplication::translate("Threshold", "Threshold", 0, QApplication::UnicodeUTF8));
00086 lblSliderHigh->setText(QApplication::translate("Threshold", "Max Threshold", 0, QApplication::UnicodeUTF8));
00087 lblSliderLow->setText(QApplication::translate("Threshold", "Min Threshold", 0, QApplication::UnicodeUTF8));
00088 lblTitle->setText(QApplication::translate("Threshold", "Adjust the two Sliders to set thresholding of the data", 0, QApplication::UnicodeUTF8));
00089 }
00090
00091 };
00092
00093 namespace Ui {
00094 class Threshold: public Ui_Threshold {};
00095 }
00096
00097 QT_END_NAMESPACE
00098
00099 #endif // UI_THRESHOLD_H