1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:45:07 +00:00

LibCore: Add new REGISTER_STRING_PROPERTY macro

This commit is contained in:
Karol Kosek 2023-03-10 18:14:22 +01:00 committed by Andreas Kling
parent ee5838084d
commit 858e55b653
2 changed files with 11 additions and 8 deletions

View file

@ -28,14 +28,7 @@ AbstractButton::AbstractButton(String text)
click();
};
// FIXME: Port JsonValue to the new String class.
register_property(
"text",
[this]() { return this->text().to_deprecated_string(); },
[this](auto& value) {
this->set_text(String::from_deprecated_string(value.to_deprecated_string()).release_value_but_fixme_should_propagate_errors());
return true;
});
REGISTER_STRING_PROPERTY("text", text, set_text);
REGISTER_BOOL_PROPERTY("checked", is_checked, set_checked);
REGISTER_BOOL_PROPERTY("checkable", is_checkable, set_checkable);
REGISTER_BOOL_PROPERTY("exclusive", is_exclusive, set_exclusive);