mirror of
https://github.com/YACReader/yacreader
synced 2026-03-02 02:43:04 -05:00
Add a theme factory to YACReaderLibrary and theme the comic vine dialog
This commit is contained in:
@ -3,11 +3,12 @@
|
||||
|
||||
#include <QtWidgets>
|
||||
#include "scraper_checkbox.h"
|
||||
#include "themable.h"
|
||||
|
||||
class ScraperLineEdit;
|
||||
class ScraperCheckBox;
|
||||
|
||||
class SearchVolume : public QWidget
|
||||
class SearchVolume : public QWidget, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
@ -20,6 +21,10 @@ public:
|
||||
private:
|
||||
ScraperLineEdit *volumeEdit;
|
||||
ScraperCheckBox *exactMatchCheckBox;
|
||||
QLabel *label;
|
||||
|
||||
protected:
|
||||
void applyTheme() override;
|
||||
};
|
||||
|
||||
#endif // SEARCH_VOLUME_H
|
||||
|
||||
Reference in New Issue
Block a user