FreeRDP
Loading...
Searching...
No Matches
sdlInput Class Reference

#include <sdl_kbd.hpp>

Public Member Functions

 sdlInput (SdlContext *sdl)
 
 sdlInput (const sdlInput &other)=delete
 
 sdlInput (sdlInput &&other)=delete
 
sdlInputoperator= (const sdlInput &other)=delete
 
sdlInputoperator= (sdlInput &&other)=delete
 
BOOL keyboard_sync_state ()
 
BOOL keyboard_focus_in ()
 
BOOL keyboard_handle_event (const SDL_KeyboardEvent *ev)
 
BOOL keyboard_grab (Uint32 windowID, bool enable)
 
BOOL mouse_focus (Uint32 windowID)
 
BOOL mouse_grab (Uint32 windowID, SDL_bool enable)
 
 sdlInput (SdlContext *sdl)
 
 sdlInput (const sdlInput &other)=delete
 
 sdlInput (sdlInput &&other)=delete
 
sdlInputoperator= (const sdlInput &other)=delete
 
sdlInputoperator= (sdlInput &&other)=delete
 
bool initialize ()
 
bool keyboard_sync_state ()
 
bool keyboard_focus_in ()
 
bool handleEvent (const SDL_KeyboardEvent &ev)
 
bool keyboard_grab (Uint32 windowID, bool enable)
 
bool mouse_focus (Uint32 windowID)
 
bool mouse_grab (Uint32 windowID, bool enable)
 
bool prefToEnabled ()
 
uint32_t prefToMask ()
 

Static Public Member Functions

static BOOL keyboard_set_indicators (rdpContext *context, UINT16 led_flags)
 
static BOOL keyboard_set_ime_status (rdpContext *context, UINT16 imeId, UINT32 imeState, UINT32 imeConvMode)
 
static bool prefToEnabled ()
 
static uint32_t prefToMask ()
 
static uint32_t prefKeyValue (const std::string &key, uint32_t fallback=SDL_SCANCODE_UNKNOWN)
 
static BOOL keyboard_set_indicators (rdpContext *context, UINT16 led_flags)
 
static BOOL keyboard_set_ime_status (rdpContext *context, UINT16 imeId, UINT32 imeState, UINT32 imeConvMode)
 
static uint32_t prefKeyValue (const std::string &key, uint32_t fallback=SDL_SCANCODE_UNKNOWN)
 

Detailed Description

FreeRDP: A Remote Desktop Protocol Implementation SDL Client keyboard helper

Copyright 2022 Armin Novak armin.nosp@m..nov.nosp@m.ak@th.nosp@m.inca.nosp@m.st.co.nosp@m.m

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Definition at line 34 of file sdl_kbd.hpp.

Constructor & Destructor Documentation

◆ sdlInput()

sdlInput::sdlInput ( SdlContext sdl)
explicit

Definition at line 595 of file sdl_kbd.cpp.

596 : _sdl(sdl), _lastWindowID(UINT32_MAX), _hotkeysEnabled(prefToEnabled()),
597 _hotkeyModmask(prefToMask())
598{
599 auto list =
600 freerdp_settings_get_string(_sdl->context()->settings, FreeRDP_KeyboardRemappingList);
601 _remapTable = freerdp_keyboard_remap_string_to_list(list);
602 assert(_remapTable);
603 _hotkeyFullscreen = prefKeyValue("SDL_Fullscreen", SDL_SCANCODE_RETURN);
604 _hotkeyResizable = prefKeyValue("SDL_Resizeable", SDL_SCANCODE_R);
605 _hotkeyGrab = prefKeyValue("SDL_Grab", SDL_SCANCODE_G);
606 _hotkeyDisconnect = prefKeyValue("SDL_Disconnect", SDL_SCANCODE_D);
607 _hotkeyMinimize = prefKeyValue("SDL_Minimize", SDL_SCANCODE_M);
608}
WINPR_ATTR_NODISCARD FREERDP_API const char * freerdp_settings_get_string(const rdpSettings *settings, FreeRDP_Settings_Keys_String id)
Returns a immutable string settings value.

◆ ~sdlInput()

sdlInput::~sdlInput ( )

Definition at line 610 of file sdl_kbd.cpp.

611{
612 freerdp_keyboard_remap_free(_remapTable);
613}

Member Function Documentation

◆ handleEvent()

bool sdlInput::handleEvent ( const SDL_KeyboardEvent &  ev)

Definition at line 551 of file SDL3/sdl_input.cpp.

552{
553 UINT32 rdp_scancode = scancode_to_rdp(ev.scancode);
554#if defined(_WIN32)
555 /* CJK IMEs on Windows may set the extended bit for Right Shift, producing
556 * the invalid scan code E0 36. SDL maps that event to SDL_SCANCODE_UNKNOWN,
557 * so normalize it in the same way as the native Windows client. */
558 if ((rdp_scancode == RDP_SCANCODE_UNKNOWN) && (ev.raw == 0xE036))
559 rdp_scancode = RDP_SCANCODE_RSHIFT;
560#endif
561 const SDL_Keymod mods = SDL_GetModState();
562
563 if (_hotkeysEnabled && (mods & _hotkeyModmask) == _hotkeyModmask)
564 {
565 if (ev.type == SDL_EVENT_KEY_DOWN)
566 {
567 if (ev.scancode == _hotkeyFullscreen)
568 {
569 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, toggling fullscreen state",
570 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyFullscreen));
571 if (!keyboard_sync_state())
572 return false;
573 return _sdl->toggleFullscreen();
574 }
575 if (ev.scancode == _hotkeyResizable)
576 {
577 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, toggling resizeable state",
578 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyResizable));
579 if (!keyboard_sync_state())
580 return false;
581 return _sdl->toggleResizeable();
582 }
583
584 if (ev.scancode == _hotkeyGrab)
585 {
586 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, toggling grab state",
587 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyGrab));
588 if (!keyboard_sync_state())
589 return false;
590 return keyboard_grab(ev.windowID, !_sdl->grabKeyboard());
591 }
592 if (ev.scancode == _hotkeyDisconnect)
593 {
594 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, disconnecting RDP session",
595 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyDisconnect));
596 if (!keyboard_sync_state())
597 return false;
598 freerdp_abort_connect_context(_sdl->context());
599 return true;
600 }
601 if (ev.scancode == _hotkeyMinimize)
602 {
603 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, minimizing client",
604 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyMinimize));
605 if (!keyboard_sync_state())
606 return false;
607 return _sdl->setMinimized();
608 }
609 }
610 }
611
612#if defined(WITH_DEBUG_KBD)
613 {
614 const BOOL ex = RDP_SCANCODE_EXTENDED(rdp_scancode);
615 const DWORD sc = RDP_SCANCODE_CODE(rdp_scancode);
616 WLog_Print(_sdl->getWLog(), WLOG_DEBUG,
617 "SDL keycode: %02" PRIX32 " -> rdp code: [%04" PRIx16 "] %02" PRIX8 "%s",
618 ev.scancode, rdp_scancode, sc, ex ? " extended" : "");
619 }
620#endif
621
622 auto scancode = freerdp_keyboard_remap_key(_remapTable, rdp_scancode);
623#if defined(WITH_DEBUG_KBD)
624 {
625 const BOOL ex = RDP_SCANCODE_EXTENDED(scancode);
626 const DWORD sc = RDP_SCANCODE_CODE(scancode);
627 WLog_Print(_sdl->getWLog(), WLOG_DEBUG,
628 "SDL keycode: %02" PRIX32 " -> remapped rdp code: [%04" PRIx16 "] %02" PRIX8
629 "%s",
630 ev.scancode, scancode, sc, ex ? " extended" : "");
631 }
632#endif
633 return freerdp_input_send_keyboard_event_ex(_sdl->context()->input,
634 ev.type == SDL_EVENT_KEY_DOWN, ev.repeat, scancode);
635}

◆ initialize()

bool sdlInput::initialize ( )

Definition at line 691 of file SDL3/sdl_input.cpp.

692{
693 auto settings = _sdl->context()->settings;
694 WINPR_ASSERT(settings);
695 WINPR_ASSERT(!_remapTable);
696
697 {
698 auto list = freerdp_settings_get_string(settings, FreeRDP_KeyboardRemappingList);
699 _remapTable = freerdp_keyboard_remap_string_to_list(list);
700 if (!_remapTable)
701 return false;
702 }
703
704 if (freerdp_settings_get_uint32(settings, FreeRDP_KeyboardLayout) == 0)
705 {
706 DWORD KeyboardLayout = 0;
707
708 freerdp_detect_keyboard_layout_from_system_locale(&KeyboardLayout);
709 if (KeyboardLayout == 0)
710 KeyboardLayout = ENGLISH_UNITED_STATES;
711
712 if (!freerdp_settings_set_uint32(settings, FreeRDP_KeyboardLayout, KeyboardLayout))
713 return false;
714 }
715 return true;
716}
WINPR_ATTR_NODISCARD FREERDP_API BOOL freerdp_settings_set_uint32(rdpSettings *settings, FreeRDP_Settings_Keys_UInt32 id, UINT32 val)
Sets a UINT32 settings value.
WINPR_ATTR_NODISCARD FREERDP_API UINT32 freerdp_settings_get_uint32(const rdpSettings *settings, FreeRDP_Settings_Keys_UInt32 id)
Returns a UINT32 settings value.

◆ keyboard_focus_in()

bool sdlInput::keyboard_focus_in ( )

Definition at line 323 of file sdl_kbd.cpp.

324{
325 auto input = _sdl->context()->input;
326 WINPR_ASSERT(input);
327
328 auto syncFlags = sdl_get_kbd_flags();
329 freerdp_input_send_focus_in_event(input, WINPR_ASSERTING_INT_CAST(UINT16, syncFlags));
330
331 /* finish with a mouse pointer position like mstsc.exe if required */
332 // TODO: fullscreen/remote app
333 int x = 0;
334 int y = 0;
335 if (_sdl->fullscreen)
336 {
337 SDL_GetGlobalMouseState(&x, &y);
338 }
339 else
340 {
341 SDL_GetMouseState(&x, &y);
342 }
343 auto w = SDL_GetMouseFocus();
344 if (w)
345 {
346 auto id = SDL_GetWindowID(w);
347 sdl_scale_coordinates(_sdl, id, &x, &y, TRUE, TRUE);
348 }
349 return freerdp_client_send_button_event(_sdl->common(), FALSE, PTR_FLAGS_MOVE, x, y);
350}

◆ keyboard_grab()

bool sdlInput::keyboard_grab ( Uint32  windowID,
bool  enable 
)

Definition at line 561 of file sdl_kbd.cpp.

562{
563 auto it = _sdl->windows.find(windowID);
564 if (it == _sdl->windows.end())
565 return FALSE;
566
567 auto status = enable && _sdl->grab_kbd_enabled;
568 _sdl->grab_kbd = status;
569 return it->second.grabKeyboard(status);
570}

◆ keyboard_handle_event()

BOOL sdlInput::keyboard_handle_event ( const SDL_KeyboardEvent *  ev)

Definition at line 517 of file sdl_kbd.cpp.

518{
519 WINPR_ASSERT(ev);
520 const UINT32 rdp_scancode = sdl_scancode_to_rdp(ev->keysym.scancode);
521 const SDL_Keymod mods = SDL_GetModState();
522
523 if (_hotkeysEnabled && (mods & _hotkeyModmask) == _hotkeyModmask)
524 {
525 if (ev->type == SDL_KEYDOWN)
526 {
527 if (ev->keysym.scancode == _hotkeyFullscreen)
528 {
529 _sdl->update_fullscreen(!_sdl->fullscreen);
530 return TRUE;
531 }
532 if (ev->keysym.scancode == _hotkeyResizable)
533 {
534 _sdl->update_resizeable(!_sdl->resizeable);
535 return TRUE;
536 }
537
538 if (ev->keysym.scancode == _hotkeyGrab)
539 {
540 keyboard_grab(ev->windowID, !_sdl->grab_kbd);
541 return TRUE;
542 }
543 if (ev->keysym.scancode == _hotkeyDisconnect)
544 {
545 freerdp_abort_connect_context(_sdl->context());
546 return TRUE;
547 }
548 if (ev->keysym.scancode == _hotkeyMinimize)
549 {
550 _sdl->update_minimize();
551 return TRUE;
552 }
553 }
554 }
555
556 auto scancode = freerdp_keyboard_remap_key(_remapTable, rdp_scancode);
557 return freerdp_input_send_keyboard_event_ex(_sdl->context()->input, ev->type == SDL_KEYDOWN,
558 ev->repeat, scancode);
559}

◆ keyboard_set_ime_status()

BOOL sdlInput::keyboard_set_ime_status ( rdpContext *  context,
UINT16  imeId,
UINT32  imeState,
UINT32  imeConvMode 
)
static

Definition at line 377 of file sdl_kbd.cpp.

379{
380 if (!context)
381 return FALSE;
382
383 WLog_WARN(TAG,
384 "KeyboardSetImeStatus(unitId=%04" PRIx16 ", imeState=%08" PRIx32
385 ", imeConvMode=%08" PRIx32 ") ignored",
386 imeId, imeState, imeConvMode);
387 return TRUE;
388}

◆ keyboard_set_indicators()

BOOL sdlInput::keyboard_set_indicators ( rdpContext *  context,
UINT16  led_flags 
)
static

Definition at line 353 of file sdl_kbd.cpp.

354{
355 WINPR_UNUSED(context);
356
357 int state = KMOD_NONE;
358
359 if ((led_flags & KBD_SYNC_NUM_LOCK) != 0)
360 state |= KMOD_NUM;
361 if ((led_flags & KBD_SYNC_CAPS_LOCK) != 0)
362 state |= KMOD_CAPS;
363#if SDL_VERSION_ATLEAST(2, 0, 18)
364 if ((led_flags & KBD_SYNC_SCROLL_LOCK) != 0)
365 state |= KMOD_SCROLL;
366#endif
367
368 // TODO: KBD_SYNC_KANA_LOCK
369
370 // NOLINTNEXTLINE(clang-analyzer-optin.core.EnumCastOutOfRange)
371 SDL_SetModState(static_cast<SDL_Keymod>(state));
372
373 return TRUE;
374}

◆ keyboard_sync_state()

bool sdlInput::keyboard_sync_state ( )

Definition at line 317 of file sdl_kbd.cpp.

318{
319 const auto syncFlags = sdl_get_kbd_flags();
320 return freerdp_input_send_synchronize_event(_sdl->context()->input, syncFlags);
321}

◆ mouse_focus()

bool sdlInput::mouse_focus ( Uint32  windowID)

Definition at line 572 of file sdl_kbd.cpp.

573{
574 if (_lastWindowID != windowID)
575 {
576 _lastWindowID = windowID;
577 auto it = _sdl->windows.find(windowID);
578 if (it == _sdl->windows.end())
579 return FALSE;
580
581 it->second.raise();
582 }
583 return TRUE;
584}

◆ mouse_grab() [1/2]

bool sdlInput::mouse_grab ( Uint32  windowID,
bool  enable 
)

Definition at line 665 of file SDL3/sdl_input.cpp.

666{
667 auto window = _sdl->getWindowForId(windowID);
668 if (!window)
669 return false;
670 if (!_sdl->setGrabMouse(enable))
671 WLog_Print(_sdl->getWLog(), WLOG_WARN, "Failed to ungrab mouse");
672 return window->grabMouse(enable);
673}

◆ mouse_grab() [2/2]

BOOL sdlInput::mouse_grab ( Uint32  windowID,
SDL_bool  enable 
)

Definition at line 586 of file sdl_kbd.cpp.

587{
588 auto it = _sdl->windows.find(windowID);
589 if (it == _sdl->windows.end())
590 return FALSE;
591 _sdl->grab_mouse = enable;
592 return it->second.grabMouse(enable);
593}

◆ prefKeyValue()

uint32_t sdlInput::prefKeyValue ( const std::string &  key,
uint32_t  fallback = SDL_SCANCODE_UNKNOWN 
)
static

Definition at line 485 of file sdl_kbd.cpp.

486{
487 auto item = SdlPref::instance()->get_string(key);
488 if (item.empty())
489 return fallback;
490 auto val = sdl_scancode_val(item.c_str());
491 if (val == SDL_SCANCODE_UNKNOWN)
492 return fallback;
493 return val;
494}

◆ prefToEnabled()

bool sdlInput::prefToEnabled ( )
static

Definition at line 418 of file sdl_kbd.cpp.

419{
420 bool enable = true;
421 const auto& m = getSdlMap();
422 for (const auto& val : SdlPref::instance()->get_array("SDL_KeyModMask", { "KMOD_RSHIFT" }))
423 {
424 auto it = m.find(val);
425 if (it != m.end())
426 {
427 if (it->second == KMOD_NONE)
428 enable = false;
429 }
430 else
431 {
432 WLog_WARN(TAG, "Invalid config::SDL_KeyModMask entry value '%s', disabling hotkeys",
433 val.c_str());
434 enable = false;
435 }
436 }
437 return enable;
438}

◆ prefToMask()

uint32_t sdlInput::prefToMask ( )
static

Definition at line 440 of file sdl_kbd.cpp.

441{
442 const auto& mapping = getSdlMap();
443 uint32_t mod = KMOD_NONE;
444 for (const auto& val : SdlPref::instance()->get_array("SDL_KeyModMask", { "KMOD_RSHIFT" }))
445 {
446 auto it = mapping.find(val);
447 if (it != mapping.end())
448 mod |= it->second;
449 }
450 return mod;
451}

The documentation for this class was generated from the following files: