summaryrefslogtreecommitdiffstats
path: root/client/screen.cpp
diff options
context:
space:
mode:
authorYaniv Kamay <ykamay@redhat.com>2009-11-21 19:28:59 +0200
committerYaniv Kamay <ykamay@redhat.com>2009-11-30 18:22:13 +0200
commit6c5966d8ed8ff248ca21900aaf2350aac87f68e4 (patch)
treea210b657ee7f2815aeabad400b9bfa946cde50fb /client/screen.cpp
parent81241dd8251078fb049d35b7bc8a6c4dcfb6fa98 (diff)
downloadspice-6c5966d8ed8ff248ca21900aaf2350aac87f68e4.tar.gz
spice-6c5966d8ed8ff248ca21900aaf2350aac87f68e4.tar.xz
spice-6c5966d8ed8ff248ca21900aaf2350aac87f68e4.zip
client: KeyHandler now receive unicode char event in addition to RedKey events
Diffstat (limited to 'client/screen.cpp')
-rw-r--r--client/screen.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/screen.cpp b/client/screen.cpp
index 50905710..39c9dbc5 100644
--- a/client/screen.cpp
+++ b/client/screen.cpp
@@ -659,6 +659,11 @@ void RedScreen::on_key_release(RedKey key)
_owner.on_key_up(key);
}
+void RedScreen::on_char(uint32_t ch)
+{
+ _owner.on_char(ch);
+}
+
void RedScreen::on_deactivate()
{
relase_mouse();