Sayonara Player
ui_GUI_NotificationPreferences.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_NotificationPreferences.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_NOTIFICATIONPREFERENCES_H
10 #define UI_GUI_NOTIFICATIONPREFERENCES_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QCheckBox>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QLabel>
17 #include <QtWidgets/QSpinBox>
18 #include <QtWidgets/QWidget>
19 #include "Gui/Utils/Widgets/ComboBox.h"
20 
21 QT_BEGIN_NAMESPACE
22 
24 {
25 public:
26  QGridLayout *gridLayout;
27  QLabel *label_3;
28  QCheckBox *cb_activate;
29  Gui::ComboBox *combo_notification;
30  QSpinBox *sb_timeout;
31 
32  void setupUi(QWidget *GUI_NotificationPreferences)
33  {
34  if (GUI_NotificationPreferences->objectName().isEmpty())
35  GUI_NotificationPreferences->setObjectName(QString::fromUtf8("GUI_NotificationPreferences"));
36  GUI_NotificationPreferences->resize(400, 112);
37  gridLayout = new QGridLayout(GUI_NotificationPreferences);
38  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
39  label_3 = new QLabel(GUI_NotificationPreferences);
40  label_3->setObjectName(QString::fromUtf8("label_3"));
41 
42  gridLayout->addWidget(label_3, 2, 0, 1, 1);
43 
44  cb_activate = new QCheckBox(GUI_NotificationPreferences);
45  cb_activate->setObjectName(QString::fromUtf8("cb_activate"));
46  cb_activate->setFocusPolicy(Qt::StrongFocus);
47  cb_activate->setText(QString::fromUtf8("Active"));
48 
49  gridLayout->addWidget(cb_activate, 0, 0, 1, 2);
50 
51  combo_notification = new Gui::ComboBox(GUI_NotificationPreferences);
52  combo_notification->setObjectName(QString::fromUtf8("combo_notification"));
53  combo_notification->setFocusPolicy(Qt::StrongFocus);
54 
55  gridLayout->addWidget(combo_notification, 1, 0, 1, 2);
56 
57  sb_timeout = new QSpinBox(GUI_NotificationPreferences);
58  sb_timeout->setObjectName(QString::fromUtf8("sb_timeout"));
59  sb_timeout->setFocusPolicy(Qt::WheelFocus);
60  sb_timeout->setMinimum(1000);
61  sb_timeout->setMaximum(60000);
62  sb_timeout->setSingleStep(1000);
63  sb_timeout->setValue(5000);
64 
65  gridLayout->addWidget(sb_timeout, 2, 1, 1, 1);
66 
67 
68  retranslateUi(GUI_NotificationPreferences);
69 
70  QMetaObject::connectSlotsByName(GUI_NotificationPreferences);
71  } // setupUi
72 
73  void retranslateUi(QWidget *GUI_NotificationPreferences)
74  {
75  label_3->setText(QApplication::translate("GUI_NotificationPreferences", "Timeout (ms)", nullptr));
77  } // retranslateUi
78 
79 };
80 
81 namespace Ui {
83 } // namespace Ui
84 
85 QT_END_NAMESPACE
86 
87 #endif // UI_GUI_NOTIFICATIONPREFERENCES_H
Ui_GUI_NotificationPreferences
Definition: ui_GUI_NotificationPreferences.h:23
Gui::ComboBox
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:33
Ui::GUI_NotificationPreferences
Definition: ui_GUI_NotificationPreferences.h:82
GUI_NotificationPreferences
Definition: GUI_NotificationPreferences.h:30