Initial implementation of theming

This commit is contained in:
luisangelsm
2026-02-19 17:39:22 +01:00
parent ed28c94f66
commit 044176d6b7
303 changed files with 4634 additions and 2119 deletions

View File

@ -1,6 +1,8 @@
#ifndef IMPORT_COMICS_INFO_DIALOG_H
#define IMPORT_COMICS_INFO_DIALOG_H
#include "themable.h"
#include <QDialog>
#include <QDialog>
#include <QLabel>
@ -19,7 +21,7 @@ private:
void run() override;
};
class ImportComicsInfoDialog : public QDialog
class ImportComicsInfoDialog : public QDialog, protected Themable
{
Q_OBJECT
@ -28,7 +30,11 @@ public:
~ImportComicsInfoDialog();
QString dest;
protected:
void applyTheme(const Theme &theme) override;
private:
QLabel *imgLabel;
QLabel *nameLabel;
QLabel *textLabel;
QLabel *destLabel;