| 1 | /******************************************************************************** | 
| 2 | ** Form generated from reading UI file 'progress.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_PROGRESS_H | 
| 10 | #define UI_PROGRESS_H | 
| 11 |  | 
| 12 | #include <QtCore/QVariant> | 
| 13 | #include <QtWidgets/QApplication> | 
| 14 | #include <QtWidgets/QDialog> | 
| 15 | #include <QtWidgets/QLabel> | 
| 16 | #include <QtWidgets/QProgressBar> | 
| 17 | #include <QtWidgets/QPushButton> | 
| 18 | #include <QtWidgets/QVBoxLayout> | 
| 19 |  | 
| 20 | QT_BEGIN_NAMESPACE | 
| 21 |  | 
| 22 | class Ui_Progress | 
| 23 | { | 
| 24 | public: | 
| 25 |     QVBoxLayout *verticalLayout; | 
| 26 |     QLabel *titleLabel; | 
| 27 |     QProgressBar *progressBar; | 
| 28 |     QLabel *statusLabel; | 
| 29 |     QPushButton *cancelButton; | 
| 30 |  | 
| 31 |     void setupUi(QDialog *Progress) | 
| 32 |     { | 
| 33 |         if (Progress->objectName().isEmpty()) | 
| 34 |             Progress->setObjectName(QString::fromUtf8(str: "Progress" )); | 
| 35 |         Progress->resize(w: 408, h: 115); | 
| 36 |         verticalLayout = new QVBoxLayout(Progress); | 
| 37 |         verticalLayout->setObjectName(QString::fromUtf8(str: "verticalLayout" )); | 
| 38 |         titleLabel = new QLabel(Progress); | 
| 39 |         titleLabel->setObjectName(QString::fromUtf8(str: "titleLabel" )); | 
| 40 |  | 
| 41 |         verticalLayout->addWidget(titleLabel); | 
| 42 |  | 
| 43 |         progressBar = new QProgressBar(Progress); | 
| 44 |         progressBar->setObjectName(QString::fromUtf8(str: "progressBar" )); | 
| 45 |         progressBar->setMinimumSize(QSize(390, 0)); | 
| 46 |         progressBar->setValue(24); | 
| 47 |  | 
| 48 |         verticalLayout->addWidget(progressBar); | 
| 49 |  | 
| 50 |         statusLabel = new QLabel(Progress); | 
| 51 |         statusLabel->setObjectName(QString::fromUtf8(str: "statusLabel" )); | 
| 52 |  | 
| 53 |         verticalLayout->addWidget(statusLabel); | 
| 54 |  | 
| 55 |         cancelButton = new QPushButton(Progress); | 
| 56 |         cancelButton->setObjectName(QString::fromUtf8(str: "cancelButton" )); | 
| 57 |  | 
| 58 |         verticalLayout->addWidget(cancelButton); | 
| 59 |  | 
| 60 |  | 
| 61 |         retranslateUi(Progress); | 
| 62 |  | 
| 63 |         QMetaObject::connectSlotsByName(o: Progress); | 
| 64 |     } // setupUi | 
| 65 |  | 
| 66 |     void retranslateUi(QDialog *Progress) | 
| 67 |     { | 
| 68 |         Progress->setWindowTitle(QCoreApplication::translate(context: "Progress" , key: "Transfer Progress" , disambiguation: nullptr)); | 
| 69 |         titleLabel->setText(QCoreApplication::translate(context: "Progress" , key: "Filename" , disambiguation: nullptr)); | 
| 70 |         statusLabel->setText(QCoreApplication::translate(context: "Progress" , key: "Status" , disambiguation: nullptr)); | 
| 71 |         cancelButton->setText(QCoreApplication::translate(context: "Progress" , key: "Cancel" , disambiguation: nullptr)); | 
| 72 |     } // retranslateUi | 
| 73 |  | 
| 74 | }; | 
| 75 |  | 
| 76 | namespace Ui { | 
| 77 |     class Progress: public Ui_Progress {}; | 
| 78 | } // namespace Ui | 
| 79 |  | 
| 80 | QT_END_NAMESPACE | 
| 81 |  | 
| 82 | #endif // UI_PROGRESS_H | 
| 83 |  |