|
@@ -39,7 +39,7 @@ void SplitContainerDragger::gui_input(const Ref<InputEvent> &p_event) {
|
|
|
|
|
|
SplitContainer *sc = Object::cast_to<SplitContainer>(get_parent());
|
|
|
|
|
|
- if (sc->collapsed || !sc->get_containable_child(0) || !sc->get_containable_child(1) || sc->dragger_visibility != SplitContainer::DRAGGER_VISIBLE) {
|
|
|
+ if (sc->collapsed || !sc->_get_sortable_child(0) || !sc->_get_sortable_child(1) || sc->dragger_visibility != SplitContainer::DRAGGER_VISIBLE) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -122,12 +122,12 @@ void SplitContainerDragger::_notification(int p_what) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-Control *SplitContainer::get_containable_child(int p_idx) const {
|
|
|
+Control *SplitContainer::_get_sortable_child(int p_idx) const {
|
|
|
int idx = 0;
|
|
|
|
|
|
for (int i = 0; i < get_child_count(false); i++) {
|
|
|
- Control *c = Object::cast_to<Control>(get_child(i, false));
|
|
|
- if (!c || !c->is_visible() || c->is_set_as_top_level()) {
|
|
|
+ Control *c = as_sortable_control(get_child(i, false));
|
|
|
+ if (!c) {
|
|
|
continue;
|
|
|
}
|
|
|
|
|
@@ -154,8 +154,8 @@ Ref<Texture2D> SplitContainer::_get_grabber_icon() const {
|
|
|
}
|
|
|
|
|
|
void SplitContainer::_compute_middle_sep(bool p_clamp) {
|
|
|
- Control *first = get_containable_child(0);
|
|
|
- Control *second = get_containable_child(1);
|
|
|
+ Control *first = _get_sortable_child(0);
|
|
|
+ Control *second = _get_sortable_child(1);
|
|
|
|
|
|
// Determine expanded children.
|
|
|
bool first_expanded = (vertical ? first->get_v_size_flags() : first->get_h_size_flags()) & SIZE_EXPAND;
|
|
@@ -196,8 +196,8 @@ void SplitContainer::_compute_middle_sep(bool p_clamp) {
|
|
|
}
|
|
|
|
|
|
void SplitContainer::_resort() {
|
|
|
- Control *first = get_containable_child(0);
|
|
|
- Control *second = get_containable_child(1);
|
|
|
+ Control *first = _get_sortable_child(0);
|
|
|
+ Control *second = _get_sortable_child(1);
|
|
|
|
|
|
// If we have only one element.
|
|
|
if (!first || !second) {
|
|
@@ -258,7 +258,7 @@ Size2 SplitContainer::get_minimum_size() const {
|
|
|
int sep = (dragger_visibility != DRAGGER_HIDDEN_COLLAPSED) ? MAX(theme_cache.separation, vertical ? g->get_height() : g->get_width()) : 0;
|
|
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
- if (!get_containable_child(i)) {
|
|
|
+ if (!_get_sortable_child(i)) {
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -270,7 +270,7 @@ Size2 SplitContainer::get_minimum_size() const {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- Size2 ms = get_containable_child(i)->get_combined_minimum_size();
|
|
|
+ Size2 ms = _get_sortable_child(i)->get_combined_minimum_size();
|
|
|
|
|
|
if (vertical) {
|
|
|
minimum.height += ms.height;
|
|
@@ -322,7 +322,7 @@ int SplitContainer::get_split_offset() const {
|
|
|
}
|
|
|
|
|
|
void SplitContainer::clamp_split_offset() {
|
|
|
- if (!get_containable_child(0) || !get_containable_child(1)) {
|
|
|
+ if (!_get_sortable_child(0) || !_get_sortable_child(1)) {
|
|
|
return;
|
|
|
}
|
|
|
|