#include "fontmanager.hpp" #include namespace chatterino { FontManager::FontManager() : currentFontFamily("/appearance/currentFontFamily", "Arial") , currentFontSize("/appearance/currentFontSize", 14) , currentFont(this->currentFontFamily.getValue().c_str(), currentFontSize.getValue()) { this->currentFontFamily.getValueChangedSignal().connect([this](const std::string &newValue) { this->currentFont.setFamily(newValue.c_str()); // this->fontChanged.invoke(); }); this->currentFontSize.getValueChangedSignal().connect([this](const int &newValue) { this->currentFont.setSize(newValue); // this->fontChanged.invoke(); }); } QFont &FontManager::getFont(Type type) { return this->currentFont.getFont(type); } QFontMetrics &FontManager::getFontMetrics(Type type) { return this->currentFont.getFontMetrics(type); } FontManager::FontData &FontManager::Font::getFontData(Type type) { switch (type) { case Small: return this->small; case Medium: return this->medium; case MediumBold: return this->mediumBold; case MediumItalic: return this->mediumItalic; case Large: return this->large; case VeryLarge: return this->veryLarge; default: qDebug() << "Unknown font type:" << type << ", defaulting to medium"; return this->medium; } } QFont &FontManager::Font::getFont(Type type) { return this->getFontData(type).font; } QFontMetrics &FontManager::Font::getFontMetrics(Type type) { return this->getFontData(type).metrics; } } // namespace chatterino