From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Woph4-0004UV-Tb for qemu-devel@nongnu.org; Mon, 26 May 2014 03:51:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Woph0-0007sL-2i for qemu-devel@nongnu.org; Mon, 26 May 2014 03:51:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57703) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wopgz-0007s6-Px for qemu-devel@nongnu.org; Mon, 26 May 2014 03:51:34 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s4Q7pVXC009351 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 26 May 2014 03:51:32 -0400 From: Gerd Hoffmann Date: Mon, 26 May 2014 09:51:16 +0200 Message-Id: <1401090686-1095-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 00/10] input: add event routing and multiseat support. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Input layer continued: Adding input routing for multiseat. Also has some bugfixes. please pull, Gerd The following changes since commit 178ac111bca16c08a79b2609ebdc75197bea976a: Merge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging (2014-05-22 19:04:49 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-input-9 for you to fetch changes up to 8977bd111f62035b675d41c432eb8b6bf6b86b0f: docs: add multiseat.txt (2014-05-26 08:42:43 +0200) ---------------------------------------------------------------- input: add event routing and multiseat support. input: misc bugfixes and minor improvements. ---------------------------------------------------------------- Andrew Oates (1): input (curses): mask keycodes to remove modifier bits Gerd Hoffmann (9): input: add qemu_input_key_number_to_qcode input: add name to input_event_key_number input: keymap: add meta keys input: switch hid keyboard to new input layer api. input: switch hid mouse and tablet to the new input layer api. input: bind devices and input routing sdl: pass key event source to input layer usb: add input routing support for tablet and keyboard docs: add multiseat.txt docs/multiseat.txt | 76 +++++++++++++++++ hw/input/hid.c | 220 ++++++++++++++++++++++++++++++++----------------- hw/usb/dev-hid.c | 13 +++ include/hw/input/hid.h | 4 +- include/ui/input.h | 4 + trace-events | 2 +- ui/curses.c | 4 +- ui/input-keymap.c | 13 ++- ui/input.c | 49 +++++++++-- ui/sdl2.c | 21 +++-- 10 files changed, 308 insertions(+), 98 deletions(-) create mode 100644 docs/multiseat.txt