Sayonara Player
ui_GUI_PlaylistChooser.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_PlaylistChooser.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_PLAYLISTCHOOSER_H
10 #define UI_GUI_PLAYLISTCHOOSER_H
11 
12 #include <Gui/Utils/MenuTool/MenuToolButton.h>
13 #include <QtCore/QVariant>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QGridLayout>
16 #include "Gui/Plugins/PlayerPluginBase.h"
17 #include "Gui/Utils/Widgets/ComboBox.h"
18 
19 QT_BEGIN_NAMESPACE
20 
22 {
23 public:
24  QGridLayout *gridLayout;
25  Gui::ComboBox *combo_playlists;
26  Gui::MenuToolButton *btn_actions;
27 
29  {
30  if (GUI_PlaylistChooser->objectName().isEmpty())
31  GUI_PlaylistChooser->setObjectName(QString::fromUtf8("GUI_PlaylistChooser"));
32  GUI_PlaylistChooser->resize(284, 40);
33  gridLayout = new QGridLayout(GUI_PlaylistChooser);
34  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
35  gridLayout->setVerticalSpacing(5);
36  gridLayout->setContentsMargins(-1, 5, -1, 2);
37  combo_playlists = new Gui::ComboBox(GUI_PlaylistChooser);
38  combo_playlists->setObjectName(QString::fromUtf8("combo_playlists"));
39  QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
40  sizePolicy.setHorizontalStretch(0);
41  sizePolicy.setVerticalStretch(0);
42  sizePolicy.setHeightForWidth(combo_playlists->sizePolicy().hasHeightForWidth());
43  combo_playlists->setSizePolicy(sizePolicy);
44  combo_playlists->setFocusPolicy(Qt::StrongFocus);
45 
46  gridLayout->addWidget(combo_playlists, 0, 0, 1, 1);
47 
48  btn_actions = new Gui::MenuToolButton(GUI_PlaylistChooser);
49  btn_actions->setObjectName(QString::fromUtf8("btn_actions"));
50  btn_actions->setText(QString::fromUtf8("Menu"));
51 
52  gridLayout->addWidget(btn_actions, 0, 1, 1, 1);
53 
54 
55  retranslateUi(GUI_PlaylistChooser);
56 
57  combo_playlists->setCurrentIndex(-1);
58 
59 
60  QMetaObject::connectSlotsByName(GUI_PlaylistChooser);
61  } // setupUi
62 
63  void retranslateUi(PlayerPlugin::Base *GUI_PlaylistChooser)
64  {
65  Q_UNUSED(GUI_PlaylistChooser);
66  } // retranslateUi
67 
68 };
69 
70 namespace Ui {
72 } // namespace Ui
73 
74 QT_END_NAMESPACE
75 
76 #endif // UI_GUI_PLAYLISTCHOOSER_H
PlayerPlugin::Base
Definition: PlayerPluginBase.h:38
Gui::MenuToolButton
This is the little button you often see near comboboxes It opens up a menu when clicked....
Definition: MenuToolButton.h:38
GUI_PlaylistChooser
Definition: GUI_PlaylistChooser.h:32
Ui::GUI_PlaylistChooser
Definition: ui_GUI_PlaylistChooser.h:71
Ui_GUI_PlaylistChooser
Definition: ui_GUI_PlaylistChooser.h:21
Gui::ComboBox
A custom combobox which also uses the Gui::ComboBoxDelegate.
Definition: ComboBox.h:33