nheko/src/ui/ThemeManager.cc
Konstantinos Sideris c6e1068e0e Lint
2017-10-23 00:19:35 +03:00

20 lines
338 B
C++

#include <QFontDatabase>
#include "ThemeManager.h"
ThemeManager::ThemeManager() { setTheme(new Theme); }
void
ThemeManager::setTheme(Theme *theme)
{
theme_ = theme;
theme_->setParent(this);
}
QColor
ThemeManager::themeColor(const QString &key) const
{
Q_ASSERT(theme_);
return theme_->getColor(key);
}