2011-04-27 10:05:43 +00:00
|
|
|
/********************************************************************************
|
|
|
|
** Form generated from reading UI file 'controller.ui'
|
|
|
|
**
|
|
|
|
** Created: Fri Sep 4 10:17:13 2009
|
|
|
|
** by: Qt User Interface Compiler version 4.6.0
|
|
|
|
**
|
|
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONTROLLER_H
|
|
|
|
#define CONTROLLER_H
|
|
|
|
|
|
|
|
#include <QtCore/QVariant>
|
2011-09-22 13:09:37 +00:00
|
|
|
#include <QtWidgets/QAction>
|
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
#include <QtWidgets/QButtonGroup>
|
|
|
|
#include <QtWidgets/QGridLayout>
|
|
|
|
#include <QtWidgets/QHeaderView>
|
|
|
|
#include <QtWidgets/QLabel>
|
|
|
|
#include <QtWidgets/QPushButton>
|
|
|
|
#include <QtWidgets/QWidget>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
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())
|
2011-12-11 15:55:01 +00:00
|
|
|
Controller->setObjectName(QStringLiteral("Controller"));
|
2011-04-27 10:05:43 +00:00
|
|
|
Controller->resize(255, 111);
|
|
|
|
gridLayout = new QGridLayout(Controller);
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
gridLayout->setSpacing(6);
|
|
|
|
#endif
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
gridLayout->setContentsMargins(9, 9, 9, 9);
|
|
|
|
#endif
|
2011-12-11 15:55:01 +00:00
|
|
|
gridLayout->setObjectName(QStringLiteral("gridLayout"));
|
2011-04-27 10:05:43 +00:00
|
|
|
label = new QLabel(Controller);
|
2011-12-11 15:55:01 +00:00
|
|
|
label->setObjectName(QStringLiteral("label"));
|
2011-04-27 10:05:43 +00:00
|
|
|
label->setAlignment(Qt::AlignCenter);
|
|
|
|
|
|
|
|
gridLayout->addWidget(label, 1, 1, 1, 1);
|
|
|
|
|
|
|
|
decelerate = new QPushButton(Controller);
|
2011-12-11 15:55:01 +00:00
|
|
|
decelerate->setObjectName(QStringLiteral("decelerate"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
gridLayout->addWidget(decelerate, 2, 1, 1, 1);
|
|
|
|
|
|
|
|
accelerate = new QPushButton(Controller);
|
2011-12-11 15:55:01 +00:00
|
|
|
accelerate->setObjectName(QStringLiteral("accelerate"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
gridLayout->addWidget(accelerate, 0, 1, 1, 1);
|
|
|
|
|
|
|
|
right = new QPushButton(Controller);
|
2011-12-11 15:55:01 +00:00
|
|
|
right->setObjectName(QStringLiteral("right"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
gridLayout->addWidget(right, 1, 2, 1, 1);
|
|
|
|
|
|
|
|
left = new QPushButton(Controller);
|
2011-12-11 15:55:01 +00:00
|
|
|
left->setObjectName(QStringLiteral("left"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
gridLayout->addWidget(left, 1, 0, 1, 1);
|
|
|
|
|
|
|
|
|
|
|
|
retranslateUi(Controller);
|
|
|
|
|
|
|
|
QMetaObject::connectSlotsByName(Controller);
|
|
|
|
} // setupUi
|
|
|
|
|
|
|
|
void retranslateUi(QWidget *Controller)
|
|
|
|
{
|
2012-05-17 00:37:23 +00:00
|
|
|
Controller->setWindowTitle(QApplication::translate("Controller", "Controller", 0));
|
|
|
|
label->setText(QApplication::translate("Controller", "Controller", 0));
|
|
|
|
decelerate->setText(QApplication::translate("Controller", "Decelerate", 0));
|
|
|
|
accelerate->setText(QApplication::translate("Controller", "Accelerate", 0));
|
|
|
|
right->setText(QApplication::translate("Controller", "Right", 0));
|
|
|
|
left->setText(QApplication::translate("Controller", "Left", 0));
|
2011-04-27 10:05:43 +00:00
|
|
|
} // retranslateUi
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class Controller: public Ui_Controller {};
|
|
|
|
} // namespace Ui
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // CONTROLLER_H
|