-
Notifications
You must be signed in to change notification settings - Fork 40
/
ui_mainwindow.h
116 lines (104 loc) · 5.02 KB
/
ui_mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.7.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QTextBrowser>
#include <QtWidgets/QWidget>
#include <renderarea.h>
QT_BEGIN_NAMESPACE
class Ui_MainWindow
{
public:
QWidget *centralWidget;
RenderArea *renderArea;
QPushButton *startButton;
QPushButton *resetButton;
QTextBrowser *textBrowser;
QLabel *stepSizeLabel;
QLineEdit *stepSize;
QLabel *label;
QLineEdit *maxIterations;
QLabel *label_2;
QTextBrowser *statusBox;
void setupUi(QMainWindow *MainWindow)
{
if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow"));
MainWindow->resize(500, 400);
centralWidget = new QWidget(MainWindow);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
renderArea = new RenderArea(centralWidget);
renderArea->setObjectName(QStringLiteral("renderArea"));
renderArea->setGeometry(QRect(0, 0, 400, 400));
startButton = new QPushButton(centralWidget);
startButton->setObjectName(QStringLiteral("startButton"));
startButton->setGeometry(QRect(400, 0, 99, 30));
resetButton = new QPushButton(centralWidget);
resetButton->setObjectName(QStringLiteral("resetButton"));
resetButton->setGeometry(QRect(400, 30, 99, 27));
textBrowser = new QTextBrowser(centralWidget);
textBrowser->setObjectName(QStringLiteral("textBrowser"));
textBrowser->setGeometry(QRect(400, 300, 100, 100));
stepSizeLabel = new QLabel(centralWidget);
stepSizeLabel->setObjectName(QStringLiteral("stepSizeLabel"));
stepSizeLabel->setGeometry(QRect(400, 80, 100, 17));
stepSizeLabel->setAlignment(Qt::AlignCenter);
stepSize = new QLineEdit(centralWidget);
stepSize->setObjectName(QStringLiteral("stepSize"));
stepSize->setGeometry(QRect(400, 100, 100, 27));
stepSize->setAlignment(Qt::AlignCenter);
label = new QLabel(centralWidget);
label->setObjectName(QStringLiteral("label"));
label->setGeometry(QRect(400, 140, 100, 17));
label->setAlignment(Qt::AlignCenter);
maxIterations = new QLineEdit(centralWidget);
maxIterations->setObjectName(QStringLiteral("maxIterations"));
maxIterations->setGeometry(QRect(400, 160, 100, 27));
maxIterations->setAlignment(Qt::AlignCenter);
label_2 = new QLabel(centralWidget);
label_2->setObjectName(QStringLiteral("label_2"));
label_2->setGeometry(QRect(400, 200, 100, 17));
label_2->setAlignment(Qt::AlignCenter);
statusBox = new QTextBrowser(centralWidget);
statusBox->setObjectName(QStringLiteral("statusBox"));
statusBox->setGeometry(QRect(400, 219, 100, 81));
MainWindow->setCentralWidget(centralWidget);
retranslateUi(MainWindow);
QMetaObject::connectSlotsByName(MainWindow);
} // setupUi
void retranslateUi(QMainWindow *MainWindow)
{
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "RRT Simulator", Q_NULLPTR));
startButton->setText(QApplication::translate("MainWindow", "Start", Q_NULLPTR));
resetButton->setText(QApplication::translate("MainWindow", "Reset", Q_NULLPTR));
textBrowser->setHtml(QApplication::translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Draw obstacles by clicking and dragging on the field.</p></body></html>", Q_NULLPTR));
stepSizeLabel->setText(QApplication::translate("MainWindow", "Step Size", Q_NULLPTR));
stepSize->setText(QApplication::translate("MainWindow", "3", Q_NULLPTR));
label->setText(QApplication::translate("MainWindow", "Max Iterations", Q_NULLPTR));
maxIterations->setText(QApplication::translate("MainWindow", "3000", Q_NULLPTR));
label_2->setText(QApplication::translate("MainWindow", "Status", Q_NULLPTR));
} // retranslateUi
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_MAINWINDOW_H