reactos/dll/keyboard/kbdrost/deadkeys/grave_acc
Ștefan Fulea 3c82e46ef1
[DLL:KEYBOARD] Add a dead keys transformations collection. (#861)
It contains all the Unicode characters that can be formed with a
given dead key (i.e. combining character). Keyboard layouts with
dead keys may find these useful.

CORE-15056
2018-12-08 18:50:47 +01:00

23 lines
912 B
Plaintext

/*
* COMBINING GRAVE ACCENT
* The dead key transformation set was defined by checking the availability of
* the resulting letters in Unicode character table: https://unicode-table.com
*/
{ DEADTRANS(L'a', 0x0300, 0x00E0, 0x00) },
{ DEADTRANS(L'A', 0x0300, 0x00C0, 0x00) },
{ DEADTRANS(L'e', 0x0300, 0x00E8, 0x00) },
{ DEADTRANS(L'E', 0x0300, 0x00C8, 0x00) },
{ DEADTRANS(L'i', 0x0300, 0x00EC, 0x00) },
{ DEADTRANS(L'I', 0x0300, 0x00CC, 0x00) },
{ DEADTRANS(L'n', 0x0300, 0x01F9, 0x00) },
{ DEADTRANS(L'N', 0x0300, 0x01F8, 0x00) },
{ DEADTRANS(L'o', 0x0300, 0x00F2, 0x00) },
{ DEADTRANS(L'O', 0x0300, 0x00D2, 0x00) },
{ DEADTRANS(L'u', 0x0300, 0x00F9, 0x00) },
{ DEADTRANS(L'U', 0x0300, 0x00D9, 0x00) },
{ DEADTRANS(L'w', 0x0300, 0x1E81, 0x00) },
{ DEADTRANS(L'W', 0x0300, 0x1E80, 0x00) },
{ DEADTRANS(L'y', 0x0300, 0x1EF3, 0x00) },
{ DEADTRANS(L'Y', 0x0300, 0x1EF2, 0x00) },