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.14.2
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 *cbActivate;
29  Gui::ComboBox *comboNotifications;
30  QSpinBox *sbTimeout;
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  cbActivate = new QCheckBox(GUI_NotificationPreferences);
45  cbActivate->setObjectName(QString::fromUtf8("cbActivate"));
46  cbActivate->setFocusPolicy(Qt::StrongFocus);
47  cbActivate->setText(QString::fromUtf8("Active"));
48 
49  gridLayout->addWidget(cbActivate, 0, 0, 1, 2);
50 
51  comboNotifications = new Gui::ComboBox(GUI_NotificationPreferences);
52  comboNotifications->setObjectName(QString::fromUtf8("comboNotifications"));
53  comboNotifications->setFocusPolicy(Qt::StrongFocus);
54 
55  gridLayout->addWidget(comboNotifications, 1, 0, 1, 2);
56 
57  sbTimeout = new QSpinBox(GUI_NotificationPreferences);
58  sbTimeout->setObjectName(QString::fromUtf8("sbTimeout"));
59  sbTimeout->setFocusPolicy(Qt::WheelFocus);
60  sbTimeout->setMinimum(1000);
61  sbTimeout->setMaximum(60000);
62  sbTimeout->setSingleStep(1000);
63  sbTimeout->setValue(5000);
64 
65  gridLayout->addWidget(sbTimeout, 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(QCoreApplication::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:24
Gui::ComboBox
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:35
Ui::GUI_NotificationPreferences
Definition: ui_GUI_NotificationPreferences.h:82
GUI_NotificationPreferences
Definition: GUI_NotificationPreferences.h:32