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.0
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/QComboBox>
18 #include <QtWidgets/QGridLayout>
19 #include <QtWidgets/QHeaderView>
20 #include <QtWidgets/QLabel>
21 #include <QtWidgets/QSpinBox>
22 #include <QtWidgets/QWidget>
23 
24 QT_BEGIN_NAMESPACE
25 
27 {
28 public:
29  QGridLayout *gridLayout;
30  QLabel *label_3;
31  QCheckBox *cb_activate;
32  QComboBox *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, 175);
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 
51  gridLayout->addWidget(cb_activate, 0, 0, 1, 2);
52 
53  combo_notification = new QComboBox(GUI_Notifications);
54  combo_notification->setObjectName(QStringLiteral("combo_notification"));
55  combo_notification->setFocusPolicy(Qt::StrongFocus);
56 
57  gridLayout->addWidget(combo_notification, 1, 0, 1, 2);
58 
59  sb_timeout = new QSpinBox(GUI_Notifications);
60  sb_timeout->setObjectName(QStringLiteral("sb_timeout"));
61  sb_timeout->setFocusPolicy(Qt::WheelFocus);
62  sb_timeout->setMinimum(1000);
63  sb_timeout->setMaximum(60000);
64  sb_timeout->setSingleStep(1000);
65  sb_timeout->setValue(5000);
66 
67  gridLayout->addWidget(sb_timeout, 2, 1, 1, 1);
68 
69 
70  retranslateUi(GUI_Notifications);
71 
72  QMetaObject::connectSlotsByName(GUI_Notifications);
73  } // setupUi
74 
75  void retranslateUi(QWidget *GUI_Notifications)
76  {
77  label_3->setText(QApplication::translate("GUI_Notifications", "Timeout (ms)", Q_NULLPTR));
78  cb_activate->setText(QApplication::translate("GUI_Notifications", "Activate", Q_NULLPTR));
79  combo_notification->clear();
80  combo_notification->insertItems(0, QStringList()
81  << QApplication::translate("GUI_Notifications", "Standard", Q_NULLPTR)
82  );
83  Q_UNUSED(GUI_Notifications);
84  } // retranslateUi
85 
86 };
87 
88 namespace Ui {
90 } // namespace Ui
91 
92 QT_END_NAMESPACE
93 
94 #endif // UI_GUI_NOTIFICATIONS_H
Definition: ui_GUI_SomaFM.h:216
Definition: ui_GUI_Notifications.h:89
Definition: GUI_Notifications.h:33
Definition: ui_GUI_Notifications.h:26