diff options
Diffstat (limited to 'CruUI/ui/controls/text_block.h')
-rw-r--r-- | CruUI/ui/controls/text_block.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CruUI/ui/controls/text_block.h b/CruUI/ui/controls/text_block.h index dce83427..b05e7ff2 100644 --- a/CruUI/ui/controls/text_block.h +++ b/CruUI/ui/controls/text_block.h @@ -1,6 +1,7 @@ #pragma once #include <memory> +#include <optional> #include "ui/control.h" @@ -86,6 +87,20 @@ namespace cru void RemoveTextLayoutHandler(const TextLayoutHandlerPtr& handler); + bool IsSelectable() const + { + return is_selectable_; + } + + void SetSelectable(bool is_selectable); + + std::optional<TextRange> GetSelectedRange() const + { + return selected_range_; + } + + void SetSelectedRange(std::optional<TextRange> text_range); + protected: void OnSizeChangedCore(events::SizeChangedEventArgs& args) override final; void OnDraw(ID2D1DeviceContext* device_context) override; @@ -114,6 +129,8 @@ namespace cru Vector<TextLayoutHandlerPtr> text_layout_handlers_; + bool is_selectable_ = false; + bool is_selecting_ = false; unsigned mouse_down_position_ = 0; std::optional<TextRange> selected_range_ = std::nullopt; |