MythTV  master
playersettings.h
Go to the documentation of this file.
1 #ifndef PLAYERSETTINGS_H
2 #define PLAYERSETTINGS_H
3 
8 
9 class PlayerSettings : public MythScreenType
10 {
11  Q_OBJECT
12 public:
13  explicit PlayerSettings(MythScreenStack *parent, const char *name = nullptr)
14  : MythScreenType(parent, name) {}
15  ~PlayerSettings() override = default;
16 
17  bool Create(void) override; // MythScreenType
18 
19 private:
28  MythUIButton *m_cancelButton {nullptr};
29 
30 private slots:
31  void slotSave(void);
32 
33 };
34 
35 #endif // PLAYERSETTINGS_H
PlayerSettings::m_autoLookupCD
MythUICheckBox * m_autoLookupCD
Definition: playersettings.h:25
PlayerSettings::slotSave
void slotSave(void)
Definition: videoplayersettings.cpp:110
PlayerSettings::m_resumeModeRadio
MythUIButtonList * m_resumeModeRadio
Definition: playersettings.h:22
PlayerSettings::m_saveButton
MythUIButton * m_saveButton
Definition: playersettings.h:27
MythScreenStack
Definition: mythscreenstack.h:16
MythScreenType
Screen in which all other widgets are contained and rendered.
Definition: mythscreentype.h:45
PlayerSettings::Create
bool Create(void) override
Definition: videoplayersettings.cpp:17
mythuibuttonlist.h
PlayerSettings::PlayerSettings
PlayerSettings(MythScreenStack *parent, const char *name=nullptr)
Definition: playersettings.h:13
MythUIButton
A single button widget.
Definition: mythuibutton.h:21
PlayerSettings::~PlayerSettings
~PlayerSettings() override=default
PlayerSettings::m_exitAction
MythUIButtonList * m_exitAction
Definition: playersettings.h:23
MythUICheckBox
A checkbox widget supporting three check states - on,off,half and two conditions - selected and unsel...
Definition: mythuicheckbox.h:15
PlayerSettings::m_resumeMode
MythUIButtonList * m_resumeMode
Definition: playersettings.h:20
PlayerSettings::m_resumeModeEditor
MythUIButtonList * m_resumeModeEditor
Definition: playersettings.h:21
PlayerSettings::m_cancelButton
MythUIButton * m_cancelButton
Definition: videoplayersettings.h:36
PlayerSettings::m_jumpAction
MythUIButtonList * m_jumpAction
Definition: playersettings.h:24
mythuibutton.h
mythuicheckbox.h
MythUIButtonList
List widget, displays list items in a variety of themeable arrangements and can trigger signals when ...
Definition: mythuibuttonlist.h:191
mythscreentype.h
PlayerSettings::m_autoPlayCD
MythUICheckBox * m_autoPlayCD
Definition: playersettings.h:26
PlayerSettings
Definition: videoplayersettings.h:11