mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
This reduces boilerplate code and remove the ThemeManager dependency at Thamable subclasses level.
19 lines
346 B
C++
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
|