aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/components/properties/MeasureLengthPropertyEditor.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/theme_builder/components/properties/MeasureLengthPropertyEditor.cpp
parent8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (diff)
downloadcru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.gz
cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.bz2
cru-34a64e6ffefaab007578932ddbab931a25f1d56e.zip
...
Diffstat (limited to 'src/theme_builder/components/properties/MeasureLengthPropertyEditor.cpp')
-rw-r--r--src/theme_builder/components/properties/MeasureLengthPropertyEditor.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/theme_builder/components/properties/MeasureLengthPropertyEditor.cpp b/src/theme_builder/components/properties/MeasureLengthPropertyEditor.cpp
deleted file mode 100644
index d1f4afce..00000000
--- a/src/theme_builder/components/properties/MeasureLengthPropertyEditor.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "MeasureLengthPropertyEditor.h"
-#include "cru/common/Format.h"
-#include "cru/ui/mapper/MapperRegistry.h"
-#include "cru/ui/render/MeasureRequirement.h"
-
-namespace cru::theme_builder::components::properties {
-MeasureLengthPropertyEditor::MeasureLengthPropertyEditor() {
- container_.AddChild(&label_);
- container_.AddChild(&text_);
-
- text_.TextChangeEvent()->AddHandler([this](std::nullptr_t) {
- auto text = text_.GetTextView();
- auto measure_length_mapper = ui::mapper::MapperRegistry::GetInstance()
- ->GetMapper<ui::render::MeasureLength>();
- try {
- auto measure_length =
- measure_length_mapper->MapFromString(text.ToString());
- measure_length_ = measure_length;
- is_text_valid_ = true;
- RaiseChangeEvent();
- } catch (const Exception&) {
- is_text_valid_ = false;
- // TODO: Show error!
- }
- });
-}
-
-MeasureLengthPropertyEditor::~MeasureLengthPropertyEditor() {}
-
-void MeasureLengthPropertyEditor::SetValue(
- const ui::render::MeasureLength& value, bool trigger_change) {
- if (!trigger_change) SuppressNextChangeEvent();
- text_.SetText(measure_length_.IsNotSpecified()
- ? u"unspecified"
- : ToString(measure_length_.GetLengthOrUndefined()));
-}
-} // namespace cru::theme_builder::components::properties