Add a theme factory to YACReaderLibrary and theme the comic vine dialog

This commit is contained in:
luisangelsm
2026-01-14 19:58:43 +01:00
parent 1cb2f50057
commit 1bd4926b25
30 changed files with 740 additions and 178 deletions

View File

@ -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