MythTV master
playlistview.h
Go to the documentation of this file.
1#ifndef PLAYLISTVIEW_H_
2#define PLAYLISTVIEW_H_
3
4// qt
5#include <QEvent>
6#include <QVector>
7
8// MythTV
10
11// mythmusic
12#include "musiccommon.h"
13
15class MythUIText;
16
18{
19 Q_OBJECT
20 public:
21 PlaylistView(MythScreenStack *parent, MythScreenType *parentScreen);
22 ~PlaylistView(void) override = default;
23
24 bool Create(void) override; // MythScreenType
25 bool keyPressEvent(QKeyEvent *event) override; // MusicCommon
26
27 protected:
28 void customEvent(QEvent *event) override; // MusicCommon
29};
30
31#endif
Screen in which all other widgets are contained and rendered.
List widget, displays list items in a variety of themeable arrangements and can trigger signals when ...
All purpose text widget, displays a text string.
Definition: mythuitext.h:29
void customEvent(QEvent *event) override
bool keyPressEvent(QKeyEvent *event) override
Key event handler.
PlaylistView(MythScreenStack *parent, MythScreenType *parentScreen)
bool Create(void) override
~PlaylistView(void) override=default