mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
34 lines
535 B
C
34 lines
535 B
C
|
#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
|