diff options
author | kobewi <kobewi4e@gmail.com> | 2024-05-06 12:38:51 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-05-08 11:45:52 +0200 |
commit | 5c28814b3944f899c6e8971f28c7857e4c2a9e13 (patch) | |
tree | c8d297f82cf3647cac63f78405802f46adecf5c9 /scene/gui/box_container.cpp | |
parent | 17a81260cb92a321a0d752e369ef911055178c7b (diff) | |
download | redot-engine-5c28814b3944f899c6e8971f28c7857e4c2a9e13.tar.gz |
Add as_sortable_control() to unify Container checks
Diffstat (limited to 'scene/gui/box_container.cpp')
-rw-r--r-- | scene/gui/box_container.cpp | 30 |
1 files changed, 7 insertions, 23 deletions
diff --git a/scene/gui/box_container.cpp b/scene/gui/box_container.cpp index 2728126e64..88f65ca1bc 100644 --- a/scene/gui/box_container.cpp +++ b/scene/gui/box_container.cpp @@ -55,11 +55,8 @@ void BoxContainer::_resort() { HashMap<Control *, _MinSizeCache> min_size_cache; for (int i = 0; i < get_child_count(); i++) { - Control *c = Object::cast_to<Control>(get_child(i)); - if (!c || !c->is_visible_in_tree()) { - continue; - } - if (c->is_set_as_top_level()) { + Control *c = as_sortable_control(get_child(i)); + if (!c) { continue; } @@ -109,11 +106,8 @@ void BoxContainer::_resort() { float error = 0.0; // Keep track of accumulated error in pixels for (int i = 0; i < get_child_count(); i++) { - Control *c = Object::cast_to<Control>(get_child(i)); - if (!c || !c->is_visible_in_tree()) { - continue; - } - if (c->is_set_as_top_level()) { + Control *c = as_sortable_control(get_child(i)); + if (!c) { continue; } @@ -201,11 +195,8 @@ void BoxContainer::_resort() { } for (int i = start; i != end; i += delta) { - Control *c = Object::cast_to<Control>(get_child(i)); - if (!c || !c->is_visible_in_tree()) { - continue; - } - if (c->is_set_as_top_level()) { + Control *c = as_sortable_control(get_child(i)); + if (!c) { continue; } @@ -252,17 +243,10 @@ Size2 BoxContainer::get_minimum_size() const { bool first = true; for (int i = 0; i < get_child_count(); i++) { - Control *c = Object::cast_to<Control>(get_child(i)); + Control *c = as_sortable_control(get_child(i)); if (!c) { continue; } - if (c->is_set_as_top_level()) { - continue; - } - - if (!c->is_visible()) { - continue; - } Size2i size = c->get_combined_minimum_size(); |