MythTV master
videopopups.h
Go to the documentation of this file.
1#ifndef VIDEOPOPUPS_H_
2#define VIDEOPOPUPS_H_
3
5
6class VideoMetadata;
7
10
12{
13 Q_OBJECT
14
15 public:
17 : MythScreenType(lparent, "videocastpopup"), m_metadata(metadata) {}
18
19 bool Create() override; // MythScreenType
20
21 private:
23};
24
26{
27 Q_OBJECT
28
29 public:
31 : MythScreenType(lparent, "videoplotpopup"), m_metadata(metadata) {}
32
33 bool Create() override; // MythScreenType
34
35 private:
37};
38
39#endif
VideoMetadata * m_metadata
Definition: videopopups.h:22
CastDialog(MythScreenStack *lparent, VideoMetadata *metadata)
Definition: videopopups.h:16
bool Create() override
Definition: videopopups.cpp:15
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 ...
PlotDialog(MythScreenStack *lparent, VideoMetadata *metadata)
Definition: videopopups.h:30
bool Create() override
Definition: videopopups.cpp:51
VideoMetadata * m_metadata
Definition: videopopups.h:36