mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
#ifndef OPENMW_WIDGETS_WRAPPER_H
|
|
#define OPENMW_WIDGETS_WRAPPER_H
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
#include <algorithm>
|
|
|
|
namespace Gui
|
|
{
|
|
template <class T>
|
|
class FontWrapper : public T
|
|
{
|
|
public:
|
|
void setFontName(const std::string& name) override
|
|
{
|
|
T::setFontName(name);
|
|
T::setPropertyOverride("FontHeight", getFontSize());
|
|
}
|
|
|
|
protected:
|
|
void setPropertyOverride(const std::string& _key, const std::string& _value) override
|
|
{
|
|
T::setPropertyOverride(_key, _value);
|
|
|
|
// There is a bug in MyGUI: when it initializes the FontName property, it reset the font height.
|
|
// We should restore it.
|
|
if (_key == "FontName")
|
|
{
|
|
T::setPropertyOverride("FontHeight", getFontSize());
|
|
}
|
|
}
|
|
|
|
private:
|
|
std::string getFontSize()
|
|
{
|
|
// Note: we can not use the FontLoader here, so there is a code duplication a bit.
|
|
static const std::string fontSize
|
|
= std::to_string(std::clamp(Settings::Manager::getInt("font size", "GUI"), 12, 18));
|
|
return fontSize;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|