blob: bb0b627494f130ddb2416742d3a96236715c636f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 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;
}
|