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 559 of file SDL3/sdl_input.cpp.

560{
561 const UINT32 rdp_scancode = scancode_to_rdp(ev.scancode);
562 const SDL_Keymod mods = SDL_GetModState();
563
564 if (_hotkeysEnabled && (mods & _hotkeyModmask) == _hotkeyModmask)
565 {
566 if (ev.type == SDL_EVENT_KEY_DOWN)
567 {
568 if (ev.scancode == _hotkeyFullscreen)
569 {
570 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, toggling fullscreen state",
571 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyFullscreen));
572 if (!keyboard_sync_state())
573 return false;
574 return _sdl->toggleFullscreen();
575 }
576 if (ev.scancode == _hotkeyResizable)
577 {
578 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, toggling resizeable state",
579 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyResizable));
580 if (!keyboard_sync_state())
581 return false;
582 return _sdl->toggleResizeable();
583 }
584
585 if (ev.scancode == _hotkeyGrab)
586 {
587 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, toggling grab state",
588 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyGrab));
589 if (!keyboard_sync_state())
590 return false;
591 return keyboard_grab(ev.windowID, !_sdl->grabKeyboard());
592 }
593 if (ev.scancode == _hotkeyDisconnect)
594 {
595 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, disconnecting RDP session",
596 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyDisconnect));
597 if (!keyboard_sync_state())
598 return false;
599 freerdp_abort_connect_context(_sdl->context());
600 return true;
601 }
602 if (ev.scancode == _hotkeyMinimize)
603 {
604 WLog_Print(_sdl->getWLog(), WLOG_INFO, "%s+<%s> pressed, minimizing client",
605 masktostr(_hotkeyModmask).c_str(), sdl_scancode_name(_hotkeyMinimize));
606 if (!keyboard_sync_state())
607 return false;
608 return _sdl->setMinimized();
609 }
610 }
611 }
612
613#if defined(WITH_DEBUG_KBD)
614 {
615 const BOOL ex = RDP_SCANCODE_EXTENDED(rdp_scancode);
616 const DWORD sc = RDP_SCANCODE_CODE(rdp_scancode);
617 WLog_Print(_sdl->getWLog(), WLOG_DEBUG,
618 "SDL keycode: %02" PRIX32 " -> rdp code: [%04" PRIx16 "] %02" PRIX8 "%s",
619 ev.scancode, rdp_scancode, sc, ex ? " extended" : "");
620 }
621#endif
622
623 auto scancode = freerdp_keyboard_remap_key(_remapTable, rdp_scancode);
624#if defined(WITH_DEBUG_KBD)
625 {
626 const BOOL ex = RDP_SCANCODE_EXTENDED(scancode);
627 const DWORD sc = RDP_SCANCODE_CODE(scancode);
628 WLog_Print(_sdl->getWLog(), WLOG_DEBUG,
629 "SDL keycode: %02" PRIX32 " -> remapped rdp code: [%04" PRIx16 "] %02" PRIX8
630 "%s",
631 ev.scancode, scancode, sc, ex ? " extended" : "");
632 }
633#endif
634 return freerdp_input_send_keyboard_event_ex(_sdl->context()->input,
635 ev.type == SDL_EVENT_KEY_DOWN, ev.repeat, scancode);
636}

◆ initialize()

bool sdlInput::initialize ( )

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

693{
694 auto settings = _sdl->context()->settings;
695 WINPR_ASSERT(settings);
696 WINPR_ASSERT(!_remapTable);
697
698 {
699 auto list = freerdp_settings_get_string(settings, FreeRDP_KeyboardRemappingList);
700 _remapTable = freerdp_keyboard_remap_string_to_list(list);
701 if (!_remapTable)
702 return false;
703 }
704
705 if (freerdp_settings_get_uint32(settings, FreeRDP_KeyboardLayout) == 0)
706 {
707 DWORD KeyboardLayout = 0;
708
709 freerdp_detect_keyboard_layout_from_system_locale(&KeyboardLayout);
710 if (KeyboardLayout == 0)
711 KeyboardLayout = ENGLISH_UNITED_STATES;
712
713 if (!freerdp_settings_set_uint32(settings, FreeRDP_KeyboardLayout, KeyboardLayout))
714 return false;
715 }
716 return true;
717}
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 666 of file SDL3/sdl_input.cpp.

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

◆ 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: