MythTV master
ratingsettings.h
Go to the documentation of this file.
1#ifndef RATINGSETTINGS_H
2#define RATINGSETTINGS_H
3
7
8
10{
11 Q_OBJECT
12public:
13 explicit RatingSettings(MythScreenStack *parent, const char *name = nullptr)
14 : MythScreenType(parent, name) {}
15 ~RatingSettings() override = default;
16
17 bool Create(void) override; // MythScreenType
18
19private:
26
27private slots:
28 void slotSave(void);
29};
30
31#endif // RATINGSETTINGS_H
Screen in which all other widgets are contained and rendered.
A single button widget.
Definition: mythuibutton.h:22
A widget for offering a range of numerical values where only the the bounding values and interval are...
Definition: mythuispinbox.h:23
MythUISpinBox * m_lastPlayWeight
~RatingSettings() override=default
RatingSettings(MythScreenStack *parent, const char *name=nullptr)
MythUIButton * m_cancelButton
MythUISpinBox * m_playCountWeight
MythUISpinBox * m_ratingWeight
void slotSave(void)
MythUISpinBox * m_randomWeight
MythUIButton * m_saveButton
bool Create(void) override