12 #ifndef UI_CONTROLPROGRESSINDICATOR_H
13 #define UI_CONTROLPROGRESSINDICATOR_H
15 #include <QtCore/QVariant>
16 #include <QtGui/QAction>
17 #include <QtGui/QApplication>
18 #include <QtGui/QButtonGroup>
19 #include <QtGui/QHeaderView>
20 #include <QtGui/QLabel>
21 #include <QtGui/QProgressBar>
22 #include <QtGui/QVBoxLayout>
23 #include <QtGui/QWidget>
27 class Ui_ControlProgressIndicator
30 QVBoxLayout *verticalLayout;
32 QProgressBar *progressBar;
34 void setupUi(QWidget *ControlProgressIndicator)
36 if (ControlProgressIndicator->objectName().isEmpty())
37 ControlProgressIndicator->setObjectName(QString::fromUtf8(
"ControlProgressIndicator"));
38 ControlProgressIndicator->resize(400, 52);
39 verticalLayout =
new QVBoxLayout(ControlProgressIndicator);
40 verticalLayout->setObjectName(QString::fromUtf8(
"verticalLayout"));
41 statusLabel =
new QLabel(ControlProgressIndicator);
42 statusLabel->setObjectName(QString::fromUtf8(
"statusLabel"));
44 verticalLayout->addWidget(statusLabel);
46 progressBar =
new QProgressBar(ControlProgressIndicator);
47 progressBar->setObjectName(QString::fromUtf8(
"progressBar"));
48 progressBar->setMaximum(0);
49 progressBar->setValue(775);
50 progressBar->setTextVisible(
false);
52 verticalLayout->addWidget(progressBar);
55 retranslateUi(ControlProgressIndicator);
57 QMetaObject::connectSlotsByName(ControlProgressIndicator);
60 void retranslateUi(QWidget *ControlProgressIndicator)
62 statusLabel->setText(tr2i18n(
"TextLabel",
"KDE::DoNotExtract"));
63 Q_UNUSED(ControlProgressIndicator);
69 class ControlProgressIndicator:
public Ui_ControlProgressIndicator {};
74 #endif // CONTROLPROGRESSINDICATOR_H