9 #ifndef UI_PROGRESS_FRAME_H 10 #define UI_PROGRESS_FRAME_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/QProgressBar> 20 #include "widgets/stock_icon_tool_button.h" 27 QHBoxLayout *horizontalLayout;
28 QProgressBar *progressBar;
33 if (ProgressFrame->objectName().isEmpty())
34 ProgressFrame->setObjectName(QStringLiteral(
"ProgressFrame"));
35 ProgressFrame->resize(210, 38);
36 ProgressFrame->setFrameShape(QFrame::NoFrame);
37 ProgressFrame->setFrameShadow(QFrame::Raised);
38 ProgressFrame->setLineWidth(0);
39 horizontalLayout =
new QHBoxLayout(ProgressFrame);
40 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
41 horizontalLayout->setContentsMargins(-1, 0, -1, 0);
42 progressBar =
new QProgressBar(ProgressFrame);
43 progressBar->setObjectName(QStringLiteral(
"progressBar"));
44 progressBar->setValue(24);
45 progressBar->setTextVisible(
false);
47 horizontalLayout->addWidget(progressBar);
50 stopButton->setObjectName(QStringLiteral(
"stopButton"));
51 stopButton->setIconSize(QSize(12, 12));
53 horizontalLayout->addWidget(stopButton);
56 retranslateUi(ProgressFrame);
58 QMetaObject::connectSlotsByName(ProgressFrame);
61 void retranslateUi(QFrame *ProgressFrame)
63 ProgressFrame->setWindowTitle(QApplication::translate(
"ProgressFrame",
"Frame", 0));
64 stopButton->setText(QString());
75 #endif // UI_PROGRESS_FRAME_H Definition: ui_about_dialog.h:291
Definition: ui_progress_frame.h:24
Definition: progress_frame.h:38
Definition: ui_progress_frame.h:70