mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
18 lines
317 B
C++
18 lines
317 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() override;
|
|
};
|
|
|
|
#endif // SCRAPER_CHECKBOX_H
|