menu = $menu; // Init menu item $this->gtk = GtkMenuItem::new_with_label( $this::LABEL ); // Init submenu container $tool = new GtkMenu; // Init debug menu item $this->debug = new Tool\Debug( $this ); $tool->append( $this->debug->gtk ); $this->gtk->set_submenu( $tool ); // Render $this->gtk->show(); } }