Sayonara Player
ui_GUI_Notifications.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_Notifications.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.11.1
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_NOTIFICATIONS_H
10 #define UI_GUI_NOTIFICATIONS_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_Notifications)
33  {
34  if (GUI_Notifications->objectName().isEmpty())
35  GUI_Notifications->setObjectName(QStringLiteral("GUI_Notifications"));
36  GUI_Notifications->resize(400, 112);
37  gridLayout = new QGridLayout(GUI_Notifications);
38  gridLayout->setObjectName(QStringLiteral("gridLayout"));
39  label_3 = new QLabel(GUI_Notifications);
40  label_3->setObjectName(QStringLiteral("label_3"));
41 
42  gridLayout->addWidget(label_3, 2, 0, 1, 1);
43 
44  cb_activate = new QCheckBox(GUI_Notifications);
45  cb_activate->setObjectName(QStringLiteral("cb_activate"));
46  cb_activate->setFocusPolicy(Qt::StrongFocus);
47  cb_activate->setText(QStringLiteral("Active"));
48 
49  gridLayout->addWidget(cb_activate, 0, 0, 1, 2);
50 
51  combo_notification = new Gui::ComboBox(GUI_Notifications);
52  combo_notification->setObjectName(QStringLiteral("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_Notifications);
58  sb_timeout->setObjectName(QStringLiteral("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_Notifications);
69 
70  QMetaObject::connectSlotsByName(GUI_Notifications);
71  } // setupUi
72 
73  void retranslateUi(QWidget *GUI_Notifications)
74  {
75  label_3->setText(QApplication::translate("GUI_Notifications", "Timeout (ms)", nullptr));
76  Q_UNUSED(GUI_Notifications);
77  } // retranslateUi
78 
79 };
80 
81 namespace Ui {
83 } // namespace Ui
84 
85 QT_END_NAMESPACE
86 
87 #endif // UI_GUI_NOTIFICATIONS_H
Definition: ui_GUI_SomaFM.h:206
Definition: ui_GUI_Notifications.h:82
Definition: GUI_Notifications.h:30
Definition: ui_GUI_Notifications.h:23
Definition: ComboBox.h:31