forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
534 B
31 lines
534 B
#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;
|
|
}
|
|
|