From c719e4a0c9e1e3e5b7d22aa42cdaedda3cb06803 Mon Sep 17 00:00:00 2001 From: Rahul Kale Date: Thu, 13 Jul 2017 00:36:02 +0200 Subject: [PATCH] rfb_win32: Add support for LED state notifications LED support added using Windows GetKeyState() API call. The state is polled for change in CapsLock/NumLock/ScrollLock status in the same code block where chages to Cursor shape is polled. Signed-off-by: Rahul Kale Signed-off-by: Peter Korsgaard --- win/rfb_win32/SDisplay.cxx | 29 ++++++++++++++++++++++++++++- win/rfb_win32/SDisplay.h | 3 +++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/win/rfb_win32/SDisplay.cxx b/win/rfb_win32/SDisplay.cxx index ac64e3ef..2696f5dc 100644 --- a/win/rfb_win32/SDisplay.cxx +++ b/win/rfb_win32/SDisplay.cxx @@ -30,6 +30,7 @@ #include #include #include +#include using namespace rdr; @@ -65,7 +66,7 @@ SDisplay::SDisplay() : server(0), pb(0), device(0), core(0), ptr(0), kbd(0), clipboard(0), inputs(0), monitor(0), cleanDesktop(0), cursor(0), - statusLocation(0) + statusLocation(0), ledState(0) { updateEvent.h = CreateEvent(0, TRUE, FALSE, 0); } @@ -196,6 +197,10 @@ void SDisplay::startCore() { cleanDesktop->disableEffects(); isWallpaperRemoved = removeWallpaper; areEffectsDisabled = disableEffects; + + checkLedState(); + if (server) + server->setLEDState(ledState); } void SDisplay::stopCore() { @@ -283,6 +288,24 @@ void SDisplay::keyEvent(rdr::U32 key, bool down) { kbd->keyEvent(key, down); } +bool SDisplay::checkLedState() { + unsigned state = 0; + + if (GetKeyState(VK_SCROLL) & 0x0001) + state |= ledScrollLock; + if (GetKeyState(VK_NUMLOCK) & 0x0001) + state |= ledNumLock; + if (GetKeyState(VK_CAPITAL) & 0x0001) + state |= ledCapsLock; + + if (ledState != state) { + ledState = state; + return true; + } + + return false; +} + void SDisplay::clientCutText(const char* text, int len) { CharArray clip_sz(len+1); memcpy(clip_sz.buf, text, len); @@ -384,6 +407,10 @@ SDisplay::processEvent(HANDLE event) { // Flush any changes to the server flushChangeTracker(); + + // Forward current LED state to the server + if (checkLedState()) + server->setLEDState(ledState); } return; } diff --git a/win/rfb_win32/SDisplay.h b/win/rfb_win32/SDisplay.h index b0217822..e43e3021 100644 --- a/win/rfb_win32/SDisplay.h +++ b/win/rfb_win32/SDisplay.h @@ -106,6 +106,7 @@ namespace rfb { void restartCore(); void recreatePixelBuffer(bool force=false); bool flushChangeTracker(); // true if flushed, false if empty + bool checkLedState(); VNCServer* server; @@ -151,6 +152,8 @@ namespace rfb { // -=- Where to write the active/inactive indicator to bool* statusLocation; + + unsigned ledState; }; } -- 2.39.5