// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "ui/UISubAlignableElement.hpp" #include "display/font/TrueTypeTexture.hpp" namespace Dawn { class UILabel final : public UISubAlignableElement { private: std::shared_ptr texture = nullptr; std::wstring text = L"Hello World"; protected: void getSelfQuads(UICanvas &ctx) override; public: bool_t wordWrap = true; struct Color color = COLOR_WHITE; float_t getContentWidth() override; float_t getContentHeight() override; /** * Returns the font used for this label. * * @return The font used for this label. */ std::shared_ptr getFont(); /** * Returns the text used for this label. * * @return The text used for this label. */ std::wstring getText(); /** * Sets the font to use for this label. * * @param texture TrueType texture to use for this label. */ void setFont(std::shared_ptr texture); /** * Sets the text to use for this label. * * @param text The text to use for this label. */ void setText(const std::wstring &text); }; }