http://patchwork.ozlabs.org/patch/390074/
It is a rather simple patch adding support for the Pause key in the GTK UI. It should not cause any regressions. Please apply. Thanks. M.D. On 16-09-2014 16:04, Martin Decky wrote:
Special handing of the Pause key. Implemented in a similar way as in ui/sdl.c. Signed-off-by: Martin Decky <mar...@decky.cz> --- ui/gtk.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/gtk.c b/ui/gtk.c index 2345d7e..e52cab1 100644 --- a/ui/gtk.c +++ b/ui/gtk.c @@ -931,6 +931,12 @@ static gboolean gd_key_event(GtkWidget *widget, GdkEventKey *key, void *opaque) int qemu_keycode; int i; + if (key->keyval == GDK_KEY_Pause) { + qemu_input_event_send_key_qcode(vc->gfx.dcl.con, Q_KEY_CODE_PAUSE, + key->type == GDK_KEY_PRESS); + return TRUE; + } + qemu_keycode = gd_map_keycode(s, gtk_widget_get_display(widget), gdk_keycode);