From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53002) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ws5s7-00073L-OP for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:44:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ws5rx-0002FS-Di for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:44:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60652) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ws5rx-0002Ds-4R for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:44:21 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s547iKPi009267 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 4 Jun 2014 03:44:20 -0400 From: Gerd Hoffmann Date: Wed, 4 Jun 2014 09:44:10 +0200 Message-Id: <1401867851-30064-7-git-send-email-kraxel@redhat.com> In-Reply-To: <1401867851-30064-1-git-send-email-kraxel@redhat.com> References: <1401867851-30064-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 6/7] docs/multiseat.txt: gtk joined the party List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- docs/multiseat.txt | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/multiseat.txt b/docs/multiseat.txt index 126f39d..dd3a831 100644 --- a/docs/multiseat.txt +++ b/docs/multiseat.txt @@ -6,16 +6,20 @@ host side --------- First you must compile qemu with a user interface supporting -multihead/multiseat and input event routing. Right now this list is -pretty short: sdl2. +multihead/multiseat and input event routing. Right now this +list includes sdl2 and gtk (both 2+3): ./configure --enable-sdl --with-sdlabi=2.0 +or + + ./configure --enable-gtk + Next put together the qemu command line: qemu -enable-kvm -usb $memory $disk $whatever \ - -display sdl \ + -display [ sdl | gtk ] \ -vga std \ -device usb-tablet @@ -37,6 +41,12 @@ The "display=video2" sets up the input routing. Any input coming from the window which belongs to the video.2 display adapter will be routed to these input devices. +The sdl2 ui will start up with two windows, one for each display +device. The gtk ui will start with a single window and each display +in a separate tab. You can either simply switch tabs to switch heads, +or use the "View / Detach tab" menu item to move one of the displays +to its own window so you can see both display devices side-by-side. + guest side ---------- -- 1.8.3.1