AusweisApp2
ui_BusyOverlay.h
gehe zur Dokumentation dieser Datei
1 /********************************************************************************
2 ** Form generated from reading UI file 'BusyOverlay.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.5
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_BUSYOVERLAY_H
10 #define UI_BUSYOVERLAY_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QLabel>
15 #include <QtWidgets/QVBoxLayout>
16 #include <QtWidgets/QWidget>
17 
18 QT_BEGIN_NAMESPACE
19 
21 {
22 public:
23  QVBoxLayout *verticalLayout;
25  QLabel *busyTextLabel;
26 
27  void setupUi(QWidget *BusyOverlay)
28  {
29  if (BusyOverlay->objectName().isEmpty())
30  BusyOverlay->setObjectName(QString::fromUtf8("BusyOverlay"));
31  BusyOverlay->resize(260, 223);
32  QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
33  sizePolicy.setHorizontalStretch(0);
34  sizePolicy.setVerticalStretch(0);
35  sizePolicy.setHeightForWidth(BusyOverlay->sizePolicy().hasHeightForWidth());
36  BusyOverlay->setSizePolicy(sizePolicy);
37  verticalLayout = new QVBoxLayout(BusyOverlay);
38  verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
39  busyAnimationLabel = new QLabel(BusyOverlay);
40  busyAnimationLabel->setObjectName(QString::fromUtf8("busyAnimationLabel"));
41  busyAnimationLabel->setAlignment(Qt::AlignCenter);
42 
44 
45  busyTextLabel = new QLabel(BusyOverlay);
46  busyTextLabel->setObjectName(QString::fromUtf8("busyTextLabel"));
47  QFont font;
48  font.setBold(true);
49  font.setWeight(75);
50  busyTextLabel->setFont(font);
51  busyTextLabel->setFocusPolicy(Qt::StrongFocus);
52  busyTextLabel->setAlignment(Qt::AlignCenter);
53  busyTextLabel->setWordWrap(true);
54 
55  verticalLayout->addWidget(busyTextLabel);
56 
57 
58  retranslateUi(BusyOverlay);
59 
60  QMetaObject::connectSlotsByName(BusyOverlay);
61  } // setupUi
62 
63  void retranslateUi(QWidget *BusyOverlay)
64  {
65  busyTextLabel->setText(QApplication::translate("BusyOverlay", "The process is started...", nullptr));
66  Q_UNUSED(BusyOverlay);
67  } // retranslateUi
68 
69 };
70 
71 namespace Ui {
72  class BusyOverlay: public Ui_BusyOverlay {};
73 } // namespace Ui
74 
75 QT_END_NAMESPACE
76 
77 #endif // UI_BUSYOVERLAY_H
void retranslateUi(QWidget *BusyOverlay)
Definition: ui_BusyOverlay.h:63
Definition: ui_BusyOverlay.h:72
Dialog to display information about the application.
Definition: ui_AboutDialog.h:192
void setupUi(QWidget *BusyOverlay)
Definition: ui_BusyOverlay.h:27
QVBoxLayout * verticalLayout
Definition: ui_BusyOverlay.h:23
Definition: ui_BusyOverlay.h:20
QLabel * busyAnimationLabel
Definition: ui_BusyOverlay.h:24
QLabel * busyTextLabel
Definition: ui_BusyOverlay.h:25