Sayonara Player
ui_GUI_Shutdown.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_Shutdown.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.11.3
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_SHUTDOWN_H
10 #define UI_GUI_SHUTDOWN_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QDialog>
15 #include <QtWidgets/QFrame>
16 #include <QtWidgets/QGridLayout>
17 #include <QtWidgets/QHBoxLayout>
18 #include <QtWidgets/QLabel>
19 #include <QtWidgets/QPushButton>
20 #include <QtWidgets/QRadioButton>
21 #include <QtWidgets/QSpinBox>
22 
23 QT_BEGIN_NAMESPACE
24 
26 {
27 public:
28  QGridLayout *gridLayout;
29  QRadioButton *rb_after_finished;
30  QPushButton *btn_cancel;
31  QPushButton *btn_ok;
32  QSpinBox *sb_minutes;
33  QRadioButton *rb_after_minutes;
34  QLabel *label_2;
35  QFrame *line;
36  QHBoxLayout *horizontalLayout;
37  QLabel *lab_icon;
38  QLabel *lab_title;
39 
40  void setupUi(QDialog *GUI_Shutdown)
41  {
42  if (GUI_Shutdown->objectName().isEmpty())
43  GUI_Shutdown->setObjectName(QStringLiteral("GUI_Shutdown"));
44  GUI_Shutdown->resize(394, 161);
45  gridLayout = new QGridLayout(GUI_Shutdown);
46  gridLayout->setObjectName(QStringLiteral("gridLayout"));
47  rb_after_finished = new QRadioButton(GUI_Shutdown);
48  rb_after_finished->setObjectName(QStringLiteral("rb_after_finished"));
49  rb_after_finished->setChecked(true);
50 
51  gridLayout->addWidget(rb_after_finished, 3, 0, 1, 4);
52 
53  btn_cancel = new QPushButton(GUI_Shutdown);
54  btn_cancel->setObjectName(QStringLiteral("btn_cancel"));
55 
56  gridLayout->addWidget(btn_cancel, 5, 2, 1, 1);
57 
58  btn_ok = new QPushButton(GUI_Shutdown);
59  btn_ok->setObjectName(QStringLiteral("btn_ok"));
60 
61  gridLayout->addWidget(btn_ok, 5, 3, 1, 1);
62 
63  sb_minutes = new QSpinBox(GUI_Shutdown);
64  sb_minutes->setObjectName(QStringLiteral("sb_minutes"));
65  sb_minutes->setEnabled(false);
66  sb_minutes->setValue(30);
67 
68  gridLayout->addWidget(sb_minutes, 4, 2, 1, 1);
69 
70  rb_after_minutes = new QRadioButton(GUI_Shutdown);
71  rb_after_minutes->setObjectName(QStringLiteral("rb_after_minutes"));
72 
73  gridLayout->addWidget(rb_after_minutes, 4, 0, 1, 1);
74 
75  label_2 = new QLabel(GUI_Shutdown);
76  label_2->setObjectName(QStringLiteral("label_2"));
77 
78  gridLayout->addWidget(label_2, 4, 3, 1, 1);
79 
80  line = new QFrame(GUI_Shutdown);
81  line->setObjectName(QStringLiteral("line"));
82  line->setFrameShape(QFrame::HLine);
83  line->setFrameShadow(QFrame::Sunken);
84 
85  gridLayout->addWidget(line, 2, 0, 1, 4);
86 
87  horizontalLayout = new QHBoxLayout();
88  horizontalLayout->setSpacing(10);
89  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
90  lab_icon = new QLabel(GUI_Shutdown);
91  lab_icon->setObjectName(QStringLiteral("lab_icon"));
92  lab_icon->setMaximumSize(QSize(30, 30));
93  lab_icon->setPixmap(QPixmap(QString::fromUtf8(":/Icons/power_on.svg.png")));
94  lab_icon->setScaledContents(true);
95 
96  horizontalLayout->addWidget(lab_icon);
97 
98  lab_title = new QLabel(GUI_Shutdown);
99  lab_title->setObjectName(QStringLiteral("lab_title"));
100  QFont font;
101  font.setPointSize(11);
102  font.setBold(true);
103  font.setWeight(75);
104  lab_title->setFont(font);
105 
106  horizontalLayout->addWidget(lab_title);
107 
108 
109  gridLayout->addLayout(horizontalLayout, 1, 0, 1, 4);
110 
111 
112  retranslateUi(GUI_Shutdown);
113 
114  QMetaObject::connectSlotsByName(GUI_Shutdown);
115  } // setupUi
116 
117  void retranslateUi(QDialog *GUI_Shutdown)
118  {
119  GUI_Shutdown->setWindowTitle(QApplication::translate("GUI_Shutdown", "Shutdown", nullptr));
120  rb_after_finished->setText(QApplication::translate("GUI_Shutdown", "Shutdown after playlist finished", nullptr));
121  btn_cancel->setText(QApplication::translate("GUI_Shutdown", "Cancel", nullptr));
122  btn_ok->setText(QApplication::translate("GUI_Shutdown", "OK", nullptr));
123  rb_after_minutes->setText(QApplication::translate("GUI_Shutdown", "Shutdown after", nullptr));
124  label_2->setText(QApplication::translate("GUI_Shutdown", "minutes", nullptr));
125  lab_icon->setText(QString());
126  lab_title->setText(QApplication::translate("GUI_Shutdown", "Shutdown", nullptr));
127  } // retranslateUi
128 
129 };
130 
131 namespace Ui {
132  class GUI_Shutdown: public Ui_GUI_Shutdown {};
133 } // namespace Ui
134 
135 QT_END_NAMESPACE
136 
137 #endif // UI_GUI_SHUTDOWN_H
Definition: ui_GUI_Shutdown.h:25
Definition: ui_GUI_Shutdown.h:132