Sayonara Player
ui_GUI_CssEditor.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_CssEditor.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_CSSEDITOR_H
10 #define UI_GUI_CSSEDITOR_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QCheckBox>
15 #include <QtWidgets/QDialog>
16 #include <QtWidgets/QFrame>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QHBoxLayout>
19 #include <QtWidgets/QLabel>
20 #include <QtWidgets/QPlainTextEdit>
21 #include <QtWidgets/QPushButton>
22 #include <QtWidgets/QSpacerItem>
23 
24 QT_BEGIN_NAMESPACE
25 
27 {
28 public:
29  QGridLayout *gridLayout;
30  QFrame *line;
31  QFrame *line_2;
32  QPlainTextEdit *te_css;
33  QHBoxLayout *horizontalLayout;
34  QSpacerItem *horizontalSpacer;
35  QPushButton *btn_cancel;
36  QPushButton *btn_undo;
37  QPushButton *btn_apply;
38  QPushButton *btn_save;
39  QHBoxLayout *horizontalLayout_2;
40  QLabel *lab_header;
41  QSpacerItem *horizontalSpacer_2;
42  QCheckBox *cb_darkMode;
43 
44  void setupUi(QDialog *GUI_CssEditor)
45  {
46  if (GUI_CssEditor->objectName().isEmpty())
47  GUI_CssEditor->setObjectName(QString::fromUtf8("GUI_CssEditor"));
48  GUI_CssEditor->resize(417, 325);
49  gridLayout = new QGridLayout(GUI_CssEditor);
50  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
51  line = new QFrame(GUI_CssEditor);
52  line->setObjectName(QString::fromUtf8("line"));
53  line->setFrameShape(QFrame::HLine);
54  line->setFrameShadow(QFrame::Sunken);
55 
56  gridLayout->addWidget(line, 2, 0, 1, 1);
57 
58  line_2 = new QFrame(GUI_CssEditor);
59  line_2->setObjectName(QString::fromUtf8("line_2"));
60  line_2->setFrameShape(QFrame::HLine);
61  line_2->setFrameShadow(QFrame::Sunken);
62 
63  gridLayout->addWidget(line_2, 4, 0, 1, 1);
64 
65  te_css = new QPlainTextEdit(GUI_CssEditor);
66  te_css->setObjectName(QString::fromUtf8("te_css"));
67  QFont font;
68  font.setFamily(QString::fromUtf8("DejaVu Sans Mono"));
69  te_css->setFont(font);
70  te_css->setTabStopWidth(10);
71 
72  gridLayout->addWidget(te_css, 3, 0, 1, 1);
73 
74  horizontalLayout = new QHBoxLayout();
75  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
76  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
77 
78  horizontalLayout->addItem(horizontalSpacer);
79 
80  btn_cancel = new QPushButton(GUI_CssEditor);
81  btn_cancel->setObjectName(QString::fromUtf8("btn_cancel"));
82  btn_cancel->setText(QString::fromUtf8("Cancel"));
83 
84  horizontalLayout->addWidget(btn_cancel);
85 
86  btn_undo = new QPushButton(GUI_CssEditor);
87  btn_undo->setObjectName(QString::fromUtf8("btn_undo"));
88  btn_undo->setText(QString::fromUtf8("Undo"));
89 
90  horizontalLayout->addWidget(btn_undo);
91 
92  btn_apply = new QPushButton(GUI_CssEditor);
93  btn_apply->setObjectName(QString::fromUtf8("btn_apply"));
94  btn_apply->setText(QString::fromUtf8("Apply"));
95 
96  horizontalLayout->addWidget(btn_apply);
97 
98  btn_save = new QPushButton(GUI_CssEditor);
99  btn_save->setObjectName(QString::fromUtf8("btn_save"));
100  btn_save->setText(QString::fromUtf8("Save"));
101 
102  horizontalLayout->addWidget(btn_save);
103 
104 
105  gridLayout->addLayout(horizontalLayout, 5, 0, 1, 1);
106 
107  horizontalLayout_2 = new QHBoxLayout();
108  horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
109  lab_header = new QLabel(GUI_CssEditor);
110  lab_header->setObjectName(QString::fromUtf8("lab_header"));
111  QFont font1;
112  font1.setBold(true);
113  font1.setItalic(true);
114  font1.setWeight(75);
115  lab_header->setFont(font1);
116 
117  horizontalLayout_2->addWidget(lab_header);
118 
119  horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
120 
121  horizontalLayout_2->addItem(horizontalSpacer_2);
122 
123  cb_darkMode = new QCheckBox(GUI_CssEditor);
124  cb_darkMode->setObjectName(QString::fromUtf8("cb_darkMode"));
125 
126  horizontalLayout_2->addWidget(cb_darkMode);
127 
128 
129  gridLayout->addLayout(horizontalLayout_2, 1, 0, 1, 1);
130 
131 
132  retranslateUi(GUI_CssEditor);
133 
134  QMetaObject::connectSlotsByName(GUI_CssEditor);
135  } // setupUi
136 
137  void retranslateUi(QDialog *GUI_CssEditor)
138  {
139  lab_header->setText(QCoreApplication::translate("GUI_CssEditor", "Edit style sheet", nullptr));
140  cb_darkMode->setText(QCoreApplication::translate("GUI_CssEditor", "Dark mode", nullptr));
141  (void)GUI_CssEditor;
142  } // retranslateUi
143 
144 };
145 
146 namespace Ui {
147  class GUI_CssEditor: public Ui_GUI_CssEditor {};
148 } // namespace Ui
149 
150 QT_END_NAMESPACE
151 
152 #endif // UI_GUI_CSSEDITOR_H
GUI_CssEditor
Definition: GUI_CssEditor.h:11
Ui::GUI_CssEditor
Definition: ui_GUI_CssEditor.h:147
Ui_GUI_CssEditor
Definition: ui_GUI_CssEditor.h:27