MythTV master
grabbersettings.h
Go to the documentation of this file.
1#ifndef GRABBERSETTINGS_H
2#define GRABBERSETTINGS_H
3
4// MythTV
11
14{
15 Q_OBJECT
16
17 public:
18
19 explicit GrabberSettings(MythScreenStack *parent, const char *name = nullptr)
20 : MythScreenType(parent, name) {}
21 ~GrabberSettings() override = default;
22
23 bool Create(void) override; // MythScreenType
24 bool keyPressEvent(QKeyEvent *event) override; // MythScreenType
25
26 private:
27 void Load(void) override; // MythScreenType
28 void Init(void) override; // MythScreenType
29
33
37
39
42
43 private slots:
44 void slotSave(void);
45};
46
47#endif
48
void Init(void) override
Used after calling Load() to assign data to widgets and other UI initilisation which is prohibited in...
~GrabberSettings() override=default
GrabberSettings(MythScreenStack *parent, const char *name=nullptr)
GrabberList m_movieGrabberList
GrabberList m_gameGrabberList
MythUIButton * m_okButton
void Load(void) override
Load data which will ultimately be displayed on-screen or used to determine what appears on-screen (S...
MythUIButtonList * m_gameGrabberButtonList
MythUICheckBox * m_dailyUpdatesCheck
bool keyPressEvent(QKeyEvent *event) override
Key event handler.
bool Create(void) override
GrabberList m_tvGrabberList
MythUIButtonList * m_tvGrabberButtonList
MythUIButtonList * m_movieGrabberButtonList
MythUIButton * m_cancelButton
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...
QList< MetaGrabberScript > GrabberList