9 #ifndef UI_SPLASH_OVERLAY_H 10 #define UI_SPLASH_OVERLAY_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QFrame> 17 #include <QtWidgets/QHBoxLayout> 18 #include <QtWidgets/QHeaderView> 19 #include <QtWidgets/QLabel> 20 #include <QtWidgets/QProgressBar> 21 #include <QtWidgets/QSpacerItem> 22 #include <QtWidgets/QVBoxLayout> 23 #include <QtWidgets/QWidget> 30 QVBoxLayout *verticalLayout_2;
31 QSpacerItem *verticalSpacer_2;
33 QHBoxLayout *horizontalLayout;
34 QSpacerItem *horizontalSpacer;
35 QVBoxLayout *verticalLayout;
37 QProgressBar *progressBar;
38 QSpacerItem *horizontalSpacer_2;
39 QSpacerItem *verticalSpacer;
43 if (SplashOverlay->objectName().isEmpty())
44 SplashOverlay->setObjectName(QStringLiteral(
"SplashOverlay"));
45 SplashOverlay->setEnabled(
true);
46 SplashOverlay->resize(400, 300);
47 verticalLayout_2 =
new QVBoxLayout(SplashOverlay);
48 verticalLayout_2->setObjectName(QStringLiteral(
"verticalLayout_2"));
49 verticalLayout_2->setContentsMargins(0, -1, 0, -1);
50 verticalSpacer_2 =
new QSpacerItem(20, 53, QSizePolicy::Minimum, QSizePolicy::Expanding);
52 verticalLayout_2->addItem(verticalSpacer_2);
54 progressBand =
new QFrame(SplashOverlay);
55 progressBand->setObjectName(QStringLiteral(
"progressBand"));
56 progressBand->setFrameShape(QFrame::NoFrame);
57 progressBand->setFrameShadow(QFrame::Plain);
58 progressBand->setLineWidth(0);
59 horizontalLayout =
new QHBoxLayout(progressBand);
60 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
61 horizontalSpacer =
new QSpacerItem(116, 50, QSizePolicy::Expanding, QSizePolicy::Minimum);
63 horizontalLayout->addItem(horizontalSpacer);
65 verticalLayout =
new QVBoxLayout();
66 verticalLayout->setObjectName(QStringLiteral(
"verticalLayout"));
67 actionLabel =
new QLabel(progressBand);
68 actionLabel->setObjectName(QStringLiteral(
"actionLabel"));
70 verticalLayout->addWidget(actionLabel);
72 progressBar =
new QProgressBar(progressBand);
73 progressBar->setObjectName(QStringLiteral(
"progressBar"));
74 progressBar->setValue(24);
75 progressBar->setTextVisible(
false);
77 verticalLayout->addWidget(progressBar);
80 horizontalLayout->addLayout(verticalLayout);
82 horizontalSpacer_2 =
new QSpacerItem(116, 50, QSizePolicy::Expanding, QSizePolicy::Minimum);
84 horizontalLayout->addItem(horizontalSpacer_2);
87 verticalLayout_2->addWidget(progressBand);
89 verticalSpacer =
new QSpacerItem(20, 108, QSizePolicy::Minimum, QSizePolicy::Expanding);
91 verticalLayout_2->addItem(verticalSpacer);
93 verticalLayout_2->setStretch(0, 3);
94 verticalLayout_2->setStretch(2, 6);
96 retranslateUi(SplashOverlay);
98 QMetaObject::connectSlotsByName(SplashOverlay);
101 void retranslateUi(QWidget *SplashOverlay)
103 actionLabel->setText(QString());
104 Q_UNUSED(SplashOverlay);
115 #endif // UI_SPLASH_OVERLAY_H Definition: ui_splash_overlay.h:27
Definition: ui_about_dialog.h:291
Definition: ui_splash_overlay.h:110
Definition: splash_overlay.h:28