| 1 | /******************************************************************************** | 
|---|---|
| 2 | ** Form generated from reading UI file 'remoteselector.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_REMOTESELECTOR_H | 
| 10 | #define UI_REMOTESELECTOR_H | 
| 11 | |
| 12 | #include <QtCore/QVariant> | 
| 13 | #include <QtWidgets/QApplication> | 
| 14 | #include <QtWidgets/QDialog> | 
| 15 | #include <QtWidgets/QLabel> | 
| 16 | #include <QtWidgets/QListWidget> | 
| 17 | #include <QtWidgets/QPushButton> | 
| 18 | #include <QtWidgets/QVBoxLayout> | 
| 19 | |
| 20 | QT_BEGIN_NAMESPACE | 
| 21 | |
| 22 | class Ui_RemoteSelector | 
| 23 | { | 
| 24 | public: | 
| 25 | QVBoxLayout *verticalLayout; | 
| 26 | QLabel *status; | 
| 27 | QListWidget *remoteDevices; | 
| 28 | QPushButton *cancelButton; | 
| 29 | |
| 30 | void setupUi(QDialog *RemoteSelector) | 
| 31 | { | 
| 32 | if (RemoteSelector->objectName().isEmpty()) | 
| 33 |             RemoteSelector->setObjectName(QString::fromUtf8(str: "RemoteSelector"));  | 
| 34 | RemoteSelector->resize(w: 400, h: 300); | 
| 35 | verticalLayout = new QVBoxLayout(RemoteSelector); | 
| 36 |         verticalLayout->setObjectName(QString::fromUtf8(str: "verticalLayout"));  | 
| 37 | status = new QLabel(RemoteSelector); | 
| 38 |         status->setObjectName(QString::fromUtf8(str: "status"));  | 
| 39 | |
| 40 | verticalLayout->addWidget(status); | 
| 41 | |
| 42 | remoteDevices = new QListWidget(RemoteSelector); | 
| 43 |         remoteDevices->setObjectName(QString::fromUtf8(str: "remoteDevices"));  | 
| 44 | |
| 45 | verticalLayout->addWidget(remoteDevices); | 
| 46 | |
| 47 | cancelButton = new QPushButton(RemoteSelector); | 
| 48 |         cancelButton->setObjectName(QString::fromUtf8(str: "cancelButton"));  | 
| 49 | |
| 50 | verticalLayout->addWidget(cancelButton); | 
| 51 | |
| 52 | |
| 53 | retranslateUi(RemoteSelector); | 
| 54 | |
| 55 | QMetaObject::connectSlotsByName(o: RemoteSelector); | 
| 56 | } // setupUi | 
| 57 | |
| 58 | void retranslateUi(QDialog *RemoteSelector) | 
| 59 | { | 
| 60 |         RemoteSelector->setWindowTitle(QCoreApplication::translate(context: "RemoteSelector", key: "Available chat services", disambiguation: nullptr));  | 
| 61 |         status->setText(QCoreApplication::translate(context: "RemoteSelector", key: "Scanning...", disambiguation: nullptr));  | 
| 62 |         cancelButton->setText(QCoreApplication::translate(context: "RemoteSelector", key: "Cancel", disambiguation: nullptr));  | 
| 63 | } // retranslateUi | 
| 64 | |
| 65 | }; | 
| 66 | |
| 67 | namespace Ui { | 
| 68 | class RemoteSelector: public Ui_RemoteSelector {}; | 
| 69 | } // namespace Ui | 
| 70 | |
| 71 | QT_END_NAMESPACE | 
| 72 | |
| 73 | #endif // UI_REMOTESELECTOR_H | 
| 74 | 
