diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tests/auto/uic/baseline/controller.ui.h | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tests/auto/uic/baseline/controller.ui.h')
-rw-r--r-- | tests/auto/uic/baseline/controller.ui.h | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/auto/uic/baseline/controller.ui.h b/tests/auto/uic/baseline/controller.ui.h new file mode 100644 index 0000000..b5f20b7 --- /dev/null +++ b/tests/auto/uic/baseline/controller.ui.h @@ -0,0 +1,99 @@ +/******************************************************************************** +** Form generated from reading ui file 'controller.ui' +** +** Created: Thu Jul 10 09:47:34 2008 +** by: Qt User Interface Compiler version 4.5.0 +** +** WARNING! All changes made in this file will be lost when recompiling ui file! +********************************************************************************/ + +#ifndef CONTROLLER_H +#define CONTROLLER_H + +#include <QtCore/QVariant> +#include <QtGui/QAction> +#include <QtGui/QApplication> +#include <QtGui/QButtonGroup> +#include <QtGui/QGridLayout> +#include <QtGui/QHeaderView> +#include <QtGui/QLabel> +#include <QtGui/QPushButton> +#include <QtGui/QWidget> + +QT_BEGIN_NAMESPACE + +class Ui_Controller +{ +public: + QGridLayout *gridLayout; + QLabel *label; + QPushButton *decelerate; + QPushButton *accelerate; + QPushButton *right; + QPushButton *left; + + void setupUi(QWidget *Controller) + { + if (Controller->objectName().isEmpty()) + Controller->setObjectName(QString::fromUtf8("Controller")); + Controller->resize(255, 111); + gridLayout = new QGridLayout(Controller); +#ifndef Q_OS_MAC + gridLayout->setSpacing(6); +#endif +#ifndef Q_OS_MAC + gridLayout->setMargin(9); +#endif + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label = new QLabel(Controller); + label->setObjectName(QString::fromUtf8("label")); + label->setAlignment(Qt::AlignCenter); + + gridLayout->addWidget(label, 1, 1, 1, 1); + + decelerate = new QPushButton(Controller); + decelerate->setObjectName(QString::fromUtf8("decelerate")); + + gridLayout->addWidget(decelerate, 2, 1, 1, 1); + + accelerate = new QPushButton(Controller); + accelerate->setObjectName(QString::fromUtf8("accelerate")); + + gridLayout->addWidget(accelerate, 0, 1, 1, 1); + + right = new QPushButton(Controller); + right->setObjectName(QString::fromUtf8("right")); + + gridLayout->addWidget(right, 1, 2, 1, 1); + + left = new QPushButton(Controller); + left->setObjectName(QString::fromUtf8("left")); + + gridLayout->addWidget(left, 1, 0, 1, 1); + + + retranslateUi(Controller); + + QMetaObject::connectSlotsByName(Controller); + } // setupUi + + void retranslateUi(QWidget *Controller) + { + Controller->setWindowTitle(QApplication::translate("Controller", "Controller", 0, QApplication::UnicodeUTF8)); + label->setText(QApplication::translate("Controller", "Controller", 0, QApplication::UnicodeUTF8)); + decelerate->setText(QApplication::translate("Controller", "Decelerate", 0, QApplication::UnicodeUTF8)); + accelerate->setText(QApplication::translate("Controller", "Accelerate", 0, QApplication::UnicodeUTF8)); + right->setText(QApplication::translate("Controller", "Right", 0, QApplication::UnicodeUTF8)); + left->setText(QApplication::translate("Controller", "Left", 0, QApplication::UnicodeUTF8)); + Q_UNUSED(Controller); + } // retranslateUi + +}; + +namespace Ui { + class Controller: public Ui_Controller {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // CONTROLLER_H |