blob: ad44ad2d2439fd9021713c2d817daf54ab8f5e61 (
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
|
#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";
public:
TextBlock();
TextBlock(const TextBlock& other) = delete;
TextBlock(TextBlock&& other) = delete;
TextBlock& operator=(const TextBlock& other) = delete;
TextBlock& operator=(TextBlock&& other) = delete;
~TextBlock() override;
TextBlock(String text, bool selectable = false) : TextBlock() {
SetText(std::move(text));
SetSelectable(selectable);
}
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
|