From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59650) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFqYa-00043a-LI for qemu-devel@nongnu.org; Wed, 22 Jun 2016 18:23:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bFqYU-0006Do-5q for qemu-devel@nongnu.org; Wed, 22 Jun 2016 18:23:36 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:51243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFqYT-0006DT-Un for qemu-devel@nongnu.org; Wed, 22 Jun 2016 18:23:30 -0400 From: Samuel Thibault Date: Thu, 23 Jun 2016 00:23:17 +0200 Message-Id: <1466634202-24616-1-git-send-email-samuel.thibault@ens-lyon.org> Subject: [Qemu-devel] [PATCH 0/5] curses: wide character support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, kraxel@redhat.com, pbonzini@redhat.com, berrange@redhat.com, peter.maydell@linaro.org, mjt@tls.msk.ru Cc: Samuel Thibault Hello, This patch series adds wide character support to the curses frontend of qemu, thus allowing to fix a lot of input and output issues with e.g. accented letters and semi-graphic glyphs. Since qemu can't know the encoding of the VGA font, the user has to specify it (just like he has to specify the keyboard layout with -k). I used option -f to make it simple for now, but I welcome any other idea :) Samuel Samuel Thibault (5): curses: fix left/right arrow translation curses: Use cursesw when available curses: use wide output functions curses: add option to specify VGA font encoding curses: support wide input configure | 101 +++++++++++- hw/display/vga.c | 4 +- include/sysemu/sysemu.h | 1 + include/ui/console.h | 19 ++- qemu-options.hx | 20 +++ ui/curses.c | 408 ++++++++++++++++++++++++++++++++++++++++++++---- ui/curses_keys.h | 113 ++++++++------ vl.c | 4 + 8 files changed, 589 insertions(+), 81 deletions(-) -- 2.8.1