Files
yacreader/YACReaderLibrary/comic_vine/scraper_tableview.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

19 lines
346 B
C++

#ifndef SCRAPPER_TABLEVIEW_H
#define SCRAPPER_TABLEVIEW_H
#include <QTableView>
#include "themable.h"
class ScraperTableView : public QTableView, protected Themable
{
Q_OBJECT
public:
explicit ScraperTableView(QWidget *parent = nullptr);
protected:
void applyTheme(const Theme &theme) override;
};
#endif // SCRAPPER_TABLEVIEW_H