aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/InputHandler.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2017-05-16 14:30:38 +0200
committerPierre Ossman <ossman@cendio.se>2017-08-28 13:54:30 +0200
commit5ae282135f982505fab655d4f597e7329fb8b0d1 (patch)
treefe4b2315735c1db49be288fee04dcb4674296364 /common/rfb/InputHandler.h
parentc719e4a0c9e1e3e5b7d22aa42cdaedda3cb06803 (diff)
downloadtigervnc-5ae282135f982505fab655d4f597e7329fb8b0d1.tar.gz
tigervnc-5ae282135f982505fab655d4f597e7329fb8b0d1.zip
Basic support for QEMU Extended Key Events
This adds the basic infrastructure and handshake for the QEMU Extended Key Events extension. No viewer or server makes use of the extra functionality yet though.
Diffstat (limited to 'common/rfb/InputHandler.h')
-rw-r--r--common/rfb/InputHandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/InputHandler.h b/common/rfb/InputHandler.h
index b5e5e879..0344bc3f 100644
--- a/common/rfb/InputHandler.h
+++ b/common/rfb/InputHandler.h
@@ -31,7 +31,7 @@ namespace rfb {
class InputHandler {
public:
virtual ~InputHandler() {}
- virtual void keyEvent(rdr::U32 key, bool down) {}
+ virtual void keyEvent(rdr::U32 keysym, rdr::U32 keycode, bool down) {}
virtual void pointerEvent(const Point& pos, int buttonMask) {}
virtual void clientCutText(const char* str, int len) {}
};