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.
34 lines
535 B
34 lines
535 B
8 years ago
|
#ifndef UI_THEME_MANAGER_H
|
||
|
#define UI_THEME_MANAGER_H
|
||
|
|
||
|
#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;
|
||
|
}
|
||
|
|
||
|
#endif // UI_THEME_MANAGER_H
|