browser = $browser; // Init menu $this->gtk = new \GtkMenu; // Init file menu item $this->file = new File( $this ); $this->gtk->append( $this->file->gtk ); // Init tab menu item $this->tab = new Tab( $this ); $this->gtk->append( $this->tab->gtk ); // Init history menu item $this->history = new History( $this ); $this->gtk->append( $this->history->gtk ); // Add separator $this->gtk->append( new \GtkSeparatorMenuItem ); // Init quit menu item $this->quit = new Quit( $this ); $this->gtk->append( $this->quit->gtk ); // Render $this->gtk->show(); } }