| 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/QListView> |
| 17 | #include <QtWidgets/QPlainTextEdit> |
| 18 | #include <QtWidgets/QWidget> |
| 19 | |
| 20 | QT_BEGIN_NAMESPACE |
| 21 | |
| 22 | class Ui_MainWindow |
| 23 | { |
| 24 | public: |
| 25 | QGridLayout *gridLayout; |
| 26 | QListView *mediaListView; |
| 27 | QLabel *statusLabel; |
| 28 | QPlainTextEdit *logText; |
| 29 | |
| 30 | void setupUi(QWidget *MainWindow) |
| 31 | { |
| 32 | if (MainWindow->objectName().isEmpty()) |
| 33 | MainWindow->setObjectName(QString::fromUtf8(str: "MainWindow" )); |
| 34 | MainWindow->resize(w: 750, h: 350); |
| 35 | gridLayout = new QGridLayout(MainWindow); |
| 36 | gridLayout->setObjectName(QString::fromUtf8(str: "gridLayout" )); |
| 37 | mediaListView = new QListView(MainWindow); |
| 38 | mediaListView->setObjectName(QString::fromUtf8(str: "mediaListView" )); |
| 39 | |
| 40 | gridLayout->addWidget(mediaListView, row: 0, column: 0, rowSpan: 2, columnSpan: 1); |
| 41 | |
| 42 | statusLabel = new QLabel(MainWindow); |
| 43 | statusLabel->setObjectName(QString::fromUtf8(str: "statusLabel" )); |
| 44 | |
| 45 | gridLayout->addWidget(statusLabel, row: 0, column: 1, rowSpan: 1, columnSpan: 1); |
| 46 | |
| 47 | logText = new QPlainTextEdit(MainWindow); |
| 48 | logText->setObjectName(QString::fromUtf8(str: "logText" )); |
| 49 | |
| 50 | gridLayout->addWidget(logText, row: 1, column: 1, rowSpan: 1, columnSpan: 1); |
| 51 | |
| 52 | |
| 53 | retranslateUi(MainWindow); |
| 54 | |
| 55 | QMetaObject::connectSlotsByName(o: MainWindow); |
| 56 | } // setupUi |
| 57 | |
| 58 | void retranslateUi(QWidget *MainWindow) |
| 59 | { |
| 60 | statusLabel->setText(QCoreApplication::translate(context: "MainWindow" , key: "Stopped" , disambiguation: nullptr)); |
| 61 | (void)MainWindow; |
| 62 | } // retranslateUi |
| 63 | |
| 64 | }; |
| 65 | |
| 66 | namespace Ui { |
| 67 | class MainWindow: public Ui_MainWindow {}; |
| 68 | } // namespace Ui |
| 69 | |
| 70 | QT_END_NAMESPACE |
| 71 | |
| 72 | #endif // UI_MAINWINDOW_H |
| 73 | |