blob: 7b3ab3230c6789ce65e7689b4c58541724aaf102 (
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
|
#pragma once
#include "../render/BorderRenderObject.h"
#include "../render/ScrollRenderObject.h"
#include "../render/TextRenderObject.h"
#include "Control.h"
#include "IBorderControl.h"
#include "IContentBrushControl.h"
#include "IFontControl.h"
#include "TextHostControlService.h"
#include <cru/platform/graphics/Brush.h>
#include <memory>
namespace cru::ui::controls {
class CRU_UI_API TextBox : public Control,
public virtual IBorderControl,
public virtual ITextHostControl,
public virtual IContentBrushControl,
public virtual IFontControl {
public:
static constexpr auto kControlName = "TextBox";
TextBox();
render::RenderObject* GetRenderObject() override;
render::TextRenderObject* GetTextRenderObject() override;
render::ScrollRenderObject* GetScrollRenderObject() override;
bool GetMultiLine();
void SetMultiLine(bool value);
void ApplyBorderStyle(const style::ApplyBorderStyleInfo& style) override;
std::string GetText() { return service_->GetText(); }
std::string_view GetTextView() { return service_->GetTextView(); }
void SetText(std::string text) { service_->SetText(std::move(text)); }
IEvent<std::nullptr_t>* TextChangeEvent() {
return service_->TextChangeEvent();
}
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> GetTextBrush() {
return text_render_object_->GetBrush();
}
void SetTextBrush(std::shared_ptr<platform::graphics::IBrush> brush) {
text_render_object_->SetBrush(std::move(brush));
}
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::BorderRenderObject> border_render_object_;
std::unique_ptr<render::ScrollRenderObject> scroll_render_object_;
std::unique_ptr<render::TextRenderObject> text_render_object_;
std::unique_ptr<TextHostControlService> service_;
};
} // namespace cru::ui::controls
|