9 #ifndef UI_GUI_RELOADLIBRARYDIALOG_H 10 #define UI_GUI_RELOADLIBRARYDIALOG_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QApplication> 14 #include <QtWidgets/QDialog> 15 #include <QtWidgets/QFrame> 16 #include <QtWidgets/QGridLayout> 17 #include <QtWidgets/QHBoxLayout> 18 #include <QtWidgets/QLabel> 19 #include <QtWidgets/QPushButton> 20 #include <QtWidgets/QSpacerItem> 21 #include "GUI/Utils/Widgets/ComboBox.h" 28 QGridLayout *gridLayout;
31 QHBoxLayout *horizontalLayout;
32 QSpacerItem *horizontalSpacer;
33 QPushButton *btn_cancel;
35 QLabel *lab_description;
46 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
48 lab_title->setObjectName(QStringLiteral(
"lab_title"));
52 lab_title->setFont(font);
53 lab_title->setText(QStringLiteral(
"Reload Library"));
55 gridLayout->addWidget(lab_title, 0, 0, 1, 1);
58 combo_quality->setObjectName(QStringLiteral(
"combo_quality"));
60 gridLayout->addWidget(combo_quality, 2, 0, 1, 1);
62 horizontalLayout =
new QHBoxLayout();
63 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
64 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
66 horizontalLayout->addItem(horizontalSpacer);
69 btn_cancel->setObjectName(QStringLiteral(
"btn_cancel"));
70 btn_cancel->setText(QStringLiteral(
"Cancel"));
72 horizontalLayout->addWidget(btn_cancel);
75 btn_ok->setObjectName(QStringLiteral(
"btn_ok"));
76 btn_ok->setText(QStringLiteral(
"OK"));
78 horizontalLayout->addWidget(btn_ok);
81 gridLayout->addLayout(horizontalLayout, 6, 0, 1, 1);
84 lab_description->setObjectName(QStringLiteral(
"lab_description"));
85 lab_description->setText(QStringLiteral(
"TextLabel"));
86 lab_description->setWordWrap(
true);
88 gridLayout->addWidget(lab_description, 4, 0, 1, 1);
91 line_2->setObjectName(QStringLiteral(
"line_2"));
92 line_2->setFrameShape(QFrame::HLine);
93 line_2->setFrameShadow(QFrame::Sunken);
95 gridLayout->addWidget(line_2, 3, 0, 1, 1);
98 line_3->setObjectName(QStringLiteral(
"line_3"));
99 line_3->setFrameShape(QFrame::HLine);
100 line_3->setFrameShadow(QFrame::Sunken);
102 gridLayout->addWidget(line_3, 5, 0, 1, 1);
105 line->setObjectName(QStringLiteral(
"line"));
106 line->setFrameShape(QFrame::HLine);
107 line->setFrameShadow(QFrame::Sunken);
109 gridLayout->addWidget(line, 1, 0, 1, 1);
130 #endif // UI_GUI_RELOADLIBRARYDIALOG_H Definition: ui_GUI_ReloadLibraryDialog.h:125
Definition: ui_GUI_ReloadLibraryDialog.h:25
Definition: ComboBox.h:31
Definition: GUI_ReloadLibraryDialog.h:33