Route-Map
Loading...
Searching...
No Matches
ui_mainwindow.h
1/********************************************************************************
2** Form generated from reading UI file 'mainwindow.ui'
3**
4** Created by: Qt User Interface Compiler version 5.12.12
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_MAINWINDOW_H
10#define UI_MAINWINDOW_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
19QT_BEGIN_NAMESPACE
20
22{
23public:
24 QGridLayout *gridLayout_2;
25 QGridLayout *gridLayout;
26 QPushButton *button_Map;
27 QLabel *label;
28 QPushButton *button_Route;
29
30 void setupUi(QWidget *MainWindow)
31 {
32 if (MainWindow->objectName().isEmpty())
33 MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
34 MainWindow->resize(672, 420);
35 MainWindow->setStyleSheet(QString::fromUtf8("background-color: #333333;\n"
36"color: #ffffff"));
37 gridLayout_2 = new QGridLayout(MainWindow);
38 gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
39 gridLayout = new QGridLayout();
40 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
41 button_Map = new QPushButton(MainWindow);
42 button_Map->setObjectName(QString::fromUtf8("button_Map"));
43 button_Map->setStyleSheet(QString::fromUtf8("font-size: 9pt;"));
44
45 gridLayout->addWidget(button_Map, 7, 0, 1, 1);
46
47 label = new QLabel(MainWindow);
48 label->setObjectName(QString::fromUtf8("label"));
49 label->setMouseTracking(true);
50 label->setStyleSheet(QString::fromUtf8("font-size: 11pt;"));
51
52 gridLayout->addWidget(label, 0, 0, 1, 2);
53
54 button_Route = new QPushButton(MainWindow);
55 button_Route->setObjectName(QString::fromUtf8("button_Route"));
56 button_Route->setStyleSheet(QString::fromUtf8("font-size: 9pt;"));
57
58 gridLayout->addWidget(button_Route, 7, 1, 1, 1);
59
60
61 gridLayout_2->addLayout(gridLayout, 0, 0, 1, 1);
62
63
64 retranslateUi(MainWindow);
65
66 QMetaObject::connectSlotsByName(MainWindow);
67 } // setupUi
68
69 void retranslateUi(QWidget *MainWindow)
70 {
71 MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", nullptr));
72 button_Map->setText(QApplication::translate("MainWindow", "Map Editor", nullptr));
73 label->setText(QApplication::translate("MainWindow", "<html><head/><body><p align=\"center\">Select an option</p></body></html>", nullptr));
74 button_Route->setText(QApplication::translate("MainWindow", "Route on map", nullptr));
75 } // retranslateUi
76
77};
78
79namespace Ui {
80 class MainWindow: public Ui_MainWindow {};
81} // namespace Ui
82
83QT_END_NAMESPACE
84
85#endif // UI_MAINWINDOW_H
Класс, представляющий главное окно приложения.
Definition mainwindow.h:14
Definition ui_mainwindow.h:80
Definition ui_mainwindow.h:22