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,7 @@
#ifndef ROUNDEDCORNERSDIALOG_H
#define ROUNDEDCORNERSDIALOG_H
#include <QColor>
#include <QDialog>
namespace YACReader {
@ -12,6 +13,10 @@ public:
protected:
void paintEvent(QPaintEvent *) override;
void setBackgroundColor(const QColor &color);
private:
QColor m_backgroundColor { 255, 255, 255 };
};
}