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;
47 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
49 lab_title->setObjectName(QStringLiteral(
"lab_title"));
53 lab_title->setFont(font);
54 lab_title->setText(QStringLiteral(
"Reload Library"));
56 gridLayout->addWidget(lab_title, 0, 0, 1, 1);
59 combo_quality->setObjectName(QStringLiteral(
"combo_quality"));
61 gridLayout->addWidget(combo_quality, 2, 0, 1, 1);
63 horizontalLayout =
new QHBoxLayout();
64 horizontalLayout->setObjectName(QStringLiteral(
"horizontalLayout"));
65 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
67 horizontalLayout->addItem(horizontalSpacer);
70 btn_cancel->setObjectName(QStringLiteral(
"btn_cancel"));
71 btn_cancel->setText(QStringLiteral(
"Cancel"));
73 horizontalLayout->addWidget(btn_cancel);
76 btn_ok->setObjectName(QStringLiteral(
"btn_ok"));
77 btn_ok->setText(QStringLiteral(
"OK"));
79 horizontalLayout->addWidget(btn_ok);
82 gridLayout->addLayout(horizontalLayout, 6, 0, 1, 1);
85 lab_description->setObjectName(QStringLiteral(
"lab_description"));
86 lab_description->setText(QStringLiteral(
"TextLabel"));
87 lab_description->setWordWrap(
true);
89 gridLayout->addWidget(lab_description, 4, 0, 1, 1);
92 line_2->setObjectName(QStringLiteral(
"line_2"));
93 line_2->setFrameShape(QFrame::HLine);
94 line_2->setFrameShadow(QFrame::Sunken);
96 gridLayout->addWidget(line_2, 3, 0, 1, 1);
99 line_3->setObjectName(QStringLiteral(
"line_3"));
100 line_3->setFrameShape(QFrame::HLine);
101 line_3->setFrameShadow(QFrame::Sunken);
103 gridLayout->addWidget(line_3, 5, 0, 1, 1);
106 line->setObjectName(QStringLiteral(
"line"));
107 line->setFrameShape(QFrame::HLine);
108 line->setFrameShadow(QFrame::Sunken);
110 gridLayout->addWidget(line, 1, 0, 1, 1);
115 btn_ok->setDefault(
true);
134 #endif // UI_GUI_RELOADLIBRARYDIALOG_H Definition: ui_GUI_SomaFM.h:206
Definition: ui_GUI_ReloadLibraryDialog.h:129
Definition: ui_GUI_ReloadLibraryDialog.h:25
Definition: ComboBox.h:29
Definition: GUI_ReloadLibraryDialog.h:33