Sayonara Player
ui_GUI_LanguagePreferences.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_LanguagePreferences.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.11.3
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_LANGUAGEPREFERENCES_H
10 #define UI_GUI_LANGUAGEPREFERENCES_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QFrame>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QLabel>
18 #include <QtWidgets/QPushButton>
19 #include <QtWidgets/QSpacerItem>
20 #include <QtWidgets/QWidget>
21 #include "Gui/Utils/Widgets/ComboBox.h"
22 
23 QT_BEGIN_NAMESPACE
24 
26 {
27 public:
28  QGridLayout *gridLayout;
29  QFrame *line_2;
30  QHBoxLayout *horizontalLayout;
31  QPushButton *btn_check_for_update;
32  QPushButton *btn_download;
33  QLabel *lab_update_info;
34  QSpacerItem *verticalSpacer;
35  Gui::ComboBox *combo_lang;
36  QFrame *line;
37  QLabel *lab_link;
38  QLabel *label_2;
39 
40  void setupUi(QWidget *GUI_LanguagePreferences)
41  {
42  if (GUI_LanguagePreferences->objectName().isEmpty())
43  GUI_LanguagePreferences->setObjectName(QStringLiteral("GUI_LanguagePreferences"));
44  GUI_LanguagePreferences->resize(431, 299);
45  gridLayout = new QGridLayout(GUI_LanguagePreferences);
46  gridLayout->setSpacing(7);
47  gridLayout->setObjectName(QStringLiteral("gridLayout"));
48  line_2 = new QFrame(GUI_LanguagePreferences);
49  line_2->setObjectName(QStringLiteral("line_2"));
50  line_2->setFrameShape(QFrame::HLine);
51  line_2->setFrameShadow(QFrame::Sunken);
52 
53  gridLayout->addWidget(line_2, 6, 0, 1, 1);
54 
55  horizontalLayout = new QHBoxLayout();
56  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
57  btn_check_for_update = new QPushButton(GUI_LanguagePreferences);
58  btn_check_for_update->setObjectName(QStringLiteral("btn_check_for_update"));
59 
60  horizontalLayout->addWidget(btn_check_for_update);
61 
62  btn_download = new QPushButton(GUI_LanguagePreferences);
63  btn_download->setObjectName(QStringLiteral("btn_download"));
64 
65  horizontalLayout->addWidget(btn_download);
66 
67 
68  gridLayout->addLayout(horizontalLayout, 4, 0, 1, 1);
69 
70  lab_update_info = new QLabel(GUI_LanguagePreferences);
71  lab_update_info->setObjectName(QStringLiteral("lab_update_info"));
72  lab_update_info->setText(QStringLiteral(""));
73 
74  gridLayout->addWidget(lab_update_info, 5, 0, 1, 1);
75 
76  verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
77 
78  gridLayout->addItem(verticalSpacer, 9, 0, 1, 1);
79 
80  combo_lang = new Gui::ComboBox(GUI_LanguagePreferences);
81  combo_lang->addItem(QString());
82  combo_lang->setObjectName(QStringLiteral("combo_lang"));
83  combo_lang->setCurrentText(QStringLiteral("English"));
84 
85  gridLayout->addWidget(combo_lang, 0, 0, 1, 1);
86 
87  line = new QFrame(GUI_LanguagePreferences);
88  line->setObjectName(QStringLiteral("line"));
89  line->setFrameShape(QFrame::HLine);
90  line->setFrameShadow(QFrame::Sunken);
91 
92  gridLayout->addWidget(line, 3, 0, 1, 1);
93 
94  lab_link = new QLabel(GUI_LanguagePreferences);
95  lab_link->setObjectName(QStringLiteral("lab_link"));
96  lab_link->setText(QStringLiteral(""));
97  lab_link->setTextFormat(Qt::RichText);
98  lab_link->setOpenExternalLinks(true);
99 
100  gridLayout->addWidget(lab_link, 8, 0, 1, 1);
101 
102  label_2 = new QLabel(GUI_LanguagePreferences);
103  label_2->setObjectName(QStringLiteral("label_2"));
104  label_2->setWordWrap(true);
105 
106  gridLayout->addWidget(label_2, 7, 0, 1, 1);
107 
108 
109  retranslateUi(GUI_LanguagePreferences);
110 
111  QMetaObject::connectSlotsByName(GUI_LanguagePreferences);
112  } // setupUi
113 
114  void retranslateUi(QWidget *GUI_LanguagePreferences)
115  {
116  btn_check_for_update->setText(QApplication::translate("GUI_LanguagePreferences", "Check for update", nullptr));
117  btn_download->setText(QApplication::translate("GUI_LanguagePreferences", "Download update", nullptr));
118  combo_lang->setItemText(0, QApplication::translate("GUI_LanguagePreferences", "English", nullptr));
119 
120  label_2->setText(QApplication::translate("GUI_LanguagePreferences", "For new languages I am always looking for translators", nullptr));
121  Q_UNUSED(GUI_LanguagePreferences);
122  } // retranslateUi
123 
124 };
125 
126 namespace Ui {
128 } // namespace Ui
129 
130 QT_END_NAMESPACE
131 
132 #endif // UI_GUI_LANGUAGEPREFERENCES_H
Definition: ui_GUI_LanguagePreferences.h:25
Definition: ui_GUI_AlternativeCovers.h:315
Definition: GUI_LanguagePreferences.h:29
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:33
Definition: ui_GUI_LanguagePreferences.h:127