menu = $menu; // Init menu item $this->gtk = \GtkMenuItem::new_with_label( $this::LABEL ); // Init submenu container $tab = new \GtkMenu; // Init new tab menu item $this->add = new Add( $this ); $tab->append( $this->add->gtk ); // Init close tab menu item $this->close = new Close( $this ); $tab->append( $this->close->gtk ); $this->gtk->set_submenu( $tab ); // Render $this->gtk->show(); } }