nheko/src/ui/ThemeManager.h
Nicolas Werner a13f492e7d
Make clang-format <13 and clang-format >=13 behave the same
I think old clang-format is just buggy in those cases, so we should
reenable those blocks, once everyone has 13 or up.
2021-11-22 00:33:43 +01:00

31 lines
523 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;
}