Add a theme factory to YACReaderLibrary and theme the comic vine dialog

This commit is contained in:
luisangelsm
2026-01-14 19:58:43 +01:00
parent 1cb2f50057
commit 1bd4926b25
30 changed files with 740 additions and 178 deletions

View File

@ -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