diff options
Diffstat (limited to 'libvncclient/rfbproto.c')
-rw-r--r-- | libvncclient/rfbproto.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c index 7f79c92..fe58a5e 100644 --- a/libvncclient/rfbproto.c +++ b/libvncclient/rfbproto.c @@ -521,6 +521,7 @@ SetFormatAndEncodings(rfbClient* client) rfbEncodingQualityLevel0); } + if (client->appData.useRemoteCursor) { if (se->nEncodings < MAX_ENCODINGS) encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingXCursor); @@ -530,6 +531,11 @@ SetFormatAndEncodings(rfbClient* client) encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingPointerPos); } + /* Let's receive keyboard state encoding if available */ + if (se->nEncodings < MAX_ENCODINGS) { + encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingKeyboardLedState); + } + if (se->nEncodings < MAX_ENCODINGS && requestLastRectEncoding) { encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingLastRect); } @@ -586,6 +592,11 @@ SetFormatAndEncodings(rfbClient* client) encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingPointerPos); } + /* Keyboard State Encodings */ + if (se->nEncodings < MAX_ENCODINGS) { + encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingKeyboardLedState); + } + encs[se->nEncodings++] = rfbClientSwap32IfLE(rfbEncodingLastRect); } @@ -785,6 +796,16 @@ HandleRFBServerMessage(rfbClient* client) } continue; } + + if (rect.encoding == rfbEncodingKeyboardLedState) { + /* OK! We have received a keyboard state message!!! */ + client->KeyboardLedStateEnabled = 1; + if (client->HandleKeyboardLedState!=NULL) + client->HandleKeyboardLedState(client, rect.r.x, 0); + // stash it for the future + client->CurrentKeyboardLedState = rect.r.x; + continue; + } if ((rect.r.x + rect.r.w > client->si.framebufferWidth) || (rect.r.y + rect.r.h > client->si.framebufferHeight)) |