diff options
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r-- | scene/gui/control.cpp | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index b9b68127db..2124ffb806 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -268,6 +268,7 @@ String Control::properties_managed_by_container[] = { bool Control::_set(const StringName &p_name, const Variant &p_value) { ERR_MAIN_THREAD_GUARD_V(false); String name = p_name; + if (!name.begins_with("theme_override")) { return false; } @@ -309,7 +310,6 @@ bool Control::_set(const StringName &p_name, const Variant &p_value) { } else { return false; } - } else { if (name.begins_with("theme_override_icons/")) { String dname = name.get_slicec('/', 1); @@ -333,12 +333,14 @@ bool Control::_set(const StringName &p_name, const Variant &p_value) { return false; } } + return true; } bool Control::_get(const StringName &p_name, Variant &r_ret) const { ERR_MAIN_THREAD_GUARD_V(false); String sname = p_name; + if (!sname.begins_with("theme_override")) { return false; } @@ -2996,7 +2998,6 @@ void Control::set_layout_direction(Control::LayoutDirection p_direction) { ERR_FAIL_INDEX((int)p_direction, 4); data.layout_dir = p_direction; - data.is_rtl_dirty = true; propagate_notification(NOTIFICATION_LAYOUT_DIRECTION_CHANGED); } @@ -3097,21 +3098,17 @@ bool Control::is_localizing_numeral_system() const { return data.localize_numeral_system; } +#ifndef DISABLE_DEPRECATED void Control::set_auto_translate(bool p_enable) { ERR_MAIN_THREAD_GUARD; - if (p_enable == data.auto_translate) { - return; - } - - data.auto_translate = p_enable; - - notification(MainLoop::NOTIFICATION_TRANSLATION_CHANGED); + set_auto_translate_mode(p_enable ? AUTO_TRANSLATE_MODE_ALWAYS : AUTO_TRANSLATE_MODE_DISABLED); } bool Control::is_auto_translating() const { ERR_READ_THREAD_GUARD_V(false); - return data.auto_translate; + return can_auto_translate(); } +#endif // Extra properties. @@ -3172,14 +3169,6 @@ void Control::_notification(int p_notification) { } break; case NOTIFICATION_ENTER_TREE: { -#ifdef TOOLS_ENABLED - if (is_part_of_edited_scene()) { - // Don't translate Controls on scene when inside editor. - set_message_translation(false); - notification(NOTIFICATION_TRANSLATION_CHANGED); - } -#endif - // Emits NOTIFICATION_THEME_CHANGED internally. set_theme_context(ThemeDB::get_singleton()->get_nearest_theme_context(this)); } break; @@ -3192,6 +3181,7 @@ void Control::_notification(int p_notification) { case NOTIFICATION_EXIT_TREE: { set_theme_context(nullptr, false); + release_focus(); get_viewport()->_gui_remove_control(this); } break; @@ -3506,8 +3496,10 @@ void Control::_bind_methods() { ClassDB::bind_method(D_METHOD("get_layout_direction"), &Control::get_layout_direction); ClassDB::bind_method(D_METHOD("is_layout_rtl"), &Control::is_layout_rtl); +#ifndef DISABLE_DEPRECATED ClassDB::bind_method(D_METHOD("set_auto_translate", "enable"), &Control::set_auto_translate); ClassDB::bind_method(D_METHOD("is_auto_translating"), &Control::is_auto_translating); +#endif ClassDB::bind_method(D_METHOD("set_localize_numeral_system", "enable"), &Control::set_localize_numeral_system); ClassDB::bind_method(D_METHOD("is_localizing_numeral_system"), &Control::is_localizing_numeral_system); @@ -3558,9 +3550,12 @@ void Control::_bind_methods() { ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "size_flags_stretch_ratio", PROPERTY_HINT_RANGE, "0,20,0.01,or_greater"), "set_stretch_ratio", "get_stretch_ratio"); ADD_GROUP("Localization", ""); - ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_translate"), "set_auto_translate", "is_auto_translating"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "localize_numeral_system"), "set_localize_numeral_system", "is_localizing_numeral_system"); +#ifndef DISABLE_DEPRECATED + ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_translate", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR), "set_auto_translate", "is_auto_translating"); +#endif + ADD_GROUP("Tooltip", "tooltip_"); ADD_PROPERTY(PropertyInfo(Variant::STRING, "tooltip_text", PROPERTY_HINT_MULTILINE_TEXT), "set_tooltip_text", "get_tooltip_text"); |