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.11.3
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 <GUI/Utils/Widgets/ComboBox.h>
13 #include <QtCore/QVariant>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QCheckBox>
16 #include <QtWidgets/QFrame>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QHBoxLayout>
19 #include <QtWidgets/QLabel>
20 #include <QtWidgets/QWidget>
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(QStringLiteral("GUI_PlayerPreferences"));
41  GUI_PlayerPreferences->resize(400, 202);
42  gridLayout = new QGridLayout(GUI_PlayerPreferences);
43  gridLayout->setObjectName(QStringLiteral("gridLayout"));
44  cb_update_notifications = new QCheckBox(GUI_PlayerPreferences);
45  cb_update_notifications->setObjectName(QStringLiteral("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(QStringLiteral("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(QStringLiteral("cb_close_to_tray"));
56 
57  gridLayout->addWidget(cb_close_to_tray, 3, 0, 1, 1);
58 
59  horizontalLayout = new QHBoxLayout();
60  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
61  lab_logger = new QLabel(GUI_PlayerPreferences);
62  lab_logger->setObjectName(QStringLiteral("lab_logger"));
63  lab_logger->setText(QStringLiteral("Logger"));
64 
65  horizontalLayout->addWidget(lab_logger);
66 
67  cb_logger = new Gui::ComboBox(GUI_PlayerPreferences);
68  cb_logger->setObjectName(QStringLiteral("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(QStringLiteral("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(QStringLiteral("cb_start_in_tray"));
84 
85  gridLayout->addWidget(cb_start_in_tray, 1, 0, 1, 1);
86 
87 
88  retranslateUi(GUI_PlayerPreferences);
89 
90  QMetaObject::connectSlotsByName(GUI_PlayerPreferences);
91  } // setupUi
92 
93  void retranslateUi(QWidget *GUI_PlayerPreferences)
94  {
95  cb_update_notifications->setText(QApplication::translate("GUI_PlayerPreferences", "Update notifications", nullptr));
96  cb_show_tray_icon->setText(QApplication::translate("GUI_PlayerPreferences", "Show system tray icon", nullptr));
97  cb_close_to_tray->setText(QApplication::translate("GUI_PlayerPreferences", "Close to tray", nullptr));
98  cb_start_in_tray->setText(QApplication::translate("GUI_PlayerPreferences", "Start in tray", nullptr));
99  Q_UNUSED(GUI_PlayerPreferences);
100  } // retranslateUi
101 
102 };
103 
104 namespace Ui {
106 } // namespace Ui
107 
108 QT_END_NAMESPACE
109 
110 #endif // UI_GUI_PLAYERPREFERENCES_H
Definition: ui_GUI_PlayerPreferences.h:105
Definition: ui_GUI_SomaFM.h:206
Definition: GUI_PlayerPreferences.h:28
Definition: ui_GUI_PlayerPreferences.h:24
Definition: ComboBox.h:29