MythTV master
generalsettings.h
Go to the documentation of this file.
1#ifndef GENERALSETTINGS_H
2#define GENERALSETTINGS_H
3
4// MythTV
11
13{
14 Q_OBJECT
15 public:
16 explicit GeneralSettings(MythScreenStack *parent, const char *name = nullptr)
17 : MythScreenType(parent, name) {}
18 ~GeneralSettings() override = default;
19
20 bool Create(void) override; // MythScreenType
21
22 private:
32
33 private slots:
34 void slotSave(void);
35
36 void slotResetDB(void) const;
37 static void slotDoResetDB(bool ok);
38};
39
40#endif // GENERALSETTINGS_H
MythUIButton * m_cancelButton
MythUIButton * m_resetDBButton
GeneralSettings(MythScreenStack *parent, const char *name=nullptr)
MythUIButton * m_saveButton
MythUITextEdit * m_musicAudioDevice
bool Create(void) override
~GeneralSettings() override=default
MythUITextEdit * m_nonID3FileNameFormat
void slotResetDB(void) const
MythUITextEdit * m_musicCDDevice
MythUICheckBox * m_allowTagWriting
MythUICheckBox * m_ignoreID3Tags
MythUICheckBox * m_musicDefaultUpmix
static void slotDoResetDB(bool ok)
Screen in which all other widgets are contained and rendered.
A single button widget.
Definition: mythuibutton.h:22
A checkbox widget supporting three check states - on,off,half and two conditions - selected and unsel...
A text entry and edit widget.