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.9.6
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/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QCheckBox>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QHeaderView>
19 #include <QtWidgets/QLabel>
20 #include <QtWidgets/QSpinBox>
21 #include <QtWidgets/QWidget>
22 #include "GUI/Utils/Widgets/ComboBox.h"
23 
24 QT_BEGIN_NAMESPACE
25 
27 {
28 public:
29  QGridLayout *gridLayout;
30  QLabel *label_3;
31  QCheckBox *cb_activate;
32  Gui::ComboBox *combo_notification;
33  QSpinBox *sb_timeout;
34 
35  void setupUi(QWidget *GUI_Notifications)
36  {
37  if (GUI_Notifications->objectName().isEmpty())
38  GUI_Notifications->setObjectName(QStringLiteral("GUI_Notifications"));
39  GUI_Notifications->resize(400, 112);
40  gridLayout = new QGridLayout(GUI_Notifications);
41  gridLayout->setObjectName(QStringLiteral("gridLayout"));
42  label_3 = new QLabel(GUI_Notifications);
43  label_3->setObjectName(QStringLiteral("label_3"));
44 
45  gridLayout->addWidget(label_3, 2, 0, 1, 1);
46 
47  cb_activate = new QCheckBox(GUI_Notifications);
48  cb_activate->setObjectName(QStringLiteral("cb_activate"));
49  cb_activate->setFocusPolicy(Qt::StrongFocus);
50  cb_activate->setText(QStringLiteral("Active"));
51 
52  gridLayout->addWidget(cb_activate, 0, 0, 1, 2);
53 
54  combo_notification = new Gui::ComboBox(GUI_Notifications);
55  combo_notification->setObjectName(QStringLiteral("combo_notification"));
56  combo_notification->setFocusPolicy(Qt::StrongFocus);
57 
58  gridLayout->addWidget(combo_notification, 1, 0, 1, 2);
59 
60  sb_timeout = new QSpinBox(GUI_Notifications);
61  sb_timeout->setObjectName(QStringLiteral("sb_timeout"));
62  sb_timeout->setFocusPolicy(Qt::WheelFocus);
63  sb_timeout->setMinimum(1000);
64  sb_timeout->setMaximum(60000);
65  sb_timeout->setSingleStep(1000);
66  sb_timeout->setValue(5000);
67 
68  gridLayout->addWidget(sb_timeout, 2, 1, 1, 1);
69 
70 
71  retranslateUi(GUI_Notifications);
72 
73  QMetaObject::connectSlotsByName(GUI_Notifications);
74  } // setupUi
75 
76  void retranslateUi(QWidget *GUI_Notifications)
77  {
78  label_3->setText(QApplication::translate("GUI_Notifications", "Timeout (ms)", Q_NULLPTR));
79  Q_UNUSED(GUI_Notifications);
80  } // retranslateUi
81 
82 };
83 
84 namespace Ui {
86 } // namespace Ui
87 
88 QT_END_NAMESPACE
89 
90 #endif // UI_GUI_NOTIFICATIONS_H
Definition: ui_GUI_SomaFM.h:208
Definition: ui_GUI_Notifications.h:85
Definition: GUI_Notifications.h:30
Definition: ui_GUI_Notifications.h:26
Definition: ComboBox.h:31