diff options
author | crupest <crupest@outlook.com> | 2020-11-10 15:12:19 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-10 15:12:19 +0800 |
commit | 02ed6999e9db0c20c3f55ab9c695f939aacb110c (patch) | |
tree | 10b4f1cf2d8956ed5dcdd5580eadc64d0d5dbd0d /src/ui/controls/TextBlock.cpp | |
parent | 460a45df8be4613053c6a097d9c699c70dbe1a2c (diff) | |
download | cru-02ed6999e9db0c20c3f55ab9c695f939aacb110c.tar.gz cru-02ed6999e9db0c20c3f55ab9c695f939aacb110c.tar.bz2 cru-02ed6999e9db0c20c3f55ab9c695f939aacb110c.zip |
...
Diffstat (limited to 'src/ui/controls/TextBlock.cpp')
-rw-r--r-- | src/ui/controls/TextBlock.cpp | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/ui/controls/TextBlock.cpp b/src/ui/controls/TextBlock.cpp index 9ce99ab6..1a432582 100644 --- a/src/ui/controls/TextBlock.cpp +++ b/src/ui/controls/TextBlock.cpp @@ -7,10 +7,17 @@ #include "cru/ui/render/TextRenderObject.hpp" namespace cru::ui::controls { -using render::CanvasRenderObject; -using render::StackLayoutRenderObject; using render::TextRenderObject; +TextBlock* TextBlock::Create() { return new TextBlock(); } + +TextBlock* TextBlock::Create(std::u16string text, bool selectable) { + auto c = new TextBlock(); + c->SetText(text); + c->SetSelectable(selectable); + return c; +} + TextBlock::TextBlock() { const auto theme_resources = UiManager::GetInstance()->GetThemeResources(); @@ -21,7 +28,9 @@ TextBlock::TextBlock() { text_render_object_->SetAttachedControl(this); service_ = std::make_unique<TextControlService<TextBlock>>(this); - service_->SetEnabled(true); + + service_->SetEnabled(false); + service_->SetEditable(false); } TextBlock::~TextBlock() = default; @@ -36,6 +45,10 @@ void TextBlock::SetText(std::u16string text) { service_->SetText(std::move(text)); } +bool TextBlock::IsSelectable() const { return service_->IsEnabled(); } + +void TextBlock::SetSelectable(bool value) { service_->SetEnabled(value); } + gsl::not_null<render::TextRenderObject*> TextBlock::GetTextRenderObject() { return text_render_object_.get(); } |