#include "pch.h" #include "KeyboardManagerState.h" // Constructor KeyboardManagerState::KeyboardManagerState() : uiState(KeyboardManagerUIState::Deactivated), currentUIWindow(nullptr), currentShortcutUI(nullptr), currentSingleKeyUI(nullptr), detectedRemapKey(NULL) { } // Function to check the if the UI state matches the argument state. For states with activated windows it also checks if the window is in focus. bool KeyboardManagerState::CheckUIState(KeyboardManagerUIState state) { std::lock_guard lock(uiState_mutex); if (uiState == state) { std::unique_lock lock(currentUIWindow_mutex); if (uiState == KeyboardManagerUIState::Deactivated) { return true; } // If the UI state is activated then we also have to ensure that the UI window is in focus. // GetForegroundWindow can be used here since we only need to check the main parent window and not the sub windows within the content dialog. Using GUIThreadInfo will give more specific sub-windows within the XAML window which is not needed. else if (currentUIWindow == GetForegroundWindow()) { return true; } } return false; } // Function to set the window handle of the current UI window that is activated void KeyboardManagerState::SetCurrentUIWindow(HWND windowHandle) { std::lock_guard lock(currentUIWindow_mutex); currentUIWindow = windowHandle; } // Function to set the UI state. When a window is activated, the handle to the window can be passed in the windowHandle argument. void KeyboardManagerState::SetUIState(KeyboardManagerUIState state, HWND windowHandle) { std::lock_guard lock(uiState_mutex); uiState = state; SetCurrentUIWindow(windowHandle); } // Function to reset the UI state members void KeyboardManagerState::ResetUIState() { SetUIState(KeyboardManagerUIState::Deactivated); // Reset the shortcut UI stored variables std::unique_lock currentShortcutUI_lock(currentShortcutUI_mutex); currentShortcutUI = nullptr; currentShortcutUI_lock.unlock(); std::unique_lock detectedShortcut_lock(detectedShortcut_mutex); detectedShortcut.Reset(); detectedShortcut_lock.unlock(); std::unique_lock currentShortcut_lock(currentShortcut_mutex); currentShortcut.Reset(); currentShortcut_lock.unlock(); // Reset all the single key remap UI stored variables. std::unique_lock currentSingleKeyUI_lock(currentSingleKeyUI_mutex); currentSingleKeyUI = nullptr; currentSingleKeyUI_lock.unlock(); std::unique_lock detectedRemapKey_lock(detectedRemapKey_mutex); detectedRemapKey = NULL; detectedRemapKey_lock.unlock(); } // Function to clear the OS Level shortcut remapping table void KeyboardManagerState::ClearOSLevelShortcuts() { std::lock_guard lock(osLevelShortcutReMap_mutex); osLevelShortcutReMap.clear(); } // Function to clear the Keys remapping table. void KeyboardManagerState::ClearSingleKeyRemaps() { std::lock_guard lock(singleKeyReMap_mutex); singleKeyReMap.clear(); } // Function to add a new OS level shortcut remapping bool KeyboardManagerState::AddOSLevelShortcut(const Shortcut& originalSC, const Shortcut& newSC) { std::lock_guard lock(osLevelShortcutReMap_mutex); // Check if the shortcut is already remapped auto it = osLevelShortcutReMap.find(originalSC); if (it != osLevelShortcutReMap.end()) { return false; } osLevelShortcutReMap[originalSC] = RemapShortcut(newSC); return true; } // Function to add a new OS level shortcut remapping bool KeyboardManagerState::AddSingleKeyRemap(const DWORD& originalKey, const DWORD& newRemapKey) { std::lock_guard lock(singleKeyReMap_mutex); // Check if the key is already remapped auto it = singleKeyReMap.find(originalKey); if (it != singleKeyReMap.end()) { return false; } singleKeyReMap[originalKey] = newRemapKey; return true; } // Function to set the textblock of the detect shortcut UI so that it can be accessed by the hook void KeyboardManagerState::ConfigureDetectShortcutUI(const StackPanel& textBlock) { std::lock_guard lock(currentShortcutUI_mutex); currentShortcutUI = textBlock; } // Function to set the textblock of the detect remap key UI so that it can be accessed by the hook void KeyboardManagerState::ConfigureDetectSingleKeyRemapUI(const StackPanel& textBlock) { std::lock_guard lock(currentSingleKeyUI_mutex); currentSingleKeyUI = textBlock; } void KeyboardManagerState::AddKeyToLayout(const StackPanel& panel, const hstring& key) { // Textblock to display the detected key TextBlock remapKey; Border border; border.Padding({ 20, 10, 20, 10 }); border.Margin({0, 0, 10, 0 }); border.Background(Windows::UI::Xaml::Media::SolidColorBrush{ Windows::UI::Colors::LightGray() }); remapKey.Foreground(Windows::UI::Xaml::Media::SolidColorBrush{ Windows::UI::Colors::Black() }); remapKey.FontSize(20); border.HorizontalAlignment(HorizontalAlignment::Left); border.Child(remapKey); remapKey.Text(key); panel.Children().Append(border); } // Function to update the detect shortcut UI based on the entered keys void KeyboardManagerState::UpdateDetectShortcutUI() { std::lock_guard currentShortcutUI_lock(currentShortcutUI_mutex); if (currentShortcutUI == nullptr) { return; } std::unique_lock detectedShortcut_lock(detectedShortcut_mutex); std::unique_lock currentShortcut_lock(currentShortcut_mutex); // Save the latest displayed shortcut currentShortcut = detectedShortcut; currentShortcut_lock.unlock(); std::vector shortcut = detectedShortcut.GetKeyVector(keyboardMap); detectedShortcut_lock.unlock(); // Since this function is invoked from the back-end thread, in order to update the UI the dispatcher must be used. currentShortcutUI.Dispatcher().RunAsync(Windows::UI::Core::CoreDispatcherPriority::Normal, [this, shortcut]() { currentShortcutUI.Children().Clear(); for (auto& key : shortcut) { AddKeyToLayout(currentShortcutUI, key); } currentShortcutUI.UpdateLayout(); }); } // Function to update the detect remap key UI based on the entered key. void KeyboardManagerState::UpdateDetectSingleKeyRemapUI() { std::lock_guard currentSingleKeyUI_lock(currentSingleKeyUI_mutex); if (currentSingleKeyUI == nullptr) { return; } std::unique_lock detectedRemapKey_lock(detectedRemapKey_mutex); hstring key = winrt::to_hstring(keyboardMap.GetKeyName(detectedRemapKey).c_str()); detectedRemapKey_lock.unlock(); // Since this function is invoked from the back-end thread, in order to update the UI the dispatcher must be used. currentSingleKeyUI.Dispatcher().RunAsync(Windows::UI::Core::CoreDispatcherPriority::Normal, [this, key]() { currentSingleKeyUI.Children().Clear(); AddKeyToLayout(currentSingleKeyUI, key); currentSingleKeyUI.UpdateLayout(); }); } // Function to return the currently detected shortcut which is displayed on the UI Shortcut KeyboardManagerState::GetDetectedShortcut() { std::lock_guard lock(currentShortcut_mutex); return currentShortcut; } // Function to return the currently detected remap key which is displayed on the UI DWORD KeyboardManagerState::GetDetectedSingleRemapKey() { std::lock_guard lock(detectedRemapKey_mutex); return detectedRemapKey; } // Function which can be used in HandleKeyboardHookEvent before the single key remap event to use the UI and suppress events while the remap window is active. bool KeyboardManagerState::DetectSingleRemapKeyUIBackend(LowlevelKeyboardEvent* data) { // Check if the detect key UI window has been activated if (CheckUIState(KeyboardManagerUIState::DetectSingleKeyRemapWindowActivated)) { // detect the key if it is pressed down if (data->wParam == WM_KEYDOWN || data->wParam == WM_SYSKEYDOWN) { std::unique_lock detectedRemapKey_lock(detectedRemapKey_mutex); detectedRemapKey = data->lParam->vkCode; detectedRemapKey_lock.unlock(); UpdateDetectSingleKeyRemapUI(); } // Suppress the keyboard event return true; } return false; } // Function which can be used in HandleKeyboardHookEvent before the os level shortcut remap event to use the UI and suppress events while the remap window is active. bool KeyboardManagerState::DetectShortcutUIBackend(LowlevelKeyboardEvent* data) { // Check if the detect shortcut UI window has been activated if (CheckUIState(KeyboardManagerUIState::DetectShortcutWindowActivated)) { // Add the key if it is pressed down if (data->wParam == WM_KEYDOWN || data->wParam == WM_SYSKEYDOWN) { // Set the new key and store if a change occured std::unique_lock lock(detectedShortcut_mutex); bool updateUI = detectedShortcut.SetKey(data->lParam->vkCode); lock.unlock(); if (updateUI) { // Update the UI. This function is called here because it should store the set of keys pressed till the last key which was pressed down. UpdateDetectShortcutUI(); } } // Remove the key if it has been released else if (data->wParam == WM_KEYUP || data->wParam == WM_SYSKEYUP) { std::lock_guard lock(detectedShortcut_mutex); detectedShortcut.ResetKey(data->lParam->vkCode); } // Suppress the keyboard event return true; } // If the detect shortcut UI window is not activated, then clear the shortcut buffer if it isn't empty else { std::lock_guard lock(detectedShortcut_mutex); if (!detectedShortcut.IsEmpty()) { detectedShortcut.Reset(); } } return false; }