blob: 702b26e8dcba450f7596ef60824cf1053cd86a32 (
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
|
#include "PointPropertyEditor.h"
#include "cru/common/Format.h"
#include "cru/ui/mapper/MapperRegistry.h"
#include "cru/ui/mapper/PointMapper.h"
namespace cru::theme_builder::components::properties {
PointPropertyEditor::PointPropertyEditor() {
container_.AddChild(&label_);
container_.AddChild(&text_);
text_.TextChangeEvent()->AddHandler([this](std::nullptr_t) {
auto text = text_.GetTextView();
auto point_mapper =
ui::mapper::MapperRegistry::GetInstance()->GetMapper<ui::Point>();
try {
auto point = point_mapper->MapFromString(text.ToString());
point_ = point;
is_text_valid_ = true;
change_event_.Raise(nullptr);
} catch (const Exception&) {
is_text_valid_ = false;
// TODO: Show error!
}
});
}
PointPropertyEditor::~PointPropertyEditor() {}
void PointPropertyEditor::SetValue(const ui::Point& point,
bool trigger_change) {
point_ = point;
text_.SetText(ConvertPointToString(point));
is_text_valid_ = true;
if (trigger_change) change_event_.Raise(nullptr);
}
String PointPropertyEditor::ConvertPointToString(const ui::Point& point) {
return Format(u"{} {}", point.x, point.y);
}
} // namespace cru::theme_builder::components::properties
|