9 #ifndef UI_GUI_PLAYLISTCHOOSER_H 10 #define UI_GUI_PLAYLISTCHOOSER_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QApplication> 14 #include <QtWidgets/QGridLayout> 15 #include "GUI/Utils/Widgets/ComboBox.h" 16 #include "Interfaces/PlayerPlugin/PlayerPluginBase.h" 23 QGridLayout *gridLayout;
32 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
33 gridLayout->setVerticalSpacing(5);
34 gridLayout->setContentsMargins(-1, 5, -1, 2);
36 combo_playlists->setObjectName(QStringLiteral(
"combo_playlists"));
37 QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
38 sizePolicy.setHorizontalStretch(0);
39 sizePolicy.setVerticalStretch(0);
40 sizePolicy.setHeightForWidth(combo_playlists->sizePolicy().hasHeightForWidth());
41 combo_playlists->setSizePolicy(sizePolicy);
42 combo_playlists->setFocusPolicy(Qt::ClickFocus);
44 gridLayout->addWidget(combo_playlists, 0, 0, 1, 1);
49 combo_playlists->setCurrentIndex(-1);
68 #endif // UI_GUI_PLAYLISTCHOOSER_H Definition: ui_GUI_PlaylistChooser.h:20
Definition: PlayerPluginBase.h:40
Definition: ui_GUI_PlaylistChooser.h:63
Definition: GUI_PlaylistChooser.h:32
Definition: ComboBox.h:31