tab = $tab; // Init menu item $this->gtk = \GtkMenuItem::new_with_label( _($this::LABEL) ); $this->gtk->set_tooltip_text( _($this::TOOLTIP) ); // Render $this->gtk->show(); // Int events $this->gtk->connect( 'activate', function() { $this->tab->menu->browser->container->tab->close(); } ); } }