mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-22 08:02:24 +08:00
788 lines
21 KiB
C++
788 lines
21 KiB
C++
|
#include "pch.h"
|
||
|
#include "Shortcut.h"
|
||
|
|
||
|
// Function to return the number of keys in the shortcut
|
||
|
int Shortcut::Size() const
|
||
|
{
|
||
|
int size = 0;
|
||
|
if (winKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
size += 1;
|
||
|
}
|
||
|
if (ctrlKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
size += 1;
|
||
|
}
|
||
|
if (altKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
size += 1;
|
||
|
}
|
||
|
if (shiftKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
size += 1;
|
||
|
}
|
||
|
if (actionKey != NULL)
|
||
|
{
|
||
|
size += 1;
|
||
|
}
|
||
|
|
||
|
return size;
|
||
|
}
|
||
|
|
||
|
// Function to return true if the shortcut has no keys set
|
||
|
bool Shortcut::IsEmpty() const
|
||
|
{
|
||
|
if (winKey == ModifierKey::Disabled && ctrlKey == ModifierKey::Disabled && altKey == ModifierKey::Disabled && shiftKey == ModifierKey::Disabled && actionKey == NULL)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to reset all the keys in the shortcut
|
||
|
void Shortcut::Reset()
|
||
|
{
|
||
|
winKey = ModifierKey::Disabled;
|
||
|
ctrlKey = ModifierKey::Disabled;
|
||
|
altKey = ModifierKey::Disabled;
|
||
|
shiftKey = ModifierKey::Disabled;
|
||
|
actionKey = NULL;
|
||
|
}
|
||
|
|
||
|
// Function to return true if the shortcut is valid. A valid shortcut has atleast one modifier, as well as an action key
|
||
|
bool Shortcut::IsValidShortcut() const
|
||
|
{
|
||
|
if (actionKey != NULL)
|
||
|
{
|
||
|
if (winKey != ModifierKey::Disabled || ctrlKey != ModifierKey::Disabled || altKey != ModifierKey::Disabled || shiftKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
// Function to return the action key
|
||
|
DWORD Shortcut::GetActionKey() const
|
||
|
{
|
||
|
return actionKey;
|
||
|
}
|
||
|
|
||
|
// Function to return the virtual key code of the win key state expected in the shortcut. Argument is used to decide which win key to return in case of both. If the current shortcut doesn't use both win keys then arg is ignored. Return NULL if it is not a part of the shortcut
|
||
|
DWORD Shortcut::GetWinKey(const ModifierKey& input) const
|
||
|
{
|
||
|
if (winKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
else if (winKey == ModifierKey::Left)
|
||
|
{
|
||
|
return VK_LWIN;
|
||
|
}
|
||
|
else if (winKey == ModifierKey::Right)
|
||
|
{
|
||
|
return VK_RWIN;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// Since VK_WIN does not exist if right windows key is to be sent based on the argument, then return VK_RWIN as the win key (since that will be used to release it).
|
||
|
if (input == ModifierKey::Right)
|
||
|
{
|
||
|
return VK_RWIN;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//return VK_LWIN by default
|
||
|
return VK_LWIN;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to return the virtual key code of the ctrl key state expected in the shortcut. Return NULL if it is not a part of the shortcut
|
||
|
DWORD Shortcut::GetCtrlKey() const
|
||
|
{
|
||
|
if (ctrlKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
else if (ctrlKey == ModifierKey::Left)
|
||
|
{
|
||
|
return VK_LCONTROL;
|
||
|
}
|
||
|
else if (ctrlKey == ModifierKey::Right)
|
||
|
{
|
||
|
return VK_RCONTROL;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return VK_CONTROL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to return the virtual key code of the alt key state expected in the shortcut. Return NULL if it is not a part of the shortcut
|
||
|
DWORD Shortcut::GetAltKey() const
|
||
|
{
|
||
|
if (altKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
else if (altKey == ModifierKey::Left)
|
||
|
{
|
||
|
return VK_LMENU;
|
||
|
}
|
||
|
else if (altKey == ModifierKey::Right)
|
||
|
{
|
||
|
return VK_RMENU;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return VK_MENU;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to return the virtual key code of the shift key state expected in the shortcut. Return NULL if it is not a part of the shortcut
|
||
|
DWORD Shortcut::GetShiftKey() const
|
||
|
{
|
||
|
if (shiftKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
else if (shiftKey == ModifierKey::Left)
|
||
|
{
|
||
|
return VK_LSHIFT;
|
||
|
}
|
||
|
else if (shiftKey == ModifierKey::Right)
|
||
|
{
|
||
|
return VK_RSHIFT;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return VK_SHIFT;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to check if the input key matches the win key expected in the shortcut
|
||
|
bool Shortcut::CheckWinKey(const DWORD& input) const
|
||
|
{
|
||
|
if (winKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else if (winKey == ModifierKey::Left)
|
||
|
{
|
||
|
return (VK_LWIN == input);
|
||
|
}
|
||
|
else if (winKey == ModifierKey::Right)
|
||
|
{
|
||
|
return (VK_RWIN == input);
|
||
|
}
|
||
|
// If ModifierKey::Both then return true if either left or right (VK_WIN does not exist)
|
||
|
else
|
||
|
{
|
||
|
return (VK_LWIN == input) || (VK_RWIN == input);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to check if the input key matches the ctrl key expected in the shortcut
|
||
|
bool Shortcut::CheckCtrlKey(const DWORD& input) const
|
||
|
{
|
||
|
if (ctrlKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else if (ctrlKey == ModifierKey::Left)
|
||
|
{
|
||
|
return (VK_LCONTROL == input);
|
||
|
}
|
||
|
else if (ctrlKey == ModifierKey::Right)
|
||
|
{
|
||
|
return (VK_RCONTROL == input);
|
||
|
}
|
||
|
// If ModifierKey::Both then return true if either left or right or common
|
||
|
else
|
||
|
{
|
||
|
return (VK_CONTROL == input) || (VK_LCONTROL == input) || (VK_RCONTROL == input);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to check if the input key matches the alt key expected in the shortcut
|
||
|
bool Shortcut::CheckAltKey(const DWORD& input) const
|
||
|
{
|
||
|
if (altKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else if (altKey == ModifierKey::Left)
|
||
|
{
|
||
|
return (VK_LMENU == input);
|
||
|
}
|
||
|
else if (altKey == ModifierKey::Right)
|
||
|
{
|
||
|
return (VK_RMENU == input);
|
||
|
}
|
||
|
// If ModifierKey::Both then return true if either left or right or common
|
||
|
else
|
||
|
{
|
||
|
return (VK_MENU == input) || (VK_LMENU == input) || (VK_RMENU == input);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to check if the input key matches the shift key expected in the shortcut
|
||
|
bool Shortcut::CheckShiftKey(const DWORD& input) const
|
||
|
{
|
||
|
if (shiftKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else if (shiftKey == ModifierKey::Left)
|
||
|
{
|
||
|
return (VK_LSHIFT == input);
|
||
|
}
|
||
|
else if (shiftKey == ModifierKey::Right)
|
||
|
{
|
||
|
return (VK_RSHIFT == input);
|
||
|
}
|
||
|
// If ModifierKey::Both then return true if either left or right or common
|
||
|
else
|
||
|
{
|
||
|
return (VK_SHIFT == input) || (VK_LSHIFT == input) || (VK_RSHIFT == input);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to set a key in the shortcut based on the passed key code argument. Since there is no VK_WIN code, use the second argument for setting common win key. If isWinBoth is true then first arg is ignored. Returns false if it is already set to the same value. This can be used to avoid UI refreshing
|
||
|
bool Shortcut::SetKey(const DWORD& input, const bool& isWinBoth)
|
||
|
{
|
||
|
// Since there isn't a key for a common Win key this is handled with a separate argument
|
||
|
if (isWinBoth)
|
||
|
{
|
||
|
if (winKey == ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
winKey = ModifierKey::Both;
|
||
|
}
|
||
|
else if (input == VK_LWIN)
|
||
|
{
|
||
|
if (winKey == ModifierKey::Left)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
winKey = ModifierKey::Left;
|
||
|
}
|
||
|
else if (input == VK_RWIN)
|
||
|
{
|
||
|
if (winKey == ModifierKey::Right)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
winKey = ModifierKey::Right;
|
||
|
}
|
||
|
else if (input == VK_LCONTROL)
|
||
|
{
|
||
|
if (ctrlKey == ModifierKey::Left)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
ctrlKey = ModifierKey::Left;
|
||
|
}
|
||
|
else if (input == VK_RCONTROL)
|
||
|
{
|
||
|
if (ctrlKey == ModifierKey::Right)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
ctrlKey = ModifierKey::Right;
|
||
|
}
|
||
|
else if (input == VK_CONTROL)
|
||
|
{
|
||
|
if (ctrlKey == ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
ctrlKey = ModifierKey::Both;
|
||
|
}
|
||
|
else if (input == VK_LMENU)
|
||
|
{
|
||
|
if (altKey == ModifierKey::Left)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
altKey = ModifierKey::Left;
|
||
|
}
|
||
|
else if (input == VK_RMENU)
|
||
|
{
|
||
|
if (altKey == ModifierKey::Right)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
altKey = ModifierKey::Right;
|
||
|
}
|
||
|
else if (input == VK_MENU)
|
||
|
{
|
||
|
if (altKey == ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
altKey = ModifierKey::Both;
|
||
|
}
|
||
|
else if (input == VK_LSHIFT)
|
||
|
{
|
||
|
if (shiftKey == ModifierKey::Left)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
shiftKey = ModifierKey::Left;
|
||
|
}
|
||
|
else if (input == VK_RSHIFT)
|
||
|
{
|
||
|
if (shiftKey == ModifierKey::Right)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
shiftKey = ModifierKey::Right;
|
||
|
}
|
||
|
else if (input == VK_SHIFT)
|
||
|
{
|
||
|
if (shiftKey == ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
shiftKey = ModifierKey::Both;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (actionKey == input)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
actionKey = input;
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
// Function to reset the state of a shortcut key based on the passed key code argument. Since there is no VK_WIN code, use the second argument for setting common win key.
|
||
|
void Shortcut::ResetKey(const DWORD& input, const bool& isWinBoth)
|
||
|
{
|
||
|
// Since there isn't a key for a common Win key this is handled with a separate argument.
|
||
|
if (isWinBoth || input == VK_LWIN || input == VK_RWIN)
|
||
|
{
|
||
|
winKey = ModifierKey::Disabled;
|
||
|
}
|
||
|
else if (input == VK_LCONTROL || input == VK_RCONTROL || input == VK_CONTROL)
|
||
|
{
|
||
|
ctrlKey = ModifierKey::Disabled;
|
||
|
}
|
||
|
else if (input == VK_LMENU || input == VK_RMENU || input == VK_MENU)
|
||
|
{
|
||
|
altKey = ModifierKey::Disabled;
|
||
|
}
|
||
|
else if (input == VK_LSHIFT || input == VK_RSHIFT || input == VK_SHIFT)
|
||
|
{
|
||
|
shiftKey = ModifierKey::Disabled;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
actionKey = NULL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to return the string representation of the shortcut
|
||
|
winrt::hstring Shortcut::ToHstring() const
|
||
|
{
|
||
|
winrt::hstring output;
|
||
|
if (winKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
output = output + ModifierKeyNameWithSide(winKey, L"Win") + winrt::to_hstring(L" ");
|
||
|
}
|
||
|
if (ctrlKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
output = output + ModifierKeyNameWithSide(ctrlKey, L"Ctrl") + winrt::to_hstring(L" ");
|
||
|
}
|
||
|
if (altKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
output = output + ModifierKeyNameWithSide(altKey, L"Alt") + winrt::to_hstring(L" ");
|
||
|
}
|
||
|
if (shiftKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
output = output + ModifierKeyNameWithSide(shiftKey, L"Shift") + winrt::to_hstring(L" ");
|
||
|
}
|
||
|
if (actionKey != NULL)
|
||
|
{
|
||
|
output = output + winrt::to_hstring((unsigned int)actionKey);
|
||
|
}
|
||
|
return output;
|
||
|
}
|
||
|
|
||
|
// Function to check if all the modifiers in the shortcut have been pressed down
|
||
|
bool Shortcut::CheckModifiersKeyboardState() const
|
||
|
{
|
||
|
// Check the win key state
|
||
|
if (winKey == ModifierKey::Both)
|
||
|
{
|
||
|
// Since VK_WIN does not exist, we check both VK_LWIN and VK_RWIN
|
||
|
if ((!(GetAsyncKeyState(VK_LWIN) & 0x8000)) && (!(GetAsyncKeyState(VK_RWIN) & 0x8000)))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (winKey == ModifierKey::Left)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_LWIN) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (winKey == ModifierKey::Right)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_RWIN) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Check the ctrl key state
|
||
|
if (ctrlKey == ModifierKey::Left)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_LCONTROL) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (ctrlKey == ModifierKey::Right)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_RCONTROL) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (ctrlKey == ModifierKey::Both)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_CONTROL) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Check the alt key state
|
||
|
if (altKey == ModifierKey::Left)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_LMENU) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (altKey == ModifierKey::Right)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_RMENU) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (altKey == ModifierKey::Both)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_MENU) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Check the shift key state
|
||
|
if (shiftKey == ModifierKey::Left)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_LSHIFT) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (shiftKey == ModifierKey::Right)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_RSHIFT) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
else if (shiftKey == ModifierKey::Both)
|
||
|
{
|
||
|
if (!(GetAsyncKeyState(VK_SHIFT) & 0x8000))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
// Function to check if any keys are pressed down except those in the shortcut
|
||
|
bool Shortcut::IsKeyboardStateClearExceptShortcut() const
|
||
|
{
|
||
|
// Iterate through all the virtual key codes
|
||
|
for (int keyVal = 0; keyVal < 0x100; keyVal++)
|
||
|
{
|
||
|
// Skip mouse buttons. Keeping this could cause a remapping to fail if a mouse button is also pressed at the same time
|
||
|
if (keyVal == VK_LBUTTON || keyVal == VK_RBUTTON || keyVal == VK_MBUTTON || keyVal == VK_XBUTTON1 || keyVal == VK_XBUTTON2)
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
// Check state of the key. If the key is pressed down but it is not part of the shortcut then the keyboard state is not clear
|
||
|
if (GetAsyncKeyState(keyVal) & 0x8000)
|
||
|
{
|
||
|
// If one of the win keys is pressed check if it is part of the shortcut
|
||
|
if (keyVal == VK_LWIN)
|
||
|
{
|
||
|
if (winKey != ModifierKey::Left && winKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_RWIN)
|
||
|
{
|
||
|
if (winKey != ModifierKey::Right && winKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
// If one of the ctrl keys is pressed check if it is part of the shortcut
|
||
|
else if (keyVal == VK_LCONTROL)
|
||
|
{
|
||
|
if (ctrlKey != ModifierKey::Left && ctrlKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_RCONTROL)
|
||
|
{
|
||
|
if (ctrlKey != ModifierKey::Right && ctrlKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_CONTROL)
|
||
|
{
|
||
|
if (ctrlKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
// If one of the alt keys is pressed check if it is part of the shortcut
|
||
|
else if (keyVal == VK_LMENU)
|
||
|
{
|
||
|
if (altKey != ModifierKey::Left && altKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_RMENU)
|
||
|
{
|
||
|
if (altKey != ModifierKey::Right && altKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_MENU)
|
||
|
{
|
||
|
if (altKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
// If one of the shift keys is pressed check if it is part of the shortcut
|
||
|
else if (keyVal == VK_LSHIFT)
|
||
|
{
|
||
|
if (shiftKey != ModifierKey::Left && shiftKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_RSHIFT)
|
||
|
{
|
||
|
if (shiftKey != ModifierKey::Right && shiftKey != ModifierKey::Both)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
else if (keyVal == VK_SHIFT)
|
||
|
{
|
||
|
if (shiftKey == ModifierKey::Disabled)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
// If any other key is pressed check if it is the action key
|
||
|
else if (keyVal != actionKey)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
// Function to get the number of modifiers that are common between the current shortcut and the shortcut in the argument
|
||
|
int Shortcut::GetCommonModifiersCount(const Shortcut& input) const
|
||
|
{
|
||
|
int commonElements = 0;
|
||
|
if ((winKey == input.winKey) && winKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
commonElements += 1;
|
||
|
}
|
||
|
if ((ctrlKey == input.ctrlKey) && ctrlKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
commonElements += 1;
|
||
|
}
|
||
|
if ((altKey == input.altKey) && altKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
commonElements += 1;
|
||
|
}
|
||
|
if ((shiftKey == input.shiftKey) && shiftKey != ModifierKey::Disabled)
|
||
|
{
|
||
|
commonElements += 1;
|
||
|
}
|
||
|
|
||
|
return commonElements;
|
||
|
}
|
||
|
|
||
|
// Function to return the name of the key with L or R prefix depending on the first argument. Second argument should be the name of the key without any prefix (ex: Win, Ctrl)
|
||
|
winrt::hstring Shortcut::ModifierKeyNameWithSide(const ModifierKey& key, const std::wstring& keyName) const
|
||
|
{
|
||
|
if (key == ModifierKey::Left)
|
||
|
{
|
||
|
return winrt::to_hstring(L"L") + winrt::to_hstring(keyName.c_str());
|
||
|
}
|
||
|
else if (key == ModifierKey::Right)
|
||
|
{
|
||
|
return winrt::to_hstring(L"R") + winrt::to_hstring(keyName.c_str());
|
||
|
}
|
||
|
else if (key == ModifierKey::Both)
|
||
|
{
|
||
|
return winrt::to_hstring(keyName.c_str());
|
||
|
}
|
||
|
|
||
|
return winrt::hstring();
|
||
|
}
|
||
|
|
||
|
// Function to return the virtual key code from the name of the key
|
||
|
DWORD Shortcut::DecodeKey(const std::wstring& keyName)
|
||
|
{
|
||
|
if (keyName == L"LWin")
|
||
|
{
|
||
|
return VK_LWIN;
|
||
|
}
|
||
|
else if (keyName == L"RWin")
|
||
|
{
|
||
|
return VK_RWIN;
|
||
|
}
|
||
|
else if (keyName == L"LCtrl")
|
||
|
{
|
||
|
return VK_LCONTROL;
|
||
|
}
|
||
|
else if (keyName == L"RCtrl")
|
||
|
{
|
||
|
return VK_RCONTROL;
|
||
|
}
|
||
|
else if (keyName == L"Ctrl")
|
||
|
{
|
||
|
return VK_CONTROL;
|
||
|
}
|
||
|
else if (keyName == L"LAlt")
|
||
|
{
|
||
|
return VK_LMENU;
|
||
|
}
|
||
|
else if (keyName == L"RAlt")
|
||
|
{
|
||
|
return VK_RMENU;
|
||
|
}
|
||
|
else if (keyName == L"Alt")
|
||
|
{
|
||
|
return VK_MENU;
|
||
|
}
|
||
|
else if (keyName == L"LShift")
|
||
|
{
|
||
|
return VK_LSHIFT;
|
||
|
}
|
||
|
else if (keyName == L"RShift")
|
||
|
{
|
||
|
return VK_RSHIFT;
|
||
|
}
|
||
|
else if (keyName == L"Shift")
|
||
|
{
|
||
|
return VK_SHIFT;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return std::stoi(keyName);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Function to create a shortcut object from its string representation
|
||
|
Shortcut Shortcut::CreateShortcut(const winrt::hstring& input)
|
||
|
{
|
||
|
Shortcut newShortcut;
|
||
|
std::wstring shortcutWstring = input.c_str();
|
||
|
std::vector<std::wstring> shortcutVector = splitwstring(shortcutWstring, L' ');
|
||
|
for (int i = 0; i < shortcutVector.size(); i++)
|
||
|
{
|
||
|
if (shortcutVector[i] == L"Win")
|
||
|
{
|
||
|
newShortcut.SetKey(NULL, true);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
DWORD keyCode = DecodeKey(shortcutVector[i]);
|
||
|
newShortcut.SetKey(keyCode);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return newShortcut;
|
||
|
}
|