aboutsummaryrefslogtreecommitdiff
path: root/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-05-15 14:15:31 +0800
committercrupest <crupest@outlook.com>2022-05-15 14:15:31 +0800
commit34a64e6ffefaab007578932ddbab931a25f1d56e (patch)
tree541fdb8279e829a129df62288d09916bf23c9200 /src/ThemeBuilder/components/properties/PointPropertyEditor.cpp
parent8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (diff)
downloadcru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.gz
cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.bz2
cru-34a64e6ffefaab007578932ddbab931a25f1d56e.zip
...
Diffstat (limited to 'src/ThemeBuilder/components/properties/PointPropertyEditor.cpp')
-rw-r--r--src/ThemeBuilder/components/properties/PointPropertyEditor.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp b/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp
new file mode 100644
index 00000000..6d4277aa
--- /dev/null
+++ b/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp
@@ -0,0 +1,38 @@
+#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;
+ RaiseChangeEvent();
+ } catch (const Exception&) {
+ is_text_valid_ = false;
+ // TODO: Show error!
+ }
+ });
+}
+
+PointPropertyEditor::~PointPropertyEditor() {}
+
+void PointPropertyEditor::SetValue(const ui::Point& point,
+ bool trigger_change) {
+ if (!trigger_change) SuppressNextChangeEvent();
+ text_.SetText(ConvertPointToString(point));
+}
+
+String PointPropertyEditor::ConvertPointToString(const ui::Point& point) {
+ return Format(u"{} {}", point.x, point.y);
+}
+} // namespace cru::theme_builder::components::properties