Files
MuditaOS/module-gui/gui/widgets/TextFormat.cpp
Adam 07b243a084 Egd-3408 Rich text (#712)
* EGD-3408 gui::Text Rich text parser added with pugixml tree & tree walker

* EGD-3408 Fitted code in
2020-09-23 21:03:57 +02:00

14 lines
283 B
C++

#include "TextFormat.hpp"
#include "RawFont.hpp"
namespace gui
{
auto TextFormat::str() const -> std::string
{
std::string ret = font->getName();
ret += " color: ";
ret += std::to_string(color.intensity);
return ret;
}
} // namespace gui