1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'mainwindow.ui' |
3 | ** |
4 | ** Created by: Qt User Interface Compiler version 5.15.9 |
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/QMainWindow> |
17 | #include <QtWidgets/QWidget> |
18 | |
19 | QT_BEGIN_NAMESPACE |
20 | |
21 | class Ui_MainWindow |
22 | { |
23 | public: |
24 | QWidget *centralWidget; |
25 | QGridLayout *gridLayout; |
26 | QLabel *m_title; |
27 | QLabel *m_image; |
28 | QLabel *m_help; |
29 | QLabel *m_url; |
30 | |
31 | void setupUi(QMainWindow *MainWindow) |
32 | { |
33 | if (MainWindow->objectName().isEmpty()) |
34 | MainWindow->setObjectName(QString::fromUtf8(str: "MainWindow" )); |
35 | MainWindow->resize(w: 590, h: 420); |
36 | centralWidget = new QWidget(MainWindow); |
37 | centralWidget->setObjectName(QString::fromUtf8(str: "centralWidget" )); |
38 | gridLayout = new QGridLayout(centralWidget); |
39 | gridLayout->setSpacing(6); |
40 | gridLayout->setContentsMargins(left: 11, top: 11, right: 11, bottom: 11); |
41 | gridLayout->setObjectName(QString::fromUtf8(str: "gridLayout" )); |
42 | m_title = new QLabel(centralWidget); |
43 | m_title->setObjectName(QString::fromUtf8(str: "m_title" )); |
44 | QFont font; |
45 | font.setBold(true); |
46 | font.setWeight(75); |
47 | m_title->setFont(font); |
48 | |
49 | gridLayout->addWidget(m_title, row: 0, column: 1, rowSpan: 1, columnSpan: 2); |
50 | |
51 | m_image = new QLabel(centralWidget); |
52 | m_image->setObjectName(QString::fromUtf8(str: "m_image" )); |
53 | |
54 | gridLayout->addWidget(m_image, row: 0, column: 0, rowSpan: 3, columnSpan: 1); |
55 | |
56 | m_help = new QLabel(centralWidget); |
57 | m_help->setObjectName(QString::fromUtf8(str: "m_help" )); |
58 | m_help->setAlignment(Qt::AlignCenter); |
59 | |
60 | gridLayout->addWidget(m_help, row: 1, column: 1, rowSpan: 1, columnSpan: 1); |
61 | |
62 | m_url = new QLabel(centralWidget); |
63 | m_url->setObjectName(QString::fromUtf8(str: "m_url" )); |
64 | |
65 | gridLayout->addWidget(m_url, row: 2, column: 1, rowSpan: 1, columnSpan: 2); |
66 | |
67 | gridLayout->setRowStretch(row: 0, stretch: 1); |
68 | gridLayout->setRowStretch(row: 2, stretch: 1); |
69 | MainWindow->setCentralWidget(centralWidget); |
70 | |
71 | retranslateUi(MainWindow); |
72 | |
73 | QMetaObject::connectSlotsByName(o: MainWindow); |
74 | } // setupUi |
75 | |
76 | void retranslateUi(QMainWindow *MainWindow) |
77 | { |
78 | MainWindow->setWindowTitle(QCoreApplication::translate(context: "MainWindow" , key: "MainWindow" , disambiguation: nullptr)); |
79 | m_title->setText(QString()); |
80 | m_image->setText(QString()); |
81 | m_help->setText(QCoreApplication::translate(context: "MainWindow" , key: "Touch a tag" , disambiguation: nullptr)); |
82 | m_url->setText(QString()); |
83 | } // retranslateUi |
84 | |
85 | }; |
86 | |
87 | namespace Ui { |
88 | class MainWindow: public Ui_MainWindow {}; |
89 | } // namespace Ui |
90 | |
91 | QT_END_NAMESPACE |
92 | |
93 | #endif // UI_MAINWINDOW_H |
94 | |