blob: 52e227eb347a1de3d5e174a7a74e508d830efdba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#pragma once
#include "NoChildControl.h"
#include "../render/TextRenderObject.h"
#include "IContentBrushControl.h"
#include "IFontControl.h"
#include "TextHostControlService.h"
#include "cru/platform/graphics/Brush.h"
#include "cru/platform/graphics/Font.h"
namespace cru::ui::controls {
class CRU_UI_API TextBlock : public NoChildControl,
public virtual ITextHostControl,
public virtual IFontControl,
public virtual IContentBrushControl {
public:
static constexpr StringView kControlType = u"TextBlock";
static std::unique_ptr<TextBlock> Create(String text,
bool selectable = false) {
auto c = std::make_unique<TextBlock>();
c->SetText(std::move(text));
c->SetSelectable(selectable);
return std::move(c);
}
public:
TextBlock();
TextBlock(const TextBlock& other) = delete;
TextBlock(TextBlock&& other) = delete;
TextBlock& operator=(const TextBlock& other) = delete;
TextBlock& operator=(TextBlock&& other) = delete;
~TextBlock() override;
String GetControlType() const final { return kControlType.ToString(); }
render::RenderObject* GetRenderObject() const override;
String GetText() const;
void SetText(String text);
bool IsSelectable() const;
void SetSelectable(bool value);
std::shared_ptr<platform::graphics::IBrush> GetTextBrush() const {
return text_render_object_->GetBrush();
}
void SetTextBrush(std::shared_ptr<platform::graphics::IBrush> brush) {
text_render_object_->SetBrush(std::move(brush));
}
void SetTextColor(const Color& color);
render::TextRenderObject* GetTextRenderObject() override;
render::ScrollRenderObject* GetScrollRenderObject() override {
return nullptr;
}
std::shared_ptr<platform::graphics::IFont> GetFont() const override {
return text_render_object_->GetFont();
}
void SetFont(std::shared_ptr<platform::graphics::IFont> font) override {
text_render_object_->SetFont(std::move(font));
}
std::shared_ptr<platform::graphics::IBrush> GetContentBrush() const override {
return GetTextBrush();
}
void SetContentBrush(
std::shared_ptr<platform::graphics::IBrush> brush) override {
SetTextBrush(std::move(brush));
}
private:
std::unique_ptr<render::TextRenderObject> text_render_object_;
std::unique_ptr<TextHostControlService> service_;
};
} // namespace cru::ui::controls
|