Files
yacreader/YACReaderLibrary/comic_vine/scraper_checkbox.h
luisangelsm edd5bbc69c Make Themable pass the current Theme through applyTheme
This reduces boilerplate code and remove the ThemeManager dependency at Thamable subclasses level.
2026-02-19 18:06:31 +01:00

18 lines
335 B
C++

#ifndef SCRAPER_CHECKBOX_H
#define SCRAPER_CHECKBOX_H
#include <QCheckBox>
#include "themable.h"
class ScraperCheckBox : public QCheckBox, protected Themable
{
public:
ScraperCheckBox(const QString &text, QWidget *parent = nullptr);
protected:
void applyTheme(const Theme &theme) override;
};
#endif // SCRAPER_CHECKBOX_H