mirror of https://gitee.com/openkylin/qemu.git
docs/multiseat.txt: gtk joined the party
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
3503206a90
commit
90525fe279
|
@ -6,16 +6,20 @@ host side
|
||||||
---------
|
---------
|
||||||
|
|
||||||
First you must compile qemu with a user interface supporting
|
First you must compile qemu with a user interface supporting
|
||||||
multihead/multiseat and input event routing. Right now this list is
|
multihead/multiseat and input event routing. Right now this
|
||||||
pretty short: sdl2.
|
list includes sdl2 and gtk (both 2+3):
|
||||||
|
|
||||||
./configure --enable-sdl --with-sdlabi=2.0
|
./configure --enable-sdl --with-sdlabi=2.0
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
./configure --enable-gtk
|
||||||
|
|
||||||
|
|
||||||
Next put together the qemu command line:
|
Next put together the qemu command line:
|
||||||
|
|
||||||
qemu -enable-kvm -usb $memory $disk $whatever \
|
qemu -enable-kvm -usb $memory $disk $whatever \
|
||||||
-display sdl \
|
-display [ sdl | gtk ] \
|
||||||
-vga std \
|
-vga std \
|
||||||
-device usb-tablet
|
-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
|
the window which belongs to the video.2 display adapter will be routed
|
||||||
to these input devices.
|
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
|
guest side
|
||||||
----------
|
----------
|
||||||
|
|
Loading…
Reference in New Issue