diff --git a/src/modules/keyboardmanager/README.md b/src/modules/keyboardmanager/README.md index ca95536268..3b167cbf05 100644 --- a/src/modules/keyboardmanager/README.md +++ b/src/modules/keyboardmanager/README.md @@ -11,7 +11,7 @@ To create mappings with Keyboard Manager, you have the option of launching eithe ## 1.2 Remap Keys -To remap a key to another key, click the Remap a Key button to launch the Remap Keyboard UI. When first launched, you are met with no predefined mappings and must click the + button to add a new remap. From there, select the key whose output you want to ***change*** as the “Original Key” and then keys new output as the “New Key”. For example, if you want to press A and have B appear, Key A would be your “Original Key” and Key B would be your “New Key”. If you want to swap keys, add another remapping with Key B as your Original and Key A as your New. +To remap a key to another key, click the Remap a Key button to launch the Remap Keyboard UI. When first launched, you are met with no predefined mappings and must click the + button to add a new remap. From there, select the key whose output you want to ***change*** as the “Key” and then keys new output as the “Mapped To”. For example, if you want to press A and have B appear, Key A would be your “Key” and Key B would be your “Mapped To" key. If you want to swap keys, add another remapping with Key B as your "Key" and Key A as your "Mapped To". ![alt text][remapkey] @@ -19,8 +19,8 @@ To remap a key to another key, click the Remap a Key button to launch Currently you are only able to remap global level shortcuts (they apply to your whole OS), but **app-specific shortcuts are coming soon!** To change how you invoke a particular shortcut, click the Remap a shortcut button to -launch the Remap Shortcuts UI. When first launched, you are met with no predefined mappings and must click the + button to add a new remap. The Original shortcut is the shortcut you want to change and the New Shortcut is the shortcut you want to change it -to. Ex. If you want Ctrl+C to paste, Ctrl+C is the Original Shortcut and Ctrl+V is the New Shortcut. Here are a few rules to shortcuts as you get started: +launch the Remap Shortcuts UI. When first launched, you are met with no predefined mappings and must click the + button to add a new remap. The "Shortcut" is the shortcut you want to change and the "Mapped To" is the shortcut you want to change it +to. Ex. If you want Ctrl+C to paste, Ctrl+C is the "Shortcut" and Ctrl+V is the "Mapped To". Here are a few rules to shortcuts as you get started: - Shortcuts must begin with a modifier key (Ctrl, Shift, Alt, ![alt text][winlogo]) - Shortcuts must end with an action key (all non-modifier keys) diff --git a/src/modules/keyboardmanager/ui/EditKeyboardWindow.cpp b/src/modules/keyboardmanager/ui/EditKeyboardWindow.cpp index fc17541775..7b40fb290a 100644 --- a/src/modules/keyboardmanager/ui/EditKeyboardWindow.cpp +++ b/src/modules/keyboardmanager/ui/EditKeyboardWindow.cpp @@ -232,13 +232,13 @@ void createEditKeyboardWindow(HINSTANCE hInst, KeyboardManagerState& keyboardMan // Text block for information about remap key section. TextBlock keyRemapInfoHeader; - keyRemapInfoHeader.Text(L"Select the key you want to change (Original Key) and the key you want it to become (New Key)."); + keyRemapInfoHeader.Text(L"Select the key you want to change (Key) and the key you want it to become (Mapped To)."); keyRemapInfoHeader.Margin({ 10, 0, 0, 10 }); keyRemapInfoHeader.FontWeight(Text::FontWeights::SemiBold()); keyRemapInfoHeader.TextWrapping(TextWrapping::Wrap); TextBlock keyRemapInfoExample; - keyRemapInfoExample.Text(L"For example, if you want to press A and get B, Key A would be your \"Original Key\" and Key B would be your \"New Key\"."); + keyRemapInfoExample.Text(L"For example, if you want to press A and get B, Key A would be your \"Key\" and Key B would be your \"Mapped To\"."); keyRemapInfoExample.Margin({ 10, 0, 0, 20 }); keyRemapInfoExample.FontStyle(Text::FontStyle::Italic); keyRemapInfoExample.TextWrapping(TextWrapping::Wrap); @@ -265,13 +265,13 @@ void createEditKeyboardWindow(HINSTANCE hInst, KeyboardManagerState& keyboardMan // First header textblock in the header row of the keys remap table TextBlock originalKeyRemapHeader; - originalKeyRemapHeader.Text(L"Original Key:"); + originalKeyRemapHeader.Text(L"Key:"); originalKeyRemapHeader.FontWeight(Text::FontWeights::Bold()); originalKeyRemapHeader.Margin({ 0, 0, 0, 10 }); // Second header textblock in the header row of the keys remap table TextBlock newKeyRemapHeader; - newKeyRemapHeader.Text(L"New Key:"); + newKeyRemapHeader.Text(L"Mapped To:"); newKeyRemapHeader.FontWeight(Text::FontWeights::Bold()); newKeyRemapHeader.Margin({ 0, 0, 0, 10 }); diff --git a/src/modules/keyboardmanager/ui/EditShortcutsWindow.cpp b/src/modules/keyboardmanager/ui/EditShortcutsWindow.cpp index ab7fb61a53..d4e3d5bd4f 100644 --- a/src/modules/keyboardmanager/ui/EditShortcutsWindow.cpp +++ b/src/modules/keyboardmanager/ui/EditShortcutsWindow.cpp @@ -144,13 +144,13 @@ void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardMa // Text block for information about remap key section. TextBlock shortcutRemapInfoHeader; - shortcutRemapInfoHeader.Text(L"Select shortcut you want to change (Original Shortcut) and the shortcut (New Shortcut) you want it to invoke."); + shortcutRemapInfoHeader.Text(L"Select shortcut you want to change (Shortcut) and the shortcut you want it to invoke (Mapped To)."); shortcutRemapInfoHeader.Margin({ 10, 0, 0, 10 }); shortcutRemapInfoHeader.FontWeight(Text::FontWeights::SemiBold()); shortcutRemapInfoHeader.TextWrapping(TextWrapping::Wrap); TextBlock shortcutRemapInfoExample; - shortcutRemapInfoExample.Text(L"For example, if you want Ctrl+C to paste, Ctrl+C is the Original Shortcut and Ctrl+V is the New Shortcut."); + shortcutRemapInfoExample.Text(L"For example, if you want Ctrl+C to paste, Ctrl+C is the "Shortcut" and Ctrl+V would be your "Mapped To"."); shortcutRemapInfoExample.Margin({ 10, 0, 0, 20 }); shortcutRemapInfoExample.FontStyle(Text::FontStyle::Italic); shortcutRemapInfoExample.TextWrapping(TextWrapping::Wrap); @@ -178,13 +178,13 @@ void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardMa // First header textblock in the header row of the shortcut table TextBlock originalShortcutHeader; - originalShortcutHeader.Text(L"Original Shortcut:"); + originalShortcutHeader.Text(L"Shortcut:"); originalShortcutHeader.FontWeight(Text::FontWeights::Bold()); originalShortcutHeader.Margin({ 0, 0, 0, 10 }); // Second header textblock in the header row of the shortcut table TextBlock newShortcutHeader; - newShortcutHeader.Text(L"New Shortcut:"); + newShortcutHeader.Text(L"Mapped To:"); newShortcutHeader.FontWeight(Text::FontWeights::Bold()); newShortcutHeader.Margin({ 0, 0, 0, 10 });