mirror of
https://github.com/YACReader/yacreader
synced 2026-03-02 19:00:04 -05:00
Add a theme factory to YACReaderLibrary and theme the comic vine dialog
This commit is contained in:
@ -3,9 +3,12 @@
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QRadioButton;
|
||||
#include "themable.h"
|
||||
|
||||
class SeriesQuestion : public QWidget
|
||||
class QRadioButton;
|
||||
class QLabel;
|
||||
|
||||
class SeriesQuestion : public QWidget, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@ -15,8 +18,12 @@ public:
|
||||
void setYes(bool yes = true);
|
||||
|
||||
private:
|
||||
QLabel *questionLabel;
|
||||
QRadioButton *yes;
|
||||
QRadioButton *no;
|
||||
|
||||
protected:
|
||||
void applyTheme() override;
|
||||
};
|
||||
|
||||
#endif // SERIES_QUESTION_H
|
||||
|
||||
Reference in New Issue
Block a user