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.14.2
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/QDialogButtonBox>
16 #include <QtWidgets/QFrame>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QHBoxLayout>
19 #include <QtWidgets/QLabel>
20 #include <QtWidgets/QRadioButton>
21 #include <QtWidgets/QSpinBox>
22 
23 QT_BEGIN_NAMESPACE
24 
26 {
27 public:
28  QGridLayout *gridLayout;
29  QHBoxLayout *horizontalLayout;
30  QLabel *lab_icon;
31  QLabel *lab_title;
32  QFrame *line;
33  QSpinBox *sb_minutes;
34  QRadioButton *rb_after_finished;
35  QFrame *line_2;
36  QLabel *label_2;
37  QRadioButton *rb_after_minutes;
38  QDialogButtonBox *buttonBox;
39 
40  void setupUi(QDialog *GUI_Shutdown)
41  {
42  if (GUI_Shutdown->objectName().isEmpty())
43  GUI_Shutdown->setObjectName(QString::fromUtf8("GUI_Shutdown"));
44  GUI_Shutdown->resize(383, 184);
45  gridLayout = new QGridLayout(GUI_Shutdown);
46  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
47  horizontalLayout = new QHBoxLayout();
48  horizontalLayout->setSpacing(15);
49  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
50  lab_icon = new QLabel(GUI_Shutdown);
51  lab_icon->setObjectName(QString::fromUtf8("lab_icon"));
52  lab_icon->setStyleSheet(QString::fromUtf8("min-width: 6ex; max-width: 6ex; min-height: 6ex; max-height: 6ex;"));
53  lab_icon->setScaledContents(true);
54 
55  horizontalLayout->addWidget(lab_icon);
56 
57  lab_title = new QLabel(GUI_Shutdown);
58  lab_title->setObjectName(QString::fromUtf8("lab_title"));
59  QFont font;
60  font.setPointSize(11);
61  font.setBold(true);
62  font.setWeight(75);
63  lab_title->setFont(font);
64 
65  horizontalLayout->addWidget(lab_title);
66 
67 
68  gridLayout->addLayout(horizontalLayout, 1, 0, 1, 4);
69 
70  line = new QFrame(GUI_Shutdown);
71  line->setObjectName(QString::fromUtf8("line"));
72  line->setFrameShape(QFrame::HLine);
73  line->setFrameShadow(QFrame::Sunken);
74 
75  gridLayout->addWidget(line, 2, 0, 1, 4);
76 
77  sb_minutes = new QSpinBox(GUI_Shutdown);
78  sb_minutes->setObjectName(QString::fromUtf8("sb_minutes"));
79  sb_minutes->setEnabled(false);
80  sb_minutes->setValue(30);
81 
82  gridLayout->addWidget(sb_minutes, 4, 2, 1, 1);
83 
84  rb_after_finished = new QRadioButton(GUI_Shutdown);
85  rb_after_finished->setObjectName(QString::fromUtf8("rb_after_finished"));
86  rb_after_finished->setChecked(true);
87 
88  gridLayout->addWidget(rb_after_finished, 3, 0, 1, 4);
89 
90  line_2 = new QFrame(GUI_Shutdown);
91  line_2->setObjectName(QString::fromUtf8("line_2"));
92  line_2->setFrameShape(QFrame::HLine);
93  line_2->setFrameShadow(QFrame::Sunken);
94 
95  gridLayout->addWidget(line_2, 5, 0, 1, 4);
96 
97  label_2 = new QLabel(GUI_Shutdown);
98  label_2->setObjectName(QString::fromUtf8("label_2"));
99 
100  gridLayout->addWidget(label_2, 4, 3, 1, 1);
101 
102  rb_after_minutes = new QRadioButton(GUI_Shutdown);
103  rb_after_minutes->setObjectName(QString::fromUtf8("rb_after_minutes"));
104 
105  gridLayout->addWidget(rb_after_minutes, 4, 0, 1, 1);
106 
107  buttonBox = new QDialogButtonBox(GUI_Shutdown);
108  buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
109  buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
110 
111  gridLayout->addWidget(buttonBox, 6, 0, 1, 4);
112 
113  QWidget::setTabOrder(rb_after_finished, rb_after_minutes);
114  QWidget::setTabOrder(rb_after_minutes, sb_minutes);
115 
116  retranslateUi(GUI_Shutdown);
117 
118  QMetaObject::connectSlotsByName(GUI_Shutdown);
119  } // setupUi
120 
121  void retranslateUi(QDialog *GUI_Shutdown)
122  {
123  GUI_Shutdown->setWindowTitle(QCoreApplication::translate("GUI_Shutdown", "Shutdown", nullptr));
124  lab_icon->setText(QString());
125  lab_title->setText(QCoreApplication::translate("GUI_Shutdown", "Shutdown", nullptr));
126  rb_after_finished->setText(QCoreApplication::translate("GUI_Shutdown", "Shutdown after playlist finished", nullptr));
127  label_2->setText(QCoreApplication::translate("GUI_Shutdown", "minutes", nullptr));
128  rb_after_minutes->setText(QCoreApplication::translate("GUI_Shutdown", "Shutdown after", nullptr));
129  } // retranslateUi
130 
131 };
132 
133 namespace Ui {
134  class GUI_Shutdown: public Ui_GUI_Shutdown {};
135 } // namespace Ui
136 
137 QT_END_NAMESPACE
138 
139 #endif // UI_GUI_SHUTDOWN_H
Ui::GUI_Shutdown
Definition: ui_GUI_Shutdown.h:134
Ui_GUI_Shutdown
Definition: ui_GUI_Shutdown.h:26