Sayonara Player
ui_GUI_PlayerPreferences.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_PlayerPreferences.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_PLAYERPREFERENCES_H
10 #define UI_GUI_PLAYERPREFERENCES_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QCheckBox>
15 #include <QtWidgets/QFrame>
16 #include <QtWidgets/QGridLayout>
17 #include <QtWidgets/QHBoxLayout>
18 #include <QtWidgets/QLabel>
19 #include <QtWidgets/QWidget>
20 #include "Gui/Utils/Widgets/ComboBox.h"
21 
22 QT_BEGIN_NAMESPACE
23 
25 {
26 public:
27  QGridLayout *gridLayout;
28  QCheckBox *cb_update_notifications;
29  QCheckBox *cb_show_tray_icon;
30  QCheckBox *cb_close_to_tray;
31  QHBoxLayout *horizontalLayout;
32  QLabel *lab_logger;
33  Gui::ComboBox *cb_logger;
34  QFrame *line;
35  QCheckBox *cb_start_in_tray;
36 
37  void setupUi(QWidget *GUI_PlayerPreferences)
38  {
39  if (GUI_PlayerPreferences->objectName().isEmpty())
40  GUI_PlayerPreferences->setObjectName(QString::fromUtf8("GUI_PlayerPreferences"));
41  GUI_PlayerPreferences->resize(400, 202);
42  gridLayout = new QGridLayout(GUI_PlayerPreferences);
43  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
44  cb_update_notifications = new QCheckBox(GUI_PlayerPreferences);
45  cb_update_notifications->setObjectName(QString::fromUtf8("cb_update_notifications"));
46 
47  gridLayout->addWidget(cb_update_notifications, 4, 0, 1, 1);
48 
49  cb_show_tray_icon = new QCheckBox(GUI_PlayerPreferences);
50  cb_show_tray_icon->setObjectName(QString::fromUtf8("cb_show_tray_icon"));
51 
52  gridLayout->addWidget(cb_show_tray_icon, 0, 0, 1, 1);
53 
54  cb_close_to_tray = new QCheckBox(GUI_PlayerPreferences);
55  cb_close_to_tray->setObjectName(QString::fromUtf8("cb_close_to_tray"));
56 
57  gridLayout->addWidget(cb_close_to_tray, 3, 0, 1, 1);
58 
59  horizontalLayout = new QHBoxLayout();
60  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
61  lab_logger = new QLabel(GUI_PlayerPreferences);
62  lab_logger->setObjectName(QString::fromUtf8("lab_logger"));
63  lab_logger->setText(QString::fromUtf8("Logger"));
64 
65  horizontalLayout->addWidget(lab_logger);
66 
67  cb_logger = new Gui::ComboBox(GUI_PlayerPreferences);
68  cb_logger->setObjectName(QString::fromUtf8("cb_logger"));
69 
70  horizontalLayout->addWidget(cb_logger);
71 
72 
73  gridLayout->addLayout(horizontalLayout, 6, 0, 1, 1);
74 
75  line = new QFrame(GUI_PlayerPreferences);
76  line->setObjectName(QString::fromUtf8("line"));
77  line->setFrameShape(QFrame::HLine);
78  line->setFrameShadow(QFrame::Sunken);
79 
80  gridLayout->addWidget(line, 5, 0, 1, 1);
81 
82  cb_start_in_tray = new QCheckBox(GUI_PlayerPreferences);
83  cb_start_in_tray->setObjectName(QString::fromUtf8("cb_start_in_tray"));
84 
85  gridLayout->addWidget(cb_start_in_tray, 1, 0, 1, 1);
86 
87  QWidget::setTabOrder(cb_show_tray_icon, cb_start_in_tray);
88  QWidget::setTabOrder(cb_start_in_tray, cb_close_to_tray);
89  QWidget::setTabOrder(cb_close_to_tray, cb_update_notifications);
90  QWidget::setTabOrder(cb_update_notifications, cb_logger);
91 
92  retranslateUi(GUI_PlayerPreferences);
93 
94  QMetaObject::connectSlotsByName(GUI_PlayerPreferences);
95  } // setupUi
96 
97  void retranslateUi(QWidget *GUI_PlayerPreferences)
98  {
99  cb_update_notifications->setText(QApplication::translate("GUI_PlayerPreferences", "Update notifications", nullptr));
100  cb_show_tray_icon->setText(QApplication::translate("GUI_PlayerPreferences", "Show system tray icon", nullptr));
101  cb_close_to_tray->setText(QApplication::translate("GUI_PlayerPreferences", "Close to system tray", nullptr));
102  cb_start_in_tray->setText(QApplication::translate("GUI_PlayerPreferences", "Start in system tray", nullptr));
103  Q_UNUSED(GUI_PlayerPreferences);
104  } // retranslateUi
105 
106 };
107 
108 namespace Ui {
110 } // namespace Ui
111 
112 QT_END_NAMESPACE
113 
114 #endif // UI_GUI_PLAYERPREFERENCES_H
Definition: ui_GUI_PlayerPreferences.h:109
Definition: GUI_PlayerPreferences.h:28
Definition: ui_GUI_PlayerPreferences.h:24
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:33