blob: 258eeb26533a9cdfba2750b7c6b8b88838bba2ca (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#include "CompoundStylerEditor.h"
#include "BorderStylerEditor.h"
#include "CursorStylerEditor.h"
#include "cru/common/ClonablePtr.h"
#include "cru/ui/ThemeManager.h"
#include "cru/ui/style/Styler.h"
namespace cru::theme_builder::components::stylers {
CompoundStylerEditorChild::CompoundStylerEditorChild(
std::unique_ptr<StylerEditor>&& editor)
: styler_editor_(std::move(editor)) {
container_.SetFlexDirection(ui::controls::FlexDirection::Horizontal);
container_.AddChild(&remove_button_);
remove_button_.GetStyleRuleSet()->SetParent(
ui::ThemeManager::GetInstance()->GetResourceStyleRuleSet(
u"cru.theme_builder.icon-button.style"));
remove_button_.SetChild(&remove_button_text_);
remove_button_text_.SetText(u"x");
remove_button_text_.SetTextColor(ui::colors::red);
container_.AddChild(styler_editor_->GetRootControl());
remove_button_.ClickEvent()->AddSpyOnlyHandler(
[this] { this->remove_event_.Raise(nullptr); });
}
CompoundStylerEditorChild::~CompoundStylerEditorChild() {}
CompoundStylerEditor::CompoundStylerEditor() {
SetLabel(u"Compound Styler");
GetContainer()->AddChild(&children_container_);
children_container_.SetFlexDirection(ui::controls::FlexDirection::Vertical);
children_container_.SetItemCrossAlign(
ui::controls::FlexCrossAlignment::Start);
GetHeadContainer()->AddChild(add_child_button_.GetRootControl());
add_child_button_.SetButtonText(u"+");
add_child_button_.GetButton()->GetStyleRuleSet()->SetParent(
ui::ThemeManager::GetInstance()->GetResourceStyleRuleSet(
u"cru.theme_builder.icon-button.style"));
add_child_button_.SetButtonTextColor(ui::colors::green);
add_child_button_.SetMenuItems({
u"Compound Styler",
u"Border Styler",
u"Cursor Styler",
});
add_child_button_.MenuItemSelectedEvent()->AddHandler([this](Index index) {
std::unique_ptr<StylerEditor> editor;
switch (index) {
case 0:
editor = std::make_unique<CompoundStylerEditor>();
break;
case 1:
editor = std::make_unique<BorderStylerEditor>();
break;
case 2:
editor = std::make_unique<CursorStylerEditor>();
break;
default:
break;
}
if (editor) {
ConnectChangeEvent(editor.get());
auto child =
std::make_unique<CompoundStylerEditorChild>(std::move(editor));
child->RemoveEvent()->AddSpyOnlyHandler([this, c = child.get()] {
auto index = this->children_container_.IndexOf(c->GetRootControl());
this->children_.erase(this->children_.begin() + index);
this->children_container_.RemoveChildAt(index);
RaiseChangeEvent();
});
children_container_.AddChild(child->GetRootControl());
children_.push_back(std::move(child));
RaiseChangeEvent();
}
});
}
CompoundStylerEditor::~CompoundStylerEditor() {}
ClonablePtr<ui::style::CompoundStyler> CompoundStylerEditor::GetValue() {
std::vector<ClonablePtr<ui::style::Styler>> children_styler;
for (auto& child : children_) {
children_styler.push_back(child->GetStylerEditor()->GetStyler());
}
return ui::style::CompoundStyler::Create(std::move(children_styler));
}
void CompoundStylerEditor::SetValue(ui::style::CompoundStyler* value,
bool trigger_change) {
children_.clear();
children_container_.ClearChildren();
for (const auto& styler : value->GetChildren()) {
auto editor = CreateStylerEditor(styler.get());
ConnectChangeEvent(editor.get());
auto child = std::make_unique<CompoundStylerEditorChild>(std::move(editor));
child->RemoveEvent()->AddSpyOnlyHandler([this, c = child.get()] {
auto index = this->children_container_.IndexOf(c->GetRootControl());
this->children_.erase(this->children_.begin() + index);
this->children_container_.RemoveChildAt(index);
RaiseChangeEvent();
});
children_.push_back(std::move(child));
children_container_.AddChild(children_.back()->GetRootControl());
}
}
} // namespace cru::theme_builder::components::stylers
|