2020-03-24 01:44:02 +08:00
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <winrt/Windows.System.h>
|
2020-04-21 12:01:21 +08:00
|
|
|
#include <winrt/Windows.Foundation.h>
|
2020-03-24 01:44:02 +08:00
|
|
|
|
2020-04-20 23:22:36 +08:00
|
|
|
namespace KeyboardManagerHelper
|
2020-04-19 07:12:26 +08:00
|
|
|
{
|
2020-04-20 23:22:36 +08:00
|
|
|
// Type to distinguish between keys
|
|
|
|
enum class KeyType
|
|
|
|
{
|
|
|
|
Win,
|
|
|
|
Ctrl,
|
|
|
|
Alt,
|
|
|
|
Shift,
|
|
|
|
Action
|
|
|
|
};
|
2020-04-22 05:14:50 +08:00
|
|
|
|
2020-04-20 23:22:36 +08:00
|
|
|
// Function to split a wstring based on a delimiter and return a vector of split strings
|
|
|
|
std::vector<std::wstring> splitwstring(const std::wstring& input, wchar_t delimiter);
|
2020-04-22 05:14:50 +08:00
|
|
|
|
2020-04-20 23:22:36 +08:00
|
|
|
// Function to return the next sibling element for an element under a stack panel
|
|
|
|
winrt::Windows::Foundation::IInspectable getSiblingElement(winrt::Windows::Foundation::IInspectable const& element);
|
|
|
|
|
|
|
|
// Function to return if the key is an extended key which requires the use of the extended key flag
|
|
|
|
bool isExtendedKey(DWORD key);
|
2020-04-17 06:17:57 +08:00
|
|
|
|
2020-04-20 23:22:36 +08:00
|
|
|
// Function to check if the key is a modifier key
|
|
|
|
bool IsModifierKey(DWORD key);
|
2020-04-19 07:12:26 +08:00
|
|
|
|
2020-04-20 23:22:36 +08:00
|
|
|
// Function to get the type of the key
|
|
|
|
KeyType GetKeyType(DWORD key);
|
2020-04-19 07:12:26 +08:00
|
|
|
|
2020-04-20 23:22:36 +08:00
|
|
|
// Function to return if the key is an extended key which requires the use of the extended key flag
|
|
|
|
bool isExtendedKey(DWORD key);
|
2020-04-21 12:01:21 +08:00
|
|
|
|
|
|
|
// Function to return the list of key name in the order for the drop down based on the key codes
|
|
|
|
winrt::Windows::Foundation::Collections::IVector<winrt::Windows::Foundation::IInspectable> ToBoxValue(const std::vector<std::wstring>& list);
|
|
|
|
}
|