Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_LOGVIEW_H
00011 #define UI_LOGVIEW_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/QTableWidget>
00020 #include <QtGui/QWidget>
00021
00022 QT_BEGIN_NAMESPACE
00023
00024 class Ui_LogView
00025 {
00026 public:
00027 QGridLayout *gridLayout;
00028 QTableWidget *tableWidget;
00029
00030 void setupUi(QWidget *LogView)
00031 {
00032 if (LogView->objectName().isEmpty())
00033 LogView->setObjectName(QString::fromUtf8("LogView"));
00034 LogView->resize(462, 235);
00035 gridLayout = new QGridLayout(LogView);
00036 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00037 tableWidget = new QTableWidget(LogView);
00038 tableWidget->setObjectName(QString::fromUtf8("tableWidget"));
00039 tableWidget->setEnabled(true);
00040
00041 gridLayout->addWidget(tableWidget, 0, 0, 1, 1);
00042
00043
00044 retranslateUi(LogView);
00045
00046 QMetaObject::connectSlotsByName(LogView);
00047 }
00048
00049 void retranslateUi(QWidget *LogView)
00050 {
00051 LogView->setWindowTitle(QApplication::translate("LogView", "Form", 0, QApplication::UnicodeUTF8));
00052 }
00053
00054 };
00055
00056 namespace Ui {
00057 class LogView: public Ui_LogView {};
00058 }
00059
00060 QT_END_NAMESPACE
00061
00062 #endif // UI_LOGVIEW_H