mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
30 lines
553 B
C++
30 lines
553 B
C++
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QCommonStyle>
|
|
|
|
class ThemeManager : public QCommonStyle
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
inline static ThemeManager &instance();
|
|
|
|
QColor themeColor(const QString &key) const;
|
|
|
|
private:
|
|
ThemeManager();
|
|
|
|
ThemeManager(ThemeManager const &);
|
|
void operator=(ThemeManager const &);
|
|
};
|
|
|
|
inline ThemeManager &
|
|
ThemeManager::instance()
|
|
{
|
|
static ThemeManager instance;
|
|
return instance;
|
|
}
|