Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_CHARTVIEW_H
00011 #define UI_CHARTVIEW_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QGridLayout>
00018 #include <QtGui/QHeaderView>
00019 #include <QtGui/QWidget>
00020 #include "qwt_plot.h"
00021
00022 QT_BEGIN_NAMESPACE
00023
00024 class Ui_ChartView
00025 {
00026 public:
00027 QGridLayout *gridLayout;
00028 QwtPlot *chart;
00029
00030 void setupUi(QWidget *ChartView)
00031 {
00032 if (ChartView->objectName().isEmpty())
00033 ChartView->setObjectName(QString::fromUtf8("ChartView"));
00034 ChartView->resize(420, 210);
00035 gridLayout = new QGridLayout(ChartView);
00036 gridLayout->setSpacing(6);
00037 gridLayout->setContentsMargins(11, 11, 11, 11);
00038 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00039 chart = new QwtPlot(ChartView);
00040 chart->setObjectName(QString::fromUtf8("chart"));
00041
00042 gridLayout->addWidget(chart, 0, 0, 1, 1);
00043
00044
00045 retranslateUi(ChartView);
00046
00047 QMetaObject::connectSlotsByName(ChartView);
00048 }
00049
00050 void retranslateUi(QWidget *ChartView)
00051 {
00052 ChartView->setWindowTitle(QApplication::translate("ChartView", "Form", 0, QApplication::UnicodeUTF8));
00053 }
00054
00055 };
00056
00057 namespace Ui {
00058 class ChartView: public Ui_ChartView {};
00059 }
00060
00061 QT_END_NAMESPACE
00062
00063 #endif // UI_CHARTVIEW_H