This commit is contained in:
Mat Sutcliffe
2021-11-13 01:08:05 +00:00
parent 0c8e10058c
commit 28e0afa88c
2 changed files with 8 additions and 8 deletions

View File

@@ -68,12 +68,12 @@ namespace BlackMisc::Input
case Key_Numpad8: return QStringLiteral("Num8");
case Key_Numpad9: return QStringLiteral("Num9");
case Key_NumpadEqual: return QStringLiteral("Num=");
case Key_Esc: return QStringLiteral("ESC");
case Key_Esc: return QStringLiteral("Esc");
case Key_Space: return QStringLiteral("Space");
case Key_Tab: return QStringLiteral("Tab");
case Key_Back: return QStringLiteral("Backspace");
case Key_Insert: return QStringLiteral("Insert");
case Key_Delete: return QStringLiteral("Delete");
case Key_Back: return QStringLiteral("Bksp");
case Key_Insert: return QStringLiteral("Ins");
case Key_Delete: return QStringLiteral("Del");
case Key_OEM1: return QStringLiteral("OEM1");
case Key_OEM2: return QStringLiteral("OEM2");
case Key_OEM3: return QStringLiteral("OEM3");

View File

@@ -31,14 +31,14 @@ namespace BlackMisc::Input
Key_Insert,
Key_Delete,
Key_Esc = 27,
Key_Space = 32,
Key_Space = ' ',
Key_DeadGrave, // message is sent for a combining key, such as a diacritic.
Key_Plus = 43,
Key_Plus = '+',
Key_Comma,
Key_Minus,
Key_Period,
// 0 - 9
Key_0 = 48,
Key_0 = '0',
Key_1,
Key_2,
Key_3,
@@ -49,7 +49,7 @@ namespace BlackMisc::Input
Key_8,
Key_9,
// A - Z
Key_A = 65,
Key_A = 'A',
Key_B,
Key_C,
Key_D,