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

@ -2,6 +2,7 @@
#define __CREATE_LIBRARY_DIALOG_H
#include "yacreader_libraries.h"
#include "themable.h"
#include <QDialog>
#include <QLabel>
@ -10,13 +11,17 @@
#include <QThread>
#include <QProgressBar>
class CreateLibraryDialog : public QDialog
class CreateLibraryDialog : public QDialog, protected Themable
{
Q_OBJECT
public:
CreateLibraryDialog(QWidget *parent = nullptr);
protected:
void applyTheme(const Theme &theme) override;
private:
QLabel *imgLabel;
QLabel *nameLabel;
QLabel *textLabel;
QLabel *message;