mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
Add a theme factory to YACReaderLibrary and theme the comic vine dialog
This commit is contained in:
@ -4,10 +4,12 @@
|
||||
#include <QtWidgets>
|
||||
|
||||
#include "scraper_checkbox.h"
|
||||
#include "themable.h"
|
||||
|
||||
class ScraperLineEdit;
|
||||
class QLabel;
|
||||
|
||||
class SearchSingleComic : public QWidget
|
||||
class SearchSingleComic : public QWidget, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
@ -24,5 +26,9 @@ private:
|
||||
// ScraperLineEdit *numberEdit;
|
||||
ScraperLineEdit *volumeEdit;
|
||||
ScraperCheckBox *exactMatchCheckBox;
|
||||
QLabel *label;
|
||||
|
||||
protected:
|
||||
void applyTheme() override;
|
||||
};
|
||||
#endif // SEARCH_SINGLE_COMIC_H
|
||||
|
||||
Reference in New Issue
Block a user