Initial commit of BudgetPro

This commit is contained in:
Javi
2026-05-24 23:21:33 +02:00
commit f3096faee6
575 changed files with 90288 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef DRAWTHEMEMANAGER_H
#define DRAWTHEMEMANAGER_H
#include <QObject>
class DrawThemeManager : public QObject {
Q_OBJECT
DrawThemeManager(QObject* parent = 0);
public:
static DrawThemeManager* instance();
signals:
void themeChanged(QString themeName);
public slots:
QString getCurrentTheme();
void setCurrentTheme(QString themeName);
QString getQssForWidget(QString className);
void updateQss();
private:
static DrawThemeManager* m_drawTheme;
QString m_currentTheme = "light";
};
#endif // DRAWTHEMEMANAGER_H