blob: 9b8875e6017b990f0fd0253ba7a7b40aa6eef5b6 (
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
|
#pragma once
#include "../render/TextRenderObject.h"
#include "Control.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 Control,
public virtual ITextHostControl,
public virtual IFontControl,
public virtual IContentBrushControl {
public:
static constexpr auto kControlName = "TextBlock";
static std::unique_ptr<TextBlock> Create(std::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();
render::RenderObject* GetRenderObject() override;
std::string GetText();
void SetText(std::string text);
bool IsSelectable();
void SetSelectable(bool value);
std::shared_ptr<platform::graphics::IBrush> GetTextBrush() {
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() 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() 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
|