From 0f0360702bc42d263c33ebf541910d9c2dc0e2c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Wed, 24 Jun 2020 19:14:30 +0200 Subject: [PATCH] Handle gone TabContainer popup nicely --- scene/gui/tab_container.cpp | 23 ++++++++++++++++++++--- scene/gui/tab_container.h | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/scene/gui/tab_container.cpp b/scene/gui/tab_container.cpp index b179fa0253..db832a9136 100644 --- a/scene/gui/tab_container.cpp +++ b/scene/gui/tab_container.cpp @@ -71,6 +71,8 @@ void TabContainer::_gui_input(const Ref &p_event) { Ref mb = p_event; + Popup *popup = get_popup(); + if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) { Point2 pos(mb->get_position().x, mb->get_position().y); @@ -231,6 +233,7 @@ void TabContainer::_notification(int p_what) { int header_width = get_size().width - side_margin * 2; // Find the width of the header area. + Popup *popup = get_popup(); if (popup) header_width -= menu->get_width(); if (buttons_visible_cache) @@ -289,6 +292,7 @@ void TabContainer::_notification(int p_what) { int header_x = side_margin; int header_width = size.width - side_margin * 2; int header_height = _get_top_margin(); + Popup *popup = get_popup(); if (popup) header_width -= menu->get_width(); @@ -750,6 +754,7 @@ int TabContainer::get_tab_idx_at_point(const Point2 &p_point) const { Size2 size = get_size(); int right_ofs = 0; + Popup *popup = get_popup(); if (popup) { Ref menu = get_icon("menu"); right_ofs += menu->get_width(); @@ -957,12 +962,24 @@ Size2 TabContainer::get_minimum_size() const { void TabContainer::set_popup(Node *p_popup) { ERR_FAIL_NULL(p_popup); - popup = Object::cast_to(p_popup); + Popup *popup = Object::cast_to(p_popup); + popup_obj_id = popup ? popup->get_instance_id() : 0; update(); } Popup *TabContainer::get_popup() const { - return popup; + if (popup_obj_id) { + Popup *popup = Object::cast_to(ObjectDB::get_instance(popup_obj_id)); + if (popup) { + return popup; + } else { +#ifdef DEBUG_ENABLED + ERR_PRINT("Popup assigned to TabContainer is gone!"); +#endif + popup_obj_id = 0; + } + } + return NULL; } void TabContainer::set_drag_to_rearrange_enabled(bool p_enabled) { @@ -1049,7 +1066,7 @@ TabContainer::TabContainer() { previous = 0; align = ALIGN_CENTER; tabs_visible = true; - popup = NULL; + popup_obj_id = 0; drag_to_rearrange_enabled = false; tabs_rearrange_group = -1; use_hidden_tabs_for_min_size = false; diff --git a/scene/gui/tab_container.h b/scene/gui/tab_container.h index 77da35d877..e789a5f169 100644 --- a/scene/gui/tab_container.h +++ b/scene/gui/tab_container.h @@ -58,7 +58,7 @@ private: TabAlign align; Control *_get_tab(int p_idx) const; int _get_top_margin() const; - Popup *popup; + mutable ObjectID popup_obj_id; bool drag_to_rearrange_enabled; bool use_hidden_tabs_for_min_size; int tabs_rearrange_group;