summary refs log tree commit diff
path: root/src/ui/ThemeManager.cpp
blob: 7baed1f3bc91123340bd19a465da0ff0ee63299e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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);
}