MythTV master
importsettings.h
Go to the documentation of this file.
1#ifndef IMPORTSETTINGS_H
2#define IMPORTSETTINGS_H
3
10
12{
13 Q_OBJECT
14 public:
15 explicit ImportSettings(MythScreenStack *parent, const char *name = nullptr)
16 : MythScreenType(parent, name) {}
17 ~ImportSettings() override = default;
18
19 bool Create(void) override; // MythScreenType
20 bool keyPressEvent(QKeyEvent *event) override; // MythScreenType
21
22 private:
33
34 private slots:
35 void slotSave(void);
36
37};
38
39#endif // IMPORTSETTINGS_H
MythUITextEdit * m_postCDRipScript
MythUITextEdit * m_filenameTemplate
void slotSave(void)
MythUIButtonList * m_paranoiaLevel
MythUIButtonList * m_encoderType
MythUIButton * m_cancelButton
MythUICheckBox * m_noWhitespace
ImportSettings(MythScreenStack *parent, const char *name=nullptr)
bool Create(void) override
MythUICheckBox * m_ejectCD
MythUIButtonList * m_defaultRipQuality
~ImportSettings() override=default
MythUIButton * m_saveButton
bool keyPressEvent(QKeyEvent *event) override
Key event handler.
MythUICheckBox * m_mp3UseVBR
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 ...
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.