nheko/include/ui/ThemeManager.h

31 lines
463 B
C
Raw Normal View History

#pragma once
2017-04-06 01:06:42 +02:00
#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;
}