* [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
@ 2013-12-07 15:25 Stefan Weil
2013-12-18 18:14 ` Stefan Weil
2013-12-18 18:28 ` Andreas Färber
0 siblings, 2 replies; 8+ messages in thread
From: Stefan Weil @ 2013-12-07 15:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Stefan Weil, Anthony Liguori
GTK uses different hardware keycodes on Windows hosts, so some special
handling is needed to get the QEMU keycode.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
ui/gtk.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/ui/gtk.c b/ui/gtk.c
index 6316f5b..a633d89 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -34,6 +34,10 @@
#define GETTEXT_PACKAGE "qemu"
#define LOCALEDIR "po"
+#ifdef _WIN32
+# define _WIN32_WINNT 0x0601 /* needed to get definition of MAPVK_VK_TO_VSC */
+#endif
+
#include "qemu-common.h"
#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
@@ -704,11 +708,18 @@ static gboolean gd_button_event(GtkWidget *widget, GdkEventButton *button,
static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
{
GtkDisplayState *s = opaque;
- int gdk_keycode;
- int qemu_keycode;
+ int gdk_keycode = key->hardware_keycode;
int i;
- gdk_keycode = key->hardware_keycode;
+#ifdef _WIN32
+ UINT qemu_keycode = MapVirtualKey(gdk_keycode, MAPVK_VK_TO_VSC);
+ switch (qemu_keycode) {
+ case 103: /* alt gr */
+ qemu_keycode = 56 | SCANCODE_GREY;
+ break;
+ }
+#else
+ int qemu_keycode;
if (gdk_keycode < 9) {
qemu_keycode = 0;
@@ -723,6 +734,7 @@ static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
} else {
qemu_keycode = 0;
}
+#endif
trace_gd_key_event(gdk_keycode, qemu_keycode,
(key->type == GDK_KEY_PRESS) ? "down" : "up");
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2013-12-07 15:25 [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows Stefan Weil
@ 2013-12-18 18:14 ` Stefan Weil
2014-01-10 19:02 ` Stefan Weil
2013-12-18 18:28 ` Andreas Färber
1 sibling, 1 reply; 8+ messages in thread
From: Stefan Weil @ 2013-12-18 18:14 UTC (permalink / raw)
To: qemu-devel; +Cc: Anthony Liguori
Am 07.12.2013 16:25, schrieb Stefan Weil:
> GTK uses different hardware keycodes on Windows hosts, so some special
> handling is needed to get the QEMU keycode.
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
> ui/gtk.c | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/ui/gtk.c b/ui/gtk.c
> index 6316f5b..a633d89 100644
> --- a/ui/gtk.c
> +++ b/ui/gtk.c
> @@ -34,6 +34,10 @@
> #define GETTEXT_PACKAGE "qemu"
> #define LOCALEDIR "po"
>
> +#ifdef _WIN32
> +# define _WIN32_WINNT 0x0601 /* needed to get definition of MAPVK_VK_TO_VSC */
> +#endif
> +
> #include "qemu-common.h"
>
> #ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
> @@ -704,11 +708,18 @@ static gboolean gd_button_event(GtkWidget *widget, GdkEventButton *button,
> static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
> {
> GtkDisplayState *s = opaque;
> - int gdk_keycode;
> - int qemu_keycode;
> + int gdk_keycode = key->hardware_keycode;
> int i;
>
> - gdk_keycode = key->hardware_keycode;
> +#ifdef _WIN32
> + UINT qemu_keycode = MapVirtualKey(gdk_keycode, MAPVK_VK_TO_VSC);
> + switch (qemu_keycode) {
> + case 103: /* alt gr */
> + qemu_keycode = 56 | SCANCODE_GREY;
> + break;
> + }
> +#else
> + int qemu_keycode;
>
> if (gdk_keycode < 9) {
> qemu_keycode = 0;
> @@ -723,6 +734,7 @@ static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
> } else {
> qemu_keycode = 0;
> }
> +#endif
>
> trace_gd_key_event(gdk_keycode, qemu_keycode,
> (key->type == GDK_KEY_PRESS) ? "down" : "up");
Ping? Should I send a MinGW pull request for this patch?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2013-12-07 15:25 [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows Stefan Weil
2013-12-18 18:14 ` Stefan Weil
@ 2013-12-18 18:28 ` Andreas Färber
2013-12-18 20:12 ` Stefan Weil
1 sibling, 1 reply; 8+ messages in thread
From: Andreas Färber @ 2013-12-18 18:28 UTC (permalink / raw)
To: Stefan Weil, qemu-devel; +Cc: Anthony Liguori
Am 07.12.2013 16:25, schrieb Stefan Weil:
> GTK uses different hardware keycodes on Windows hosts, so some special
> handling is needed to get the QEMU keycode.
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
> ui/gtk.c | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/ui/gtk.c b/ui/gtk.c
> index 6316f5b..a633d89 100644
> --- a/ui/gtk.c
> +++ b/ui/gtk.c
> @@ -34,6 +34,10 @@
> #define GETTEXT_PACKAGE "qemu"
> #define LOCALEDIR "po"
>
> +#ifdef _WIN32
> +# define _WIN32_WINNT 0x0601 /* needed to get definition of MAPVK_VK_TO_VSC */
IIRC that symbol forces compilation for that particular Windows version
and later versions but won't work on lower versions then, right?
In that case shouldn't that live somewhere more central than gtk.c, like
QEMU_CFLAGS in configure?
> +#endif
> +
> #include "qemu-common.h"
>
> #ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
> @@ -704,11 +708,18 @@ static gboolean gd_button_event(GtkWidget *widget, GdkEventButton *button,
> static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
> {
> GtkDisplayState *s = opaque;
> - int gdk_keycode;
> - int qemu_keycode;
> + int gdk_keycode = key->hardware_keycode;
> int i;
>
> - gdk_keycode = key->hardware_keycode;
> +#ifdef _WIN32
> + UINT qemu_keycode = MapVirtualKey(gdk_keycode, MAPVK_VK_TO_VSC);
Possibly handle the #ifndef MAPVK_VK_TO_VSC case?
What Windows version are we talking about anyway? XP? Vista? 7?
Regards,
Andreas
> + switch (qemu_keycode) {
> + case 103: /* alt gr */
> + qemu_keycode = 56 | SCANCODE_GREY;
> + break;
> + }
> +#else
> + int qemu_keycode;
>
> if (gdk_keycode < 9) {
> qemu_keycode = 0;
> @@ -723,6 +734,7 @@ static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
> } else {
> qemu_keycode = 0;
> }
> +#endif
>
> trace_gd_key_event(gdk_keycode, qemu_keycode,
> (key->type == GDK_KEY_PRESS) ? "down" : "up");
>
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2013-12-18 18:28 ` Andreas Färber
@ 2013-12-18 20:12 ` Stefan Weil
2013-12-18 20:17 ` Stefan Weil
0 siblings, 1 reply; 8+ messages in thread
From: Stefan Weil @ 2013-12-18 20:12 UTC (permalink / raw)
To: Andreas Färber, qemu-devel; +Cc: Anthony Liguori
Am 18.12.2013 19:28, schrieb Andreas Färber:
> Am 07.12.2013 16:25, schrieb Stefan Weil:
>> GTK uses different hardware keycodes on Windows hosts, so some special
>> handling is needed to get the QEMU keycode.
>>
>> Signed-off-by: Stefan Weil <sw@weilnetz.de>
>> ---
>> ui/gtk.c | 18 +++++++++++++++---
>> 1 file changed, 15 insertions(+), 3 deletions(-)
>>
>> diff --git a/ui/gtk.c b/ui/gtk.c
>> index 6316f5b..a633d89 100644
>> --- a/ui/gtk.c
>> +++ b/ui/gtk.c
>> @@ -34,6 +34,10 @@
>> #define GETTEXT_PACKAGE "qemu"
>> #define LOCALEDIR "po"
>>
>> +#ifdef _WIN32
>> +# define _WIN32_WINNT 0x0601 /* needed to get definition of MAPVK_VK_TO_VSC */
> IIRC that symbol forces compilation for that particular Windows version
> and later versions but won't work on lower versions then, right?
> In that case shouldn't that live somewhere more central than gtk.c, like
> QEMU_CFLAGS in configure?
The MinGW include files only define MAPVK_VK_TO_VSC if _WIN32_WINNT >=
0x0601 (== _WIN32_WINNT_WIN7). By default, _WIN32_WINNT == 0x0502 (==
_WIN32_WINNT_WS03).
A more central place is fine for the future, but for now I'd prefer to
minimize potential cross effects. We already have a name conflict
between Windows macros and local QEMU macros in a file which is not
Windows related at all. Ideally, only few source files would include
Windows include file - then _WIN32_WINNT could be defined in
include/sysemu/os-win32.h.
>> +#endif
>> +
>> #include "qemu-common.h"
>>
>> #ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
>> @@ -704,11 +708,18 @@ static gboolean gd_button_event(GtkWidget *widget, GdkEventButton *button,
>> static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
>> {
>> GtkDisplayState *s = opaque;
>> - int gdk_keycode;
>> - int qemu_keycode;
>> + int gdk_keycode = key->hardware_keycode;
>> int i;
>>
>> - gdk_keycode = key->hardware_keycode;
>> +#ifdef _WIN32
>> + UINT qemu_keycode = MapVirtualKey(gdk_keycode, MAPVK_VK_TO_VSC);
> Possibly handle the #ifndef MAPVK_VK_TO_VSC case?
> What Windows version are we talking about anyway? XP? Vista? 7?
I have no solution for the #ifndef MAPVK_VK_TO_VSC case. The code works
for me with Windows 7 and 8.1, but might work with older versions, too.
If someone has Windows XP, a test can be run with
http://qemu.weilnetz.de/w32/qemu-w32-setup-20131128.exe. According to
MSDN, MapVirtualKey is available since Windows 2000 Professional.
> Regards,
> Andreas
Regards,
Stefan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2013-12-18 20:12 ` Stefan Weil
@ 2013-12-18 20:17 ` Stefan Weil
0 siblings, 0 replies; 8+ messages in thread
From: Stefan Weil @ 2013-12-18 20:17 UTC (permalink / raw)
To: Andreas Färber, qemu-devel; +Cc: Anthony Liguori
Am 18.12.2013 21:12, schrieb Stefan Weil:
> I have no solution for the #ifndef MAPVK_VK_TO_VSC case. The code works
> for me with Windows 7 and 8.1, but might work with older versions, too.
> If someone has Windows XP, a test can be run with
> http://qemu.weilnetz.de/w32/qemu-w32-setup-20131128.exe. According to
> MSDN, MapVirtualKey is available since Windows 2000 Professional.
I forgot to mention that the patch fixes keyboard input for QEMU running
with Wine, too. So obviously Wine supports the MapVirtualKey interface.
Cheers, Stefan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2013-12-18 18:14 ` Stefan Weil
@ 2014-01-10 19:02 ` Stefan Weil
2014-01-19 21:18 ` Stefan Weil
0 siblings, 1 reply; 8+ messages in thread
From: Stefan Weil @ 2014-01-10 19:02 UTC (permalink / raw)
To: Anthony Liguori; +Cc: qemu-devel, Andreas Färber
Am 18.12.2013 19:14, schrieb Stefan Weil:
> Am 07.12.2013 16:25, schrieb Stefan Weil:
>> GTK uses different hardware keycodes on Windows hosts, so some special
>> handling is needed to get the QEMU keycode.
>>
>> Signed-off-by: Stefan Weil <sw@weilnetz.de>
>> ---
>> ui/gtk.c | 18 +++++++++++++++---
>> 1 file changed, 15 insertions(+), 3 deletions(-)
>>
>> diff --git a/ui/gtk.c b/ui/gtk.c
>> index 6316f5b..a633d89 100644
>> --- a/ui/gtk.c
>> +++ b/ui/gtk.c
>> @@ -34,6 +34,10 @@
>> #define GETTEXT_PACKAGE "qemu"
>> #define LOCALEDIR "po"
>>
>> +#ifdef _WIN32
>> +# define _WIN32_WINNT 0x0601 /* needed to get definition of MAPVK_VK_TO_VSC */
>> +#endif
>> +
>> #include "qemu-common.h"
>>
>> #ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
>> @@ -704,11 +708,18 @@ static gboolean gd_button_event(GtkWidget *widget, GdkEventButton *button,
>> static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
>> {
>> GtkDisplayState *s = opaque;
>> - int gdk_keycode;
>> - int qemu_keycode;
>> + int gdk_keycode = key->hardware_keycode;
>> int i;
>>
>> - gdk_keycode = key->hardware_keycode;
>> +#ifdef _WIN32
>> + UINT qemu_keycode = MapVirtualKey(gdk_keycode, MAPVK_VK_TO_VSC);
>> + switch (qemu_keycode) {
>> + case 103: /* alt gr */
>> + qemu_keycode = 56 | SCANCODE_GREY;
>> + break;
>> + }
>> +#else
>> + int qemu_keycode;
>>
>> if (gdk_keycode < 9) {
>> qemu_keycode = 0;
>> @@ -723,6 +734,7 @@ static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
>> } else {
>> qemu_keycode = 0;
>> }
>> +#endif
>>
>> trace_gd_key_event(gdk_keycode, qemu_keycode,
>> (key->type == GDK_KEY_PRESS) ? "down" : "up");
>
> Ping? Should I send a MinGW pull request for this patch?
>
Ping^2? I tried to answer Andreas' questions. Are there any more?
Stefan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2014-01-10 19:02 ` Stefan Weil
@ 2014-01-19 21:18 ` Stefan Weil
2014-01-20 9:52 ` Paolo Bonzini
0 siblings, 1 reply; 8+ messages in thread
From: Stefan Weil @ 2014-01-19 21:18 UTC (permalink / raw)
To: Anthony Liguori; +Cc: qemu-devel, Andreas Färber
Am 10.01.2014 20:02, schrieb Stefan Weil:
> Am 18.12.2013 19:14, schrieb Stefan Weil:
>> Am 07.12.2013 16:25, schrieb Stefan Weil:
>>> GTK uses different hardware keycodes on Windows hosts, so some special
>>> handling is needed to get the QEMU keycode.
>>>
>>> Signed-off-by: Stefan Weil <sw@weilnetz.de>
>>> ---
>>> ui/gtk.c | 18 +++++++++++++++---
>>> 1 file changed, 15 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/ui/gtk.c b/ui/gtk.c
>>> index 6316f5b..a633d89 100644
>>> --- a/ui/gtk.c
>>> +++ b/ui/gtk.c
>>> @@ -34,6 +34,10 @@
>>> #define GETTEXT_PACKAGE "qemu"
>>> #define LOCALEDIR "po"
>>>
>>> +#ifdef _WIN32
>>> +# define _WIN32_WINNT 0x0601 /* needed to get definition of MAPVK_VK_TO_VSC */
>>> +#endif
>>> +
>>> #include "qemu-common.h"
>>>
>>> #ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
>>> @@ -704,11 +708,18 @@ static gboolean gd_button_event(GtkWidget *widget, GdkEventButton *button,
>>> static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
>>> {
>>> GtkDisplayState *s = opaque;
>>> - int gdk_keycode;
>>> - int qemu_keycode;
>>> + int gdk_keycode = key->hardware_keycode;
>>> int i;
>>>
>>> - gdk_keycode = key->hardware_keycode;
>>> +#ifdef _WIN32
>>> + UINT qemu_keycode = MapVirtualKey(gdk_keycode, MAPVK_VK_TO_VSC);
>>> + switch (qemu_keycode) {
>>> + case 103: /* alt gr */
>>> + qemu_keycode = 56 | SCANCODE_GREY;
>>> + break;
>>> + }
>>> +#else
>>> + int qemu_keycode;
>>>
>>> if (gdk_keycode < 9) {
>>> qemu_keycode = 0;
>>> @@ -723,6 +734,7 @@ static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque)
>>> } else {
>>> qemu_keycode = 0;
>>> }
>>> +#endif
>>>
>>> trace_gd_key_event(gdk_keycode, qemu_keycode,
>>> (key->type == GDK_KEY_PRESS) ? "down" : "up");
>>
>> Ping? Should I send a MinGW pull request for this patch?
>>
>
>
> Ping^2? I tried to answer Andreas' questions. Are there any more?
>
> Stefan
>
Ping^3. What is missing to get this patch applied? It was sent more than
a month ago (2012-12-07).
Stefan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows
2014-01-19 21:18 ` Stefan Weil
@ 2014-01-20 9:52 ` Paolo Bonzini
0 siblings, 0 replies; 8+ messages in thread
From: Paolo Bonzini @ 2014-01-20 9:52 UTC (permalink / raw)
To: Stefan Weil; +Cc: qemu-devel, Anthony Liguori, Andreas Färber
Il 19/01/2014 22:18, Stefan Weil ha scritto:
> Ping^3. What is missing to get this patch applied? It was sent more than
> a month ago (2012-12-07).
You are Win32 maintainer, just send a pull request.
Paolo
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-01-20 9:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-07 15:25 [Qemu-devel] [PATCH] gtk: Support keyboard translation for hosts running Windows Stefan Weil
2013-12-18 18:14 ` Stefan Weil
2014-01-10 19:02 ` Stefan Weil
2014-01-19 21:18 ` Stefan Weil
2014-01-20 9:52 ` Paolo Bonzini
2013-12-18 18:28 ` Andreas Färber
2013-12-18 20:12 ` Stefan Weil
2013-12-18 20:17 ` Stefan Weil
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).