Sayonara Player
ui_GUI_ReloadLibraryDialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_ReloadLibraryDialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.5
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_RELOADLIBRARYDIALOG_H
10 #define UI_GUI_RELOADLIBRARYDIALOG_H
11 
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"
22 
23 QT_BEGIN_NAMESPACE
24 
26 {
27 public:
28  QGridLayout *gridLayout;
29  QLabel *lab_title;
30  Gui::ComboBox *combo_quality;
31  QHBoxLayout *horizontalLayout;
32  QSpacerItem *horizontalSpacer;
33  QPushButton *btn_cancel;
34  QPushButton *btn_ok;
35  QLabel *lab_description;
36  QFrame *line_2;
37  QFrame *line_3;
38  QFrame *line;
39 
40  void setupUi(QDialog *GUI_LibraryReloadDialog)
41  {
42  if (GUI_LibraryReloadDialog->objectName().isEmpty())
43  GUI_LibraryReloadDialog->setObjectName(QString::fromUtf8("GUI_LibraryReloadDialog"));
44  GUI_LibraryReloadDialog->resize(374, 162);
45  GUI_LibraryReloadDialog->setModal(true);
46  gridLayout = new QGridLayout(GUI_LibraryReloadDialog);
47  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
48  lab_title = new QLabel(GUI_LibraryReloadDialog);
49  lab_title->setObjectName(QString::fromUtf8("lab_title"));
50  QFont font;
51  font.setBold(true);
52  font.setWeight(75);
53  lab_title->setFont(font);
54  lab_title->setText(QString::fromUtf8("Reload Library"));
55 
56  gridLayout->addWidget(lab_title, 0, 0, 1, 1);
57 
58  combo_quality = new Gui::ComboBox(GUI_LibraryReloadDialog);
59  combo_quality->setObjectName(QString::fromUtf8("combo_quality"));
60 
61  gridLayout->addWidget(combo_quality, 2, 0, 1, 1);
62 
63  horizontalLayout = new QHBoxLayout();
64  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
65  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
66 
67  horizontalLayout->addItem(horizontalSpacer);
68 
69  btn_cancel = new QPushButton(GUI_LibraryReloadDialog);
70  btn_cancel->setObjectName(QString::fromUtf8("btn_cancel"));
71  btn_cancel->setText(QString::fromUtf8("Cancel"));
72 
73  horizontalLayout->addWidget(btn_cancel);
74 
75  btn_ok = new QPushButton(GUI_LibraryReloadDialog);
76  btn_ok->setObjectName(QString::fromUtf8("btn_ok"));
77  btn_ok->setText(QString::fromUtf8("OK"));
78 
79  horizontalLayout->addWidget(btn_ok);
80 
81 
82  gridLayout->addLayout(horizontalLayout, 6, 0, 1, 1);
83 
84  lab_description = new QLabel(GUI_LibraryReloadDialog);
85  lab_description->setObjectName(QString::fromUtf8("lab_description"));
86  lab_description->setText(QString::fromUtf8("TextLabel"));
87  lab_description->setWordWrap(true);
88 
89  gridLayout->addWidget(lab_description, 4, 0, 1, 1);
90 
91  line_2 = new QFrame(GUI_LibraryReloadDialog);
92  line_2->setObjectName(QString::fromUtf8("line_2"));
93  line_2->setFrameShape(QFrame::HLine);
94  line_2->setFrameShadow(QFrame::Sunken);
95 
96  gridLayout->addWidget(line_2, 3, 0, 1, 1);
97 
98  line_3 = new QFrame(GUI_LibraryReloadDialog);
99  line_3->setObjectName(QString::fromUtf8("line_3"));
100  line_3->setFrameShape(QFrame::HLine);
101  line_3->setFrameShadow(QFrame::Sunken);
102 
103  gridLayout->addWidget(line_3, 5, 0, 1, 1);
104 
105  line = new QFrame(GUI_LibraryReloadDialog);
106  line->setObjectName(QString::fromUtf8("line"));
107  line->setFrameShape(QFrame::HLine);
108  line->setFrameShadow(QFrame::Sunken);
109 
110  gridLayout->addWidget(line, 1, 0, 1, 1);
111 
112 
113  retranslateUi(GUI_LibraryReloadDialog);
114 
115  btn_ok->setDefault(true);
116 
117 
118  QMetaObject::connectSlotsByName(GUI_LibraryReloadDialog);
119  } // setupUi
120 
121  void retranslateUi(QDialog *GUI_LibraryReloadDialog)
122  {
123  Q_UNUSED(GUI_LibraryReloadDialog);
124  } // retranslateUi
125 
126 };
127 
128 namespace Ui {
130 } // namespace Ui
131 
132 QT_END_NAMESPACE
133 
134 #endif // UI_GUI_RELOADLIBRARYDIALOG_H
Definition: ui_GUI_ReloadLibraryDialog.h:25
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:33
Definition: ui_GUI_ReloadLibraryDialog.h:129