summaryrefslogtreecommitdiffstats
path: root/scene/gui
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2024-01-23 18:29:45 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2024-02-15 16:51:19 -0300
commit7b42c245509d1b4c325ff073cb9ef2011000dea7 (patch)
tree884d96d9e6aa4e7347f5e6616408e9a79d49954c /scene/gui
parent6f805dee2a0d9d23a8365de0331479c8846bf298 (diff)
downloadredot-engine-7b42c245509d1b4c325ff073cb9ef2011000dea7.tar.gz
Make auto translation inheritable
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/control.cpp33
-rw-r--r--scene/gui/control.h6
-rw-r--r--scene/gui/menu_button.cpp4
-rw-r--r--scene/gui/option_button.cpp5
4 files changed, 17 insertions, 31 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");
diff --git a/scene/gui/control.h b/scene/gui/control.h
index e0bd624edf..8bcd955457 100644
--- a/scene/gui/control.h
+++ b/scene/gui/control.h
@@ -253,7 +253,6 @@ private:
bool is_rtl_dirty = true;
bool is_rtl = false;
- bool auto_translate = true;
bool localize_numeral_system = true;
// Extra properties.
@@ -624,11 +623,10 @@ public:
void set_localize_numeral_system(bool p_enable);
bool is_localizing_numeral_system() const;
+#ifndef DISABLE_DEPRECATED
void set_auto_translate(bool p_enable);
bool is_auto_translating() const;
- _FORCE_INLINE_ String atr(const String p_string) const {
- return is_auto_translating() ? tr(p_string) : p_string;
- };
+#endif
// Extra properties.
diff --git a/scene/gui/menu_button.cpp b/scene/gui/menu_button.cpp
index 080b687337..89c627a7a8 100644
--- a/scene/gui/menu_button.cpp
+++ b/scene/gui/menu_button.cpp
@@ -149,10 +149,6 @@ void MenuButton::_notification(int p_what) {
menu_btn_other->get_popup()->set_focused_item(-1);
}
} break;
-
- case NOTIFICATION_TRANSLATION_CHANGED: {
- popup->set_auto_translate(is_auto_translating());
- } break;
}
}
diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp
index 45cc9623be..8fc21c077b 100644
--- a/scene/gui/option_button.cpp
+++ b/scene/gui/option_button.cpp
@@ -127,10 +127,7 @@ void OptionButton::_notification(int p_what) {
theme_cache.arrow_icon->draw(ci, ofs, clr);
} break;
- case NOTIFICATION_TRANSLATION_CHANGED: {
- popup->set_auto_translate(is_auto_translating());
- [[fallthrough]];
- }
+ case NOTIFICATION_TRANSLATION_CHANGED:
case NOTIFICATION_LAYOUT_DIRECTION_CHANGED: {
popup->set_layout_direction((Window::LayoutDirection)get_layout_direction());
[[fallthrough]];