From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:60391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gx5eM-0006xL-FA for qemu-devel@nongnu.org; Fri, 22 Feb 2019 02:53:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gx5eL-0001Ws-Da for qemu-devel@nongnu.org; Fri, 22 Feb 2019 02:53:38 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57662) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gx5eL-0001Mi-37 for qemu-devel@nongnu.org; Fri, 22 Feb 2019 02:53:37 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2BEAE3002EE2 for ; Fri, 22 Feb 2019 07:53:30 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 22 Feb 2019 08:53:24 +0100 Message-Id: <20190222075326.9850-14-kraxel@redhat.com> In-Reply-To: <20190222075326.9850-1-kraxel@redhat.com> References: <20190222075326.9850-1-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 13/15] qapi: document DisplayType enum List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Eric Blake , =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Markus Armbruster , Gerd Hoffmann From: Marc-Andr=C3=A9 Lureau Signed-off-by: Marc-Andr=C3=A9 Lureau Tested-by: Victor Toso Message-id: 20190221110703.5775-10-marcandre.lureau@redhat.com Signed-off-by: Gerd Hoffmann --- qapi/ui.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/qapi/ui.json b/qapi/ui.json index 7d9c4bddaf12..7702ddf583a1 100644 --- a/qapi/ui.json +++ b/qapi/ui.json @@ -1085,6 +1085,31 @@ # # Display (user interface) type. # +# @default: The default user interface, selecting from the first availab= le +# of gtk, sdl, cocoa, and vnc. +# +# @none: No user interface or video output display. The guest will +# still see an emulated graphics card, but its output will not +# be displayed to the QEMU user. +# +# @gtk: The GTK user interface. +# +# @sdl: The SDL user interface. +# +# @egl-headless: No user interface, offload GL operations to a local +# DRI device. Graphical display need to be paired with +# VNC or Spice. (Since 3.1) +# +# @curses: Display video output via curses. For graphics device +# models which support a text mode, QEMU can display this +# output using a curses/ncurses interface. Nothing is +# displayed when the graphics device is in graphical mode or +# if the graphics device does not support a text +# mode. Generally only the VGA device models support text +# mode. +# +# @cocoa: The Cocoa user interface. +# # Since: 2.12 # ## --=20 2.9.3