00001 #ifndef UI_TABLE_UI_H
00002 #define UI_TABLE_UI_H
00003
00004 #include <QtCore/QVariant>
00005 #include <QtGui/QAction>
00006 #include <QtGui/QApplication>
00007 #include <QtGui/QButtonGroup>
00008 #include <QtGui/QHBoxLayout>
00009 #include <QtGui/QLabel>
00010 #include <QtGui/QLineEdit>
00011 #include <QtGui/QPushButton>
00012 #include <QtGui/QTableWidget>
00013 #include <QtGui/QVBoxLayout>
00014 #include <QtGui/QWidget>
00015
00016 class Ui_TableForm
00017 {
00018 public:
00019 QVBoxLayout *vboxLayout;
00020 QHBoxLayout *hboxLayout;
00021 QPushButton *reloadButton;
00022 QLabel *label;
00023 QLineEdit *cols_lineedit;
00024 QLabel *label_2;
00025 QLineEdit *rows_lineedit;
00026 QPushButton *changeOrderButton;
00027 QTableWidget *table_widget;
00028
00029 void setupUi(QWidget *TableForm)
00030 {
00031 TableForm->setObjectName(QString::fromUtf8("TableForm"));
00032 TableForm->resize(QSize(353, 207).expandedTo(TableForm->minimumSizeHint()));
00033 TableForm->setWindowIcon(QIcon(QString::fromUtf8("images/table.png")));
00034 vboxLayout = new QVBoxLayout(TableForm);
00035 vboxLayout->setSpacing(0);
00036 vboxLayout->setMargin(0);
00037 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00038 hboxLayout = new QHBoxLayout();
00039 hboxLayout->setSpacing(6);
00040 hboxLayout->setMargin(0);
00041 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00042 reloadButton = new QPushButton(TableForm);
00043 reloadButton->setObjectName(QString::fromUtf8("reloadButton"));
00044 reloadButton->setIcon(QIcon(QString::fromUtf8("images/reload.png")));
00045 reloadButton->setIconSize(QSize(22, 22));
00046
00047 hboxLayout->addWidget(reloadButton);
00048
00049 label = new QLabel(TableForm);
00050 label->setObjectName(QString::fromUtf8("label"));
00051
00052 hboxLayout->addWidget(label);
00053
00054 cols_lineedit = new QLineEdit(TableForm);
00055 cols_lineedit->setObjectName(QString::fromUtf8("cols_lineedit"));
00056
00057 hboxLayout->addWidget(cols_lineedit);
00058
00059 label_2 = new QLabel(TableForm);
00060 label_2->setObjectName(QString::fromUtf8("label_2"));
00061
00062 hboxLayout->addWidget(label_2);
00063
00064 rows_lineedit = new QLineEdit(TableForm);
00065 rows_lineedit->setObjectName(QString::fromUtf8("rows_lineedit"));
00066
00067 hboxLayout->addWidget(rows_lineedit);
00068
00069 changeOrderButton = new QPushButton(TableForm);
00070 changeOrderButton->setObjectName(QString::fromUtf8("changeOrderButton"));
00071
00072 hboxLayout->addWidget(changeOrderButton);
00073
00074
00075 vboxLayout->addLayout(hboxLayout);
00076
00077 table_widget = new QTableWidget(TableForm);
00078 table_widget->setObjectName(QString::fromUtf8("table_widget"));
00079
00080 vboxLayout->addWidget(table_widget);
00081
00082 retranslateUi(TableForm);
00083
00084 QMetaObject::connectSlotsByName(TableForm);
00085 }
00086
00087 void retranslateUi(QWidget *TableForm)
00088 {
00089 TableForm->setWindowTitle(QApplication::translate("TableForm", "Table", 0, QApplication::UnicodeUTF8));
00090 reloadButton->setText(QApplication::translate("TableForm", "", 0, QApplication::UnicodeUTF8));
00091 label->setText(QApplication::translate("TableForm", "Cols", 0, QApplication::UnicodeUTF8));
00092 label_2->setText(QApplication::translate("TableForm", "Rows", 0, QApplication::UnicodeUTF8));
00093 changeOrderButton->setText(QApplication::translate("TableForm", "Change Order", 0, QApplication::UnicodeUTF8));
00094 table_widget->clear();
00095 table_widget->setColumnCount(0);
00096 table_widget->setRowCount(0);
00097 Q_UNUSED(TableForm);
00098 }
00099
00100 };
00101
00102 namespace Ui {
00103 class TableForm: public Ui_TableForm {};
00104 }
00105
00106 #endif // UI_TABLE_UI_H