mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
31 lines
534 B
C++
31 lines
534 B
C++
#pragma once
|
|
|
|
#include <QCommonStyle>
|
|
|
|
#include "Theme.h"
|
|
|
|
class ThemeManager : public QCommonStyle
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
inline static ThemeManager &instance();
|
|
|
|
void setTheme(Theme *theme);
|
|
QColor themeColor(const QString &key) const;
|
|
|
|
private:
|
|
ThemeManager();
|
|
|
|
ThemeManager(ThemeManager const &);
|
|
void operator=(ThemeManager const &);
|
|
|
|
Theme *theme_;
|
|
};
|
|
|
|
inline ThemeManager &
|
|
ThemeManager::instance()
|
|
{
|
|
static ThemeManager instance;
|
|
return instance;
|
|
}
|