Ensure that controls update all their sizing information when required

This commit is contained in:
Yuri Sizov 2023-06-06 22:05:53 +02:00
parent df26066ce9
commit ccaab0e590
2 changed files with 13 additions and 21 deletions

View File

@ -34,8 +34,6 @@
#include "scene/scene_string_names.h"
void Container::_child_minsize_changed() {
//Size2 ms = get_combined_minimum_size();
//if (ms.width > get_size().width || ms.height > get_size().height) {
update_minimum_size();
queue_sort();
}

View File

@ -1579,6 +1579,7 @@ Vector2 Control::get_pivot_offset() const {
void Control::_update_minimum_size() {
if (!is_inside_tree()) {
data.updating_last_minimum_size = false;
return;
}
@ -1598,9 +1599,8 @@ void Control::update_minimum_size() {
return;
}
Control *invalidate = this;
// Invalidate cache upwards.
Control *invalidate = this;
while (invalidate && invalidate->data.minimum_size_valid) {
invalidate->data.minimum_size_valid = false;
if (invalidate->is_set_as_top_level()) {
@ -1623,10 +1623,9 @@ void Control::update_minimum_size() {
if (data.updating_last_minimum_size) {
return;
}
data.updating_last_minimum_size = true;
MessageQueue::get_singleton()->push_call(this, "_update_minimum_size");
MessageQueue::get_singleton()->push_callable(callable_mp(this, &Control::_update_minimum_size));
}
void Control::set_block_minimum_size_adjust(bool p_block) {
@ -1666,17 +1665,8 @@ void Control::_update_minimum_size_cache() {
minsize.x = MAX(minsize.x, data.custom_minimum_size.x);
minsize.y = MAX(minsize.y, data.custom_minimum_size.y);
bool size_changed = false;
if (data.minimum_size_cache != minsize) {
size_changed = true;
}
data.minimum_size_cache = minsize;
data.minimum_size_valid = true;
if (size_changed) {
update_minimum_size();
}
}
Size2 Control::get_combined_minimum_size() const {
@ -3140,8 +3130,8 @@ void Control::_notification(int p_notification) {
} break;
case NOTIFICATION_POST_ENTER_TREE: {
data.minimum_size_valid = false;
data.is_rtl_dirty = true;
update_minimum_size();
_size_changed();
} break;
@ -3257,10 +3247,13 @@ void Control::_notification(int p_notification) {
case NOTIFICATION_THEME_CHANGED: {
emit_signal(SceneStringNames::get_singleton()->theme_changed);
_invalidate_theme_cache();
_update_theme_item_cache();
update_minimum_size();
queue_redraw();
update_minimum_size();
_size_changed();
} break;
case NOTIFICATION_VISIBILITY_CHANGED: {
@ -3269,8 +3262,7 @@ void Control::_notification(int p_notification) {
get_viewport()->_gui_hide_control(this);
}
} else {
data.minimum_size_valid = false;
_update_minimum_size();
update_minimum_size();
_size_changed();
}
} break;
@ -3279,8 +3271,12 @@ void Control::_notification(int p_notification) {
case NOTIFICATION_LAYOUT_DIRECTION_CHANGED: {
if (is_inside_tree()) {
data.is_rtl_dirty = true;
_invalidate_theme_cache();
_update_theme_item_cache();
queue_redraw();
update_minimum_size();
_size_changed();
}
} break;
@ -3288,8 +3284,6 @@ void Control::_notification(int p_notification) {
}
void Control::_bind_methods() {
ClassDB::bind_method(D_METHOD("_update_minimum_size"), &Control::_update_minimum_size);
ClassDB::bind_method(D_METHOD("accept_event"), &Control::accept_event);
ClassDB::bind_method(D_METHOD("get_minimum_size"), &Control::get_minimum_size);
ClassDB::bind_method(D_METHOD("get_combined_minimum_size"), &Control::get_combined_minimum_size);