Sayonara Player
ui_GUI_TagFromPath.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_TagFromPath.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_TAGFROMPATH_H
10 #define UI_GUI_TAGFROMPATH_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QFrame>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QHBoxLayout>
19 #include <QtWidgets/QHeaderView>
20 #include <QtWidgets/QLabel>
21 #include <QtWidgets/QListWidget>
22 #include <QtWidgets/QPushButton>
23 #include <QtWidgets/QSpacerItem>
24 #include <QtWidgets/QStackedWidget>
25 #include <QtWidgets/QWidget>
26 #include "GUI/TagEdit/TagLineEdit.h"
27 
28 QT_BEGIN_NAMESPACE
29 
31 {
32 public:
33  QGridLayout *gridLayout;
34  QLabel *label_8;
35  TagLineEdit *le_tag;
36  QPushButton *btn_tag_help;
37  QHBoxLayout *horizontalLayout_3;
38  QPushButton *btn_title;
39  QPushButton *btn_album;
40  QPushButton *btn_artist;
41  QPushButton *btn_year;
42  QPushButton *btn_disc_nr;
43  QPushButton *btn_track_nr;
44  QFrame *line_3;
45  QLabel *lab_tag_type;
46  QHBoxLayout *horizontalLayout_4;
47  QSpacerItem *horizontalSpacer_2;
48  QPushButton *btn_apply_tag_all;
49  QPushButton *btn_apply_tag;
50  QStackedWidget *sw_tag_from_path;
51  QWidget *page;
52  QGridLayout *gridLayout_4;
53  QLabel *lab_tag_from_path_warning;
54  QListWidget *lv_tag_from_path_files;
55  QWidget *page_2;
56  QGridLayout *gridLayout_5;
57  QSpacerItem *verticalSpacer_3;
58 
59  void setupUi(QWidget *GUI_TagFromPath)
60  {
61  if (GUI_TagFromPath->objectName().isEmpty())
62  GUI_TagFromPath->setObjectName(QStringLiteral("GUI_TagFromPath"));
63  GUI_TagFromPath->resize(914, 635);
64  gridLayout = new QGridLayout(GUI_TagFromPath);
65  gridLayout->setObjectName(QStringLiteral("gridLayout"));
66  label_8 = new QLabel(GUI_TagFromPath);
67  label_8->setObjectName(QStringLiteral("label_8"));
68 
69  gridLayout->addWidget(label_8, 0, 0, 1, 1);
70 
71  le_tag = new TagLineEdit(GUI_TagFromPath);
72  le_tag->setObjectName(QStringLiteral("le_tag"));
73  le_tag->setFocusPolicy(Qt::ClickFocus);
74 
75  gridLayout->addWidget(le_tag, 0, 1, 1, 1);
76 
77  btn_tag_help = new QPushButton(GUI_TagFromPath);
78  btn_tag_help->setObjectName(QStringLiteral("btn_tag_help"));
79  btn_tag_help->setFocusPolicy(Qt::NoFocus);
80 
81  gridLayout->addWidget(btn_tag_help, 1, 0, 1, 1);
82 
83  horizontalLayout_3 = new QHBoxLayout();
84  horizontalLayout_3->setSpacing(5);
85  horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3"));
86  btn_title = new QPushButton(GUI_TagFromPath);
87  btn_title->setObjectName(QStringLiteral("btn_title"));
88  btn_title->setFocusPolicy(Qt::ClickFocus);
89  btn_title->setText(QStringLiteral("Title"));
90  btn_title->setCheckable(true);
91 
92  horizontalLayout_3->addWidget(btn_title);
93 
94  btn_album = new QPushButton(GUI_TagFromPath);
95  btn_album->setObjectName(QStringLiteral("btn_album"));
96  btn_album->setFocusPolicy(Qt::ClickFocus);
97  btn_album->setText(QStringLiteral("Album"));
98  btn_album->setCheckable(true);
99 
100  horizontalLayout_3->addWidget(btn_album);
101 
102  btn_artist = new QPushButton(GUI_TagFromPath);
103  btn_artist->setObjectName(QStringLiteral("btn_artist"));
104  btn_artist->setFocusPolicy(Qt::ClickFocus);
105  btn_artist->setText(QStringLiteral("Artist"));
106  btn_artist->setCheckable(true);
107 
108  horizontalLayout_3->addWidget(btn_artist);
109 
110  btn_year = new QPushButton(GUI_TagFromPath);
111  btn_year->setObjectName(QStringLiteral("btn_year"));
112  btn_year->setFocusPolicy(Qt::ClickFocus);
113  btn_year->setText(QStringLiteral("Year"));
114  btn_year->setCheckable(true);
115 
116  horizontalLayout_3->addWidget(btn_year);
117 
118  btn_disc_nr = new QPushButton(GUI_TagFromPath);
119  btn_disc_nr->setObjectName(QStringLiteral("btn_disc_nr"));
120  btn_disc_nr->setFocusPolicy(Qt::ClickFocus);
121  btn_disc_nr->setCheckable(true);
122 
123  horizontalLayout_3->addWidget(btn_disc_nr);
124 
125  btn_track_nr = new QPushButton(GUI_TagFromPath);
126  btn_track_nr->setObjectName(QStringLiteral("btn_track_nr"));
127  btn_track_nr->setFocusPolicy(Qt::ClickFocus);
128  btn_track_nr->setText(QStringLiteral("# Track"));
129  btn_track_nr->setCheckable(true);
130 
131  horizontalLayout_3->addWidget(btn_track_nr);
132 
133 
134  gridLayout->addLayout(horizontalLayout_3, 1, 1, 1, 1);
135 
136  line_3 = new QFrame(GUI_TagFromPath);
137  line_3->setObjectName(QStringLiteral("line_3"));
138  line_3->setFrameShape(QFrame::HLine);
139  line_3->setFrameShadow(QFrame::Sunken);
140 
141  gridLayout->addWidget(line_3, 2, 0, 1, 2);
142 
143  lab_tag_type = new QLabel(GUI_TagFromPath);
144  lab_tag_type->setObjectName(QStringLiteral("lab_tag_type"));
145 
146  gridLayout->addWidget(lab_tag_type, 3, 0, 1, 1);
147 
148  horizontalLayout_4 = new QHBoxLayout();
149  horizontalLayout_4->setObjectName(QStringLiteral("horizontalLayout_4"));
150  horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
151 
152  horizontalLayout_4->addItem(horizontalSpacer_2);
153 
154  btn_apply_tag_all = new QPushButton(GUI_TagFromPath);
155  btn_apply_tag_all->setObjectName(QStringLiteral("btn_apply_tag_all"));
156  btn_apply_tag_all->setFocusPolicy(Qt::NoFocus);
157 
158  horizontalLayout_4->addWidget(btn_apply_tag_all);
159 
160  btn_apply_tag = new QPushButton(GUI_TagFromPath);
161  btn_apply_tag->setObjectName(QStringLiteral("btn_apply_tag"));
162  btn_apply_tag->setFocusPolicy(Qt::NoFocus);
163  btn_apply_tag->setText(QStringLiteral("Apply"));
164 
165  horizontalLayout_4->addWidget(btn_apply_tag);
166 
167 
168  gridLayout->addLayout(horizontalLayout_4, 3, 1, 1, 1);
169 
170  sw_tag_from_path = new QStackedWidget(GUI_TagFromPath);
171  sw_tag_from_path->setObjectName(QStringLiteral("sw_tag_from_path"));
172  page = new QWidget();
173  page->setObjectName(QStringLiteral("page"));
174  gridLayout_4 = new QGridLayout(page);
175  gridLayout_4->setObjectName(QStringLiteral("gridLayout_4"));
176  lab_tag_from_path_warning = new QLabel(page);
177  lab_tag_from_path_warning->setObjectName(QStringLiteral("lab_tag_from_path_warning"));
178  QFont font;
179  font.setBold(true);
180  font.setWeight(75);
181  lab_tag_from_path_warning->setFont(font);
182 
183  gridLayout_4->addWidget(lab_tag_from_path_warning, 0, 0, 1, 1);
184 
185  lv_tag_from_path_files = new QListWidget(page);
186  lv_tag_from_path_files->setObjectName(QStringLiteral("lv_tag_from_path_files"));
187 
188  gridLayout_4->addWidget(lv_tag_from_path_files, 1, 0, 1, 1);
189 
190  sw_tag_from_path->addWidget(page);
191  page_2 = new QWidget();
192  page_2->setObjectName(QStringLiteral("page_2"));
193  gridLayout_5 = new QGridLayout(page_2);
194  gridLayout_5->setObjectName(QStringLiteral("gridLayout_5"));
195  verticalSpacer_3 = new QSpacerItem(20, 270, QSizePolicy::Minimum, QSizePolicy::Expanding);
196 
197  gridLayout_5->addItem(verticalSpacer_3, 0, 0, 1, 1);
198 
199  sw_tag_from_path->addWidget(page_2);
200 
201  gridLayout->addWidget(sw_tag_from_path, 4, 0, 1, 2);
202 
203 
204  retranslateUi(GUI_TagFromPath);
205 
206  sw_tag_from_path->setCurrentIndex(0);
207 
208 
209  QMetaObject::connectSlotsByName(GUI_TagFromPath);
210  } // setupUi
211 
212  void retranslateUi(QWidget *GUI_TagFromPath)
213  {
214  label_8->setText(QApplication::translate("GUI_TagFromPath", "Expression", Q_NULLPTR));
215  btn_tag_help->setText(QApplication::translate("GUI_TagFromPath", "?", Q_NULLPTR));
216  btn_disc_nr->setText(QApplication::translate("GUI_TagFromPath", "Disc Nr", Q_NULLPTR));
217  lab_tag_type->setText(QString());
218  btn_apply_tag_all->setText(QApplication::translate("GUI_TagFromPath", "Apply to all", Q_NULLPTR));
219  lab_tag_from_path_warning->setText(QApplication::translate("GUI_TagFromPath", "Warning", Q_NULLPTR));
220  Q_UNUSED(GUI_TagFromPath);
221  } // retranslateUi
222 
223 };
224 
225 namespace Ui {
227 } // namespace Ui
228 
229 QT_END_NAMESPACE
230 
231 #endif // UI_GUI_TAGFROMPATH_H
Definition: ui_GUI_TagFromPath.h:226
Definition: ui_GUI_SomaFM.h:208
The TagLineEdit class.
Definition: TagLineEdit.h:33
Definition: ui_GUI_TagFromPath.h:30
Definition: TagFromPath.h:41