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