Sayonara Player
ui_GUI_Podcasts.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_Podcasts.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_PODCASTS_H
10 #define UI_GUI_PODCASTS_H
11 
12 #include <Gui/Utils/MenuTool/MenuToolButton.h>
13 #include <QtCore/QVariant>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QPushButton>
17 #include "Gui/Plugins/PlayerPluginBase.h"
18 #include "Gui/Utils/Widgets/ComboBox.h"
19 
20 QT_BEGIN_NAMESPACE
21 
23 {
24 public:
25  QGridLayout *gridLayout;
26  Gui::ComboBox *comboStream;
27  Gui::MenuToolButton *btnTool;
28  QPushButton *btnListen;
29 
30  void setupUi(PlayerPlugin::Base *GUI_Podcasts)
31  {
32  if (GUI_Podcasts->objectName().isEmpty())
33  GUI_Podcasts->setObjectName(QString::fromUtf8("GUI_Podcasts"));
34  GUI_Podcasts->resize(320, 74);
35  gridLayout = new QGridLayout(GUI_Podcasts);
36  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
37  comboStream = new Gui::ComboBox(GUI_Podcasts);
38  comboStream->setObjectName(QString::fromUtf8("comboStream"));
39  QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
40  sizePolicy.setHorizontalStretch(0);
41  sizePolicy.setVerticalStretch(0);
42  sizePolicy.setHeightForWidth(comboStream->sizePolicy().hasHeightForWidth());
43  comboStream->setSizePolicy(sizePolicy);
44  comboStream->setFocusPolicy(Qt::StrongFocus);
45 
46  gridLayout->addWidget(comboStream, 0, 0, 1, 1);
47 
48  btnTool = new Gui::MenuToolButton(GUI_Podcasts);
49  btnTool->setObjectName(QString::fromUtf8("btnTool"));
50  btnTool->setText(QString::fromUtf8("Menu"));
51 
52  gridLayout->addWidget(btnTool, 0, 1, 1, 1);
53 
54  btnListen = new QPushButton(GUI_Podcasts);
55  btnListen->setObjectName(QString::fromUtf8("btnListen"));
56  btnListen->setText(QString::fromUtf8("Listen"));
57 
58  gridLayout->addWidget(btnListen, 1, 0, 1, 2);
59 
60 
61  retranslateUi(GUI_Podcasts);
62 
63  QMetaObject::connectSlotsByName(GUI_Podcasts);
64  } // setupUi
65 
66  void retranslateUi(PlayerPlugin::Base *GUI_Podcasts)
67  {
68  (void)GUI_Podcasts;
69  } // retranslateUi
70 
71 };
72 
73 namespace Ui {
74  class GUI_Podcasts: public Ui_GUI_Podcasts {};
75 } // namespace Ui
76 
77 QT_END_NAMESPACE
78 
79 #endif // UI_GUI_PODCASTS_H
PlayerPlugin::Base
Definition: PlayerPluginBase.h:40
Gui::MenuToolButton
This is the little button you often see near comboboxes It opens up a menu when clicked....
Definition: MenuToolButton.h:42
Ui::GUI_Podcasts
Definition: ui_GUI_Podcasts.h:74
Ui_GUI_Podcasts
Definition: ui_GUI_Podcasts.h:23
GUI_Podcasts
Definition: GUI_Podcasts.h:30
Gui::ComboBox
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:35