| 1 | /******************************************************************************** |
| 2 | ** Form generated from reading UI file 'controller.ui' |
| 3 | ** |
| 4 | ** Created by: Qt User Interface Compiler version 6.0.0 |
| 5 | ** |
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
| 7 | ********************************************************************************/ |
| 8 | |
| 9 | #ifndef UI_CONTROLLER_H |
| 10 | #define UI_CONTROLLER_H |
| 11 | |
| 12 | #include <QtCore/QVariant> |
| 13 | #include <QtWidgets/QApplication> |
| 14 | #include <QtWidgets/QGridLayout> |
| 15 | #include <QtWidgets/QLabel> |
| 16 | #include <QtWidgets/QPushButton> |
| 17 | #include <QtWidgets/QWidget> |
| 18 | |
| 19 | QT_BEGIN_NAMESPACE |
| 20 | |
| 21 | class Ui_Controller |
| 22 | { |
| 23 | public: |
| 24 | QGridLayout *gridLayout; |
| 25 | QLabel *label; |
| 26 | QPushButton *decelerate; |
| 27 | QPushButton *accelerate; |
| 28 | QPushButton *right; |
| 29 | QPushButton *left; |
| 30 | |
| 31 | void setupUi(QWidget *Controller) |
| 32 | { |
| 33 | if (Controller->objectName().isEmpty()) |
| 34 | Controller->setObjectName(QString::fromUtf8("Controller" )); |
| 35 | Controller->resize(255, 111); |
| 36 | gridLayout = new QGridLayout(Controller); |
| 37 | #ifndef Q_OS_MAC |
| 38 | gridLayout->setSpacing(6); |
| 39 | #endif |
| 40 | #ifndef Q_OS_MAC |
| 41 | gridLayout->setContentsMargins(9, 9, 9, 9); |
| 42 | #endif |
| 43 | gridLayout->setObjectName(QString::fromUtf8("gridLayout" )); |
| 44 | label = new QLabel(Controller); |
| 45 | label->setObjectName(QString::fromUtf8("label" )); |
| 46 | label->setAlignment(Qt::AlignCenter); |
| 47 | |
| 48 | gridLayout->addWidget(label, 1, 1, 1, 1); |
| 49 | |
| 50 | decelerate = new QPushButton(Controller); |
| 51 | decelerate->setObjectName(QString::fromUtf8("decelerate" )); |
| 52 | |
| 53 | gridLayout->addWidget(decelerate, 2, 1, 1, 1); |
| 54 | |
| 55 | accelerate = new QPushButton(Controller); |
| 56 | accelerate->setObjectName(QString::fromUtf8("accelerate" )); |
| 57 | |
| 58 | gridLayout->addWidget(accelerate, 0, 1, 1, 1); |
| 59 | |
| 60 | right = new QPushButton(Controller); |
| 61 | right->setObjectName(QString::fromUtf8("right" )); |
| 62 | |
| 63 | gridLayout->addWidget(right, 1, 2, 1, 1); |
| 64 | |
| 65 | left = new QPushButton(Controller); |
| 66 | left->setObjectName(QString::fromUtf8("left" )); |
| 67 | |
| 68 | gridLayout->addWidget(left, 1, 0, 1, 1); |
| 69 | |
| 70 | |
| 71 | retranslateUi(Controller); |
| 72 | |
| 73 | QMetaObject::connectSlotsByName(Controller); |
| 74 | } // setupUi |
| 75 | |
| 76 | void retranslateUi(QWidget *Controller) |
| 77 | { |
| 78 | Controller->setWindowTitle(QCoreApplication::translate("Controller" , "Controller" , nullptr)); |
| 79 | label->setText(QCoreApplication::translate("Controller" , "Controller" , nullptr)); |
| 80 | decelerate->setText(QCoreApplication::translate("Controller" , "Decelerate" , nullptr)); |
| 81 | accelerate->setText(QCoreApplication::translate("Controller" , "Accelerate" , nullptr)); |
| 82 | right->setText(QCoreApplication::translate("Controller" , "Right" , nullptr)); |
| 83 | left->setText(QCoreApplication::translate("Controller" , "Left" , nullptr)); |
| 84 | } // retranslateUi |
| 85 | |
| 86 | }; |
| 87 | |
| 88 | namespace Ui { |
| 89 | class Controller: public Ui_Controller {}; |
| 90 | } // namespace Ui |
| 91 | |
| 92 | QT_END_NAMESPACE |
| 93 | |
| 94 | #endif // UI_CONTROLLER_H |
| 95 | |