Commit b5e44a12 by Pedro J. Estébanez

Handle gone TabContainer popup nicely

parent 4c0b077f
...@@ -71,6 +71,8 @@ int TabContainer::_get_top_margin() const { ...@@ -71,6 +71,8 @@ int TabContainer::_get_top_margin() const {
void TabContainer::_gui_input(const Ref<InputEvent> &p_event) { void TabContainer::_gui_input(const Ref<InputEvent> &p_event) {
Ref<InputEventMouseButton> mb = p_event; Ref<InputEventMouseButton> mb = p_event;
Popup *popup = get_popup();
if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) { if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
Point2 pos(mb->get_position().x, mb->get_position().y); Point2 pos(mb->get_position().x, mb->get_position().y);
Size2 size = get_size(); Size2 size = get_size();
...@@ -82,6 +84,7 @@ void TabContainer::_gui_input(const Ref<InputEvent> &p_event) { ...@@ -82,6 +84,7 @@ void TabContainer::_gui_input(const Ref<InputEvent> &p_event) {
// Handle menu button. // Handle menu button.
Ref<Texture2D> menu = get_theme_icon("menu"); Ref<Texture2D> menu = get_theme_icon("menu");
if (popup && pos.x > size.width - menu->get_width()) { if (popup && pos.x > size.width - menu->get_width()) {
emit_signal("pre_popup_pressed"); emit_signal("pre_popup_pressed");
...@@ -223,6 +226,7 @@ void TabContainer::_notification(int p_what) { ...@@ -223,6 +226,7 @@ void TabContainer::_notification(int p_what) {
int header_width = get_size().width - side_margin * 2; int header_width = get_size().width - side_margin * 2;
// Find the width of the header area. // Find the width of the header area.
Popup *popup = get_popup();
if (popup) { if (popup) {
header_width -= menu->get_width(); header_width -= menu->get_width();
} }
...@@ -284,6 +288,7 @@ void TabContainer::_notification(int p_what) { ...@@ -284,6 +288,7 @@ void TabContainer::_notification(int p_what) {
int header_x = side_margin; int header_x = side_margin;
int header_width = size.width - side_margin * 2; int header_width = size.width - side_margin * 2;
int header_height = _get_top_margin(); int header_height = _get_top_margin();
Popup *popup = get_popup();
if (popup) { if (popup) {
header_width -= menu->get_width(); header_width -= menu->get_width();
} }
...@@ -749,6 +754,7 @@ int TabContainer::get_tab_idx_at_point(const Point2 &p_point) const { ...@@ -749,6 +754,7 @@ int TabContainer::get_tab_idx_at_point(const Point2 &p_point) const {
Size2 size = get_size(); Size2 size = get_size();
int right_ofs = 0; int right_ofs = 0;
Popup *popup = get_popup();
if (popup) { if (popup) {
Ref<Texture2D> menu = get_theme_icon("menu"); Ref<Texture2D> menu = get_theme_icon("menu");
right_ofs += menu->get_width(); right_ofs += menu->get_width();
...@@ -948,12 +954,24 @@ Size2 TabContainer::get_minimum_size() const { ...@@ -948,12 +954,24 @@ Size2 TabContainer::get_minimum_size() const {
void TabContainer::set_popup(Node *p_popup) { void TabContainer::set_popup(Node *p_popup) {
ERR_FAIL_NULL(p_popup); ERR_FAIL_NULL(p_popup);
popup = Object::cast_to<Popup>(p_popup); Popup *popup = Object::cast_to<Popup>(p_popup);
popup_obj_id = popup ? popup->get_instance_id() : ObjectID();
update(); update();
} }
Popup *TabContainer::get_popup() const { Popup *TabContainer::get_popup() const {
return popup; if (popup_obj_id.is_valid()) {
Popup *popup = Object::cast_to<Popup>(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 = ObjectID();
}
}
return nullptr;
} }
void TabContainer::set_drag_to_rearrange_enabled(bool p_enabled) { void TabContainer::set_drag_to_rearrange_enabled(bool p_enabled) {
...@@ -1037,7 +1055,6 @@ TabContainer::TabContainer() { ...@@ -1037,7 +1055,6 @@ TabContainer::TabContainer() {
previous = 0; previous = 0;
align = ALIGN_CENTER; align = ALIGN_CENTER;
tabs_visible = true; tabs_visible = true;
popup = nullptr;
drag_to_rearrange_enabled = false; drag_to_rearrange_enabled = false;
tabs_rearrange_group = -1; tabs_rearrange_group = -1;
use_hidden_tabs_for_min_size = false; use_hidden_tabs_for_min_size = false;
......
...@@ -57,7 +57,7 @@ private: ...@@ -57,7 +57,7 @@ private:
TabAlign align; TabAlign align;
Control *_get_tab(int p_idx) const; Control *_get_tab(int p_idx) const;
int _get_top_margin() const; int _get_top_margin() const;
Popup *popup; mutable ObjectID popup_obj_id;
bool drag_to_rearrange_enabled; bool drag_to_rearrange_enabled;
bool use_hidden_tabs_for_min_size; bool use_hidden_tabs_for_min_size;
int tabs_rearrange_group; int tabs_rearrange_group;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment