00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_PLOTTING_H
00011 #define UI_PLOTTING_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QHeaderView>
00018 #include <QtGui/QLabel>
00019 #include <QtGui/QVBoxLayout>
00020 #include <QtGui/QWidget>
00021
00022 QT_BEGIN_NAMESPACE
00023
00024 class Ui_Plotting
00025 {
00026 public:
00027 QVBoxLayout *verticalLayout;
00028 QLabel *label;
00029
00030 void setupUi(QWidget *Plotting)
00031 {
00032 if (Plotting->objectName().isEmpty())
00033 Plotting->setObjectName(QString::fromUtf8("Plotting"));
00034 Plotting->resize(1094, 552);
00035 verticalLayout = new QVBoxLayout(Plotting);
00036 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
00037 label = new QLabel(Plotting);
00038 label->setObjectName(QString::fromUtf8("label"));
00039 label->setPixmap(QPixmap(QString::fromUtf8(":/ourstyle/images/ecg.png")));
00040 label->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop);
00041
00042 verticalLayout->addWidget(label);
00043
00044
00045 retranslateUi(Plotting);
00046
00047 QMetaObject::connectSlotsByName(Plotting);
00048 }
00049
00050 void retranslateUi(QWidget *Plotting)
00051 {
00052 Plotting->setWindowTitle(QApplication::translate("Plotting", "Form", 0, QApplication::UnicodeUTF8));
00053 label->setText(QString());
00054 Q_UNUSED(Plotting);
00055 }
00056
00057 };
00058
00059 namespace Ui {
00060 class Plotting: public Ui_Plotting {};
00061 }
00062
00063 QT_END_NAMESPACE
00064
00065 #endif // UI_PLOTTING_H