From 6268f3ca09afef812cf288f323cacff22fbfcffc Mon Sep 17 00:00:00 2001 From: crupest Date: Thu, 4 Apr 2019 23:08:22 +0800 Subject: Finish refactor!!! --- include/cru/ui/controls/text_block.hpp | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 include/cru/ui/controls/text_block.hpp (limited to 'include/cru/ui/controls/text_block.hpp') diff --git a/include/cru/ui/controls/text_block.hpp b/include/cru/ui/controls/text_block.hpp new file mode 100644 index 00000000..45cd12b9 --- /dev/null +++ b/include/cru/ui/controls/text_block.hpp @@ -0,0 +1,39 @@ +#pragma once +#include "../no_child_control.hpp" + +#include + +namespace cru::ui::render { +class TextRenderObject; +} + +namespace cru::ui::controls { +class TextBlock : public NoChildControl { + public: + static constexpr auto control_type = L"TextBlock"; + + static TextBlock* Create() { return new TextBlock(); } + + protected: + TextBlock(); + + public: + TextBlock(const TextBlock& other) = delete; + TextBlock(TextBlock&& other) = delete; + TextBlock& operator=(const TextBlock& other) = delete; + TextBlock& operator=(TextBlock&& other) = delete; + ~TextBlock() override = default; + + std::wstring_view GetControlType() const override final { + return control_type; + } + + render::RenderObject* GetRenderObject() const override; + + std::wstring GetText() const; + void SetText(std::wstring text); + + private: + std::shared_ptr render_object_; +}; +} // namespace cru::ui::controls -- cgit v1.2.3