Sayonara Player
ui_GUI_Stream.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_Stream.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_STREAM_H
10 #define UI_GUI_STREAM_H
11 
12 #include <GUI/Utils/MenuTool/MenuTool.h>
13 #include <QtCore/QVariant>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QLabel>
18 #include <QtWidgets/QLineEdit>
19 #include <QtWidgets/QPushButton>
20 #include <QtWidgets/QSpacerItem>
21 #include "GUI/Utils/Widgets/ComboBox.h"
22 #include "Interfaces/PlayerPlugin/PlayerPluginBase.h"
23 
24 QT_BEGIN_NAMESPACE
25 
27 {
28 public:
29  QGridLayout *gridLayout;
30  Gui::ComboBox *combo_stream;
31  QHBoxLayout *horizontalLayout;
32  MenuToolButton *btn_tool;
33  QSpacerItem *horizontalSpacer;
34  QPushButton *btn_play;
35  QLabel *lab_listen;
36  QLineEdit *le_url;
37 
38  void setupUi(PlayerPlugin::Base *GUI_Stream)
39  {
40  if (GUI_Stream->objectName().isEmpty())
41  GUI_Stream->setObjectName(QStringLiteral("GUI_Stream"));
42  GUI_Stream->resize(285, 120);
43  gridLayout = new QGridLayout(GUI_Stream);
44  gridLayout->setObjectName(QStringLiteral("gridLayout"));
45  combo_stream = new Gui::ComboBox(GUI_Stream);
46  combo_stream->setObjectName(QStringLiteral("combo_stream"));
47  combo_stream->setFocusPolicy(Qt::StrongFocus);
48  combo_stream->setEditable(true);
49 
50  gridLayout->addWidget(combo_stream, 1, 0, 1, 3);
51 
52  horizontalLayout = new QHBoxLayout();
53  horizontalLayout->setSpacing(6);
54  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
55  btn_tool = new MenuToolButton(GUI_Stream);
56  btn_tool->setObjectName(QStringLiteral("btn_tool"));
57  btn_tool->setText(QStringLiteral("Menu"));
58 
59  horizontalLayout->addWidget(btn_tool);
60 
61  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
62 
63  horizontalLayout->addItem(horizontalSpacer);
64 
65  btn_play = new QPushButton(GUI_Stream);
66  btn_play->setObjectName(QStringLiteral("btn_play"));
67 
68  horizontalLayout->addWidget(btn_play);
69 
70  lab_listen = new QLabel(GUI_Stream);
71  lab_listen->setObjectName(QStringLiteral("lab_listen"));
72  lab_listen->setText(QStringLiteral("Listen"));
73 
74  horizontalLayout->addWidget(lab_listen);
75 
76 
77  gridLayout->addLayout(horizontalLayout, 3, 0, 1, 3);
78 
79  le_url = new QLineEdit(GUI_Stream);
80  le_url->setObjectName(QStringLiteral("le_url"));
81  le_url->setFocusPolicy(Qt::ClickFocus);
82 
83  gridLayout->addWidget(le_url, 2, 0, 1, 3);
84 
85 
86  retranslateUi(GUI_Stream);
87 
88  QMetaObject::connectSlotsByName(GUI_Stream);
89  } // setupUi
90 
91  void retranslateUi(PlayerPlugin::Base *GUI_Stream)
92  {
93  btn_play->setText(QString());
94  Q_UNUSED(GUI_Stream);
95  } // retranslateUi
96 
97 };
98 
99 namespace Ui {
100  class GUI_Stream: public Ui_GUI_Stream {};
101 } // namespace Ui
102 
103 QT_END_NAMESPACE
104 
105 #endif // UI_GUI_STREAM_H
Definition: PlayerPluginBase.h:40
Definition: GUI_Stream.h:28
Definition: ComboBox.h:31
This is the little button you often see near comboboxes It opens up a menu when clicked....
Definition: MenuTool.h:36
Definition: ui_GUI_Stream.h:100
Definition: ui_GUI_Stream.h:26