mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
Add keyboard layouts:
- Romanian - Tatar - US Dvorak for left hand - US Dvorak for right hand - US International svn path=/trunk/; revision=33160
This commit is contained in:
parent
a5e7b91fe0
commit
2b7c04a7d9
21 changed files with 2199 additions and 0 deletions
398
reactos/dll/keyboard/kbdro/kbdro.c
Normal file
398
reactos/dll/keyboard/kbdro/kbdro.c
Normal file
|
@ -0,0 +1,398 @@
|
|||
/*
|
||||
* ReactOS Romanian Keyboard layout
|
||||
* Copyright (C) 2008 ReactOS
|
||||
* Author: Dmitry Chapyshev
|
||||
* License: LGPL, see: LGPL.txt
|
||||
*
|
||||
* Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php
|
||||
* and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <internal/kbd.h>
|
||||
|
||||
#ifdef _M_IA64
|
||||
#define ROSDATA static __declspec(allocate(".data"))
|
||||
#else
|
||||
#ifdef _MSC_VER
|
||||
#pragma data_seg(".data")
|
||||
#define ROSDATA static
|
||||
#else
|
||||
#define ROSDATA static __attribute__((section(".data")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define VK_EMPTY 0xff /* The non-existent VK */
|
||||
#define KSHIFT 0x001 /* Shift modifier */
|
||||
#define KCTRL 0x002 /* Ctrl modifier */
|
||||
#define KALT 0x004 /* Alt modifier */
|
||||
#define KEXT 0x100 /* Extended key code */
|
||||
#define KMULTI 0x200 /* Multi-key */
|
||||
#define KSPEC 0x400 /* Special key */
|
||||
#define KNUMP 0x800 /* Number-pad */
|
||||
#define KNUMS 0xc00 /* Special + number pad */
|
||||
#define KMEXT 0x300 /* Multi + ext */
|
||||
|
||||
#define SHFT_INVALID 0x0F
|
||||
|
||||
ROSDATA USHORT scancode_to_vk[] = {
|
||||
/* Numbers Row */
|
||||
/* - 00 - */
|
||||
/* 1 ... 2 ... 3 ... 4 ... */
|
||||
VK_EMPTY, VK_ESCAPE, '1', '2',
|
||||
'3', '4', '5', '6',
|
||||
'7', '8', '9', '0',
|
||||
VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
|
||||
/* - 0f - */
|
||||
/* First Letters Row */
|
||||
VK_TAB, 'Q', 'W', 'E',
|
||||
'R', 'T', 'Y', 'U',
|
||||
'I', 'O', 'P',
|
||||
VK_OEM_4, VK_OEM_6, VK_RETURN,
|
||||
/* - 1d - */
|
||||
/* Second Letters Row */
|
||||
VK_LCONTROL,
|
||||
'A', 'S', 'D', 'F',
|
||||
'G', 'H', 'J', 'K',
|
||||
'L', VK_OEM_1, VK_OEM_7, VK_OEM_3,
|
||||
VK_LSHIFT, VK_OEM_5,
|
||||
/* - 2c - */
|
||||
/* Third letters row */
|
||||
'Z', 'X', 'C', 'V',
|
||||
'B', 'N', 'M', VK_OEM_COMMA,
|
||||
VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT | KEXT,
|
||||
/* - 37 - */
|
||||
/* Bottom Row */
|
||||
0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL,
|
||||
|
||||
/* - 3b - */
|
||||
/* F-Keys */
|
||||
VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
|
||||
VK_F7, VK_F8, VK_F9, VK_F10,
|
||||
/* - 45 - */
|
||||
/* Locks */
|
||||
VK_NUMLOCK | KMEXT,
|
||||
VK_SCROLL | KMULTI,
|
||||
/* - 47 - */
|
||||
/* Number-Pad */
|
||||
VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
|
||||
VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
|
||||
VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
|
||||
VK_INSERT | KNUMS, VK_DELETE | KNUMS,
|
||||
/* - 54 - */
|
||||
/* Presumably PrtSc */
|
||||
VK_SNAPSHOT,
|
||||
/* - 55 - */
|
||||
/* Oddities, and the remaining standard F-Keys */
|
||||
VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
|
||||
/* - 59 - */
|
||||
VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */
|
||||
VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */
|
||||
VK_HELP,
|
||||
/* - 64 - */
|
||||
/* Even more F-Keys (for example, NCR keyboards from the early 90's) */
|
||||
VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
|
||||
VK_F21, VK_F22, VK_F23,
|
||||
/* - 6f - */
|
||||
/* Not sure who uses these codes */
|
||||
VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET,
|
||||
/* - 72 - */
|
||||
VK_EMPTY, 0xc1, VK_EMPTY, VK_EMPTY,
|
||||
/* - 76 - */
|
||||
/* One more f-key */
|
||||
VK_F24,
|
||||
/* - 77 - */
|
||||
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
|
||||
VK_OEM_PA1, VK_TAB, 0xc2, 0, /* PA1 */
|
||||
0,
|
||||
/* - 80 - */
|
||||
0
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode0_to_vk[] = {
|
||||
{ 0x10, VK_MEDIA_PREV_TRACK | KEXT },
|
||||
{ 0x19, VK_MEDIA_NEXT_TRACK | KEXT },
|
||||
{ 0x1D, VK_RCONTROL | KEXT },
|
||||
{ 0x20, VK_VOLUME_MUTE | KEXT },
|
||||
{ 0x21, VK_LAUNCH_APP2 | KEXT },
|
||||
{ 0x22, VK_MEDIA_PLAY_PAUSE | KEXT },
|
||||
{ 0x24, VK_MEDIA_STOP | KEXT },
|
||||
{ 0x2E, VK_VOLUME_DOWN | KEXT },
|
||||
{ 0x30, VK_VOLUME_UP | KEXT },
|
||||
{ 0x32, VK_BROWSER_HOME | KEXT },
|
||||
{ 0x35, VK_DIVIDE | KEXT },
|
||||
{ 0x37, VK_SNAPSHOT | KEXT },
|
||||
{ 0x38, VK_RMENU | KEXT },
|
||||
{ 0x47, VK_HOME | KEXT },
|
||||
{ 0x48, VK_UP | KEXT },
|
||||
{ 0x49, VK_PRIOR | KEXT },
|
||||
{ 0x4B, VK_LEFT | KEXT },
|
||||
{ 0x4D, VK_RIGHT | KEXT },
|
||||
{ 0x4F, VK_END | KEXT },
|
||||
{ 0x50, VK_DOWN | KEXT },
|
||||
{ 0x51, VK_NEXT | KEXT },
|
||||
{ 0x52, VK_INSERT | KEXT },
|
||||
{ 0x53, VK_DELETE | KEXT },
|
||||
{ 0x5B, VK_LWIN | KEXT },
|
||||
{ 0x5C, VK_RWIN | KEXT },
|
||||
{ 0x5D, VK_APPS | KEXT },
|
||||
{ 0x5F, VK_SLEEP | KEXT },
|
||||
{ 0x65, VK_BROWSER_SEARCH | KEXT },
|
||||
{ 0x66, VK_BROWSER_FAVORITES | KEXT },
|
||||
{ 0x67, VK_BROWSER_REFRESH | KEXT },
|
||||
{ 0x68, VK_BROWSER_STOP | KEXT },
|
||||
{ 0x69, VK_BROWSER_FORWARD | KEXT },
|
||||
{ 0x6A, VK_BROWSER_BACK | KEXT },
|
||||
{ 0x6B, VK_LAUNCH_APP1 | KEXT },
|
||||
{ 0x6C, VK_LAUNCH_MAIL | KEXT },
|
||||
{ 0x6D, VK_LAUNCH_MEDIA_SELECT | KEXT },
|
||||
{ 0x1C, VK_RETURN | KEXT },
|
||||
{ 0x46, VK_CANCEL | KEXT },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode1_to_vk[] = {
|
||||
{ 0x1d, VK_PAUSE},
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_BIT modifier_keys[] = {
|
||||
{ VK_SHIFT, KSHIFT },
|
||||
{ VK_CONTROL, KCTRL },
|
||||
{ VK_MENU, KALT },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA MODIFIERS modifier_bits = {
|
||||
modifier_keys,
|
||||
6,
|
||||
{ 0, 1, 3, 4, SHFT_INVALID, SHFT_INVALID, 2 }
|
||||
};
|
||||
|
||||
#define NOCAPS 0
|
||||
#define CAPS KSHIFT /* Caps -> shift */
|
||||
|
||||
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
||||
{ VK_OEM_3, NOCAPS, {']', '[' } },
|
||||
{ 'E', CAPS, {'e', 'E' } },
|
||||
{ 'R', CAPS, {'r', 'R' } },
|
||||
{ 'T', CAPS, {'t', 'T' } },
|
||||
{ 'Z', CAPS, {'z', 'Z' } },
|
||||
{ 'U', CAPS, {'u', 'U' } },
|
||||
{ 'I', CAPS, {'i', 'I' } },
|
||||
{ 'O', CAPS, {'o', 'O' } },
|
||||
{ 'P', CAPS, {'p', 'P' } },
|
||||
{ 'A', CAPS, {'a', 'A' } },
|
||||
{ 'F', CAPS, {'f', 'F' } },
|
||||
{ 'G', CAPS, {'g', 'G' } },
|
||||
{ 'H', CAPS, {'h', 'H' } },
|
||||
{ 'J', CAPS, {'j', 'J' } },
|
||||
{ 'Y', CAPS, {'y', 'Y' } },
|
||||
{ 'X', CAPS, {'x', 'X' } },
|
||||
{ 'C', CAPS, {'c', 'C' } },
|
||||
{ VK_OEM_2, NOCAPS, {'-', '_' } },
|
||||
{ VK_DECIMAL, NOCAPS, {',', ',' } },
|
||||
{ VK_TAB, NOCAPS, {'\t','\t'} },
|
||||
{ VK_ADD, NOCAPS, {'+', '+' } },
|
||||
{ VK_DIVIDE, NOCAPS, {'/', '/' } },
|
||||
{ VK_MULTIPLY, NOCAPS, {'*', '*' } },
|
||||
{ VK_SUBTRACT, NOCAPS, {'-', '-' } },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
|
||||
{ '1', NOCAPS, {'1', '!', '~' } },
|
||||
{ '3', NOCAPS, {'3', '#', '^' } },
|
||||
{ '4', NOCAPS, {'4', 0x00a4, 0x02d8} },
|
||||
{ '5', NOCAPS, {'5', '%', 0x00b0} },
|
||||
{ '7', NOCAPS, {'7', '/', '`' } },
|
||||
{ '8', NOCAPS, {'8', '(', 0x00b7} },
|
||||
{ '9', NOCAPS, {'9', ')', 0x00b4} },
|
||||
{ '0', NOCAPS, {'0', '=', 0x02dd} },
|
||||
{ VK_OEM_PLUS, NOCAPS, {'\'', '*', 0x00b8} },
|
||||
{ 'Q', CAPS, {'q', 'Q', '\\' } },
|
||||
{ 'W', CAPS, {'w', 'W', '|' } },
|
||||
{ 'S', CAPS, {'s', 'S', 0x0111} },
|
||||
{ 'D', CAPS, {'d', 'D', 0x0110} },
|
||||
{ 'K', CAPS, {'k', 'K', 0x0142} },
|
||||
{ 'L', CAPS, {'l', 'L', 0x0141} },
|
||||
{ VK_OEM_1, NOCAPS, {0x015f, 0x015e, '$' } },
|
||||
{ VK_OEM_7, NOCAPS, {0x0163, 0x0162, 0x00df} },
|
||||
{ 'V', CAPS, {'v', 'V', '@' } },
|
||||
{ 'B', CAPS, {'b', 'B', '{' } },
|
||||
{ 'N', CAPS, {'n', 'N', '}' } },
|
||||
{ 'M', CAPS, {'m', 'M', 0x00a7} },
|
||||
{ VK_OEM_COMMA, NOCAPS, {',', ';', '<' } },
|
||||
{ VK_OEM_PERIOD, NOCAPS, {'.', ':', '>' } },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
|
||||
{ VK_OEM_4, NOCAPS, {0x0103, 0x0102, 0x00f7, 0x001b} },
|
||||
{ VK_OEM_6, NOCAPS, {0x00ee, 0x00ce, 0x00d7, 0x001d} },
|
||||
{ VK_OEM_5, NOCAPS, {0x00e2, 0x00c2, WCH_NONE, 0x001c} },
|
||||
{ VK_OEM_102, NOCAPS, {'<', '>', WCH_NONE, 0x001c} },
|
||||
{ VK_BACK, NOCAPS, {'\b', '\b', WCH_NONE, 0x007f} },
|
||||
{ VK_ESCAPE, NOCAPS, {0x001b, 0x001b, WCH_NONE, 0x001b} },
|
||||
{ VK_RETURN, NOCAPS, {'\r', '\r', WCH_NONE, '\n' } },
|
||||
{ VK_SPACE, NOCAPS, {' ', ' ', WCH_NONE, ' ' } },
|
||||
{ VK_CANCEL, NOCAPS, {0x0003, 0x0003, WCH_NONE, 0x0003} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[] = {
|
||||
{ '2', NOCAPS, {'2', '\"', 0x02c7, WCH_NONE, 0x0000} },
|
||||
{ '6', NOCAPS, {'6', '&', 0x02db, WCH_NONE, 0x001e} },
|
||||
{ VK_OEM_MINUS, NOCAPS, {'+', '?', 0x00a8, WCH_NONE, 0x001f} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
|
||||
{ VK_NUMPAD0, 0, {'0'} },
|
||||
{ VK_NUMPAD1, 0, {'1'} },
|
||||
{ VK_NUMPAD2, 0, {'2'} },
|
||||
{ VK_NUMPAD3, 0, {'3'} },
|
||||
{ VK_NUMPAD4, 0, {'4'} },
|
||||
{ VK_NUMPAD5, 0, {'5'} },
|
||||
{ VK_NUMPAD6, 0, {'6'} },
|
||||
{ VK_NUMPAD7, 0, {'7'} },
|
||||
{ VK_NUMPAD8, 0, {'8'} },
|
||||
{ VK_NUMPAD9, 0, {'9'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
|
||||
|
||||
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
|
||||
vk_master(3,key_to_chars_3mod),
|
||||
vk_master(4,key_to_chars_4mod),
|
||||
vk_master(5,key_to_chars_5mod),
|
||||
vk_master(2,key_to_chars_2mod),
|
||||
vk_master(1,keypad_numbers),
|
||||
{ 0,0,0 }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR key_names[] = {
|
||||
{ 0x01, L"Esc" },
|
||||
{ 0x0e, L"Backspace" },
|
||||
{ 0x0f, L"Tab" },
|
||||
{ 0x1c, L"Enter" },
|
||||
{ 0x1d, L"Ctrl" },
|
||||
{ 0x2a, L"Shift" },
|
||||
{ 0x36, L"Right Shift" },
|
||||
{ 0x37, L"Num *" },
|
||||
{ 0x38, L"Alt" },
|
||||
{ 0x39, L"Space" },
|
||||
{ 0x3a, L"Caps Lock" },
|
||||
{ 0x3b, L"F1" },
|
||||
{ 0x3c, L"F2" },
|
||||
{ 0x3d, L"F3" },
|
||||
{ 0x3e, L"F4" },
|
||||
{ 0x3f, L"F5" },
|
||||
{ 0x40, L"F6" },
|
||||
{ 0x41, L"F7" },
|
||||
{ 0x42, L"F8" },
|
||||
{ 0x43, L"F9" },
|
||||
{ 0x44, L"F10" },
|
||||
{ 0x45, L"Pause" },
|
||||
{ 0x46, L"Scroll Lock" },
|
||||
{ 0x47, L"Num 7" },
|
||||
{ 0x48, L"Num 8" },
|
||||
{ 0x49, L"Num 9" },
|
||||
{ 0x4a, L"Num -" },
|
||||
{ 0x4b, L"Num 4" },
|
||||
{ 0x4c, L"Num 5" },
|
||||
{ 0x4d, L"Num 6" },
|
||||
{ 0x4e, L"Num +" },
|
||||
{ 0x4f, L"Num 1" },
|
||||
{ 0x50, L"Num 2" },
|
||||
{ 0x51, L"Num 3" },
|
||||
{ 0x52, L"Num 0" },
|
||||
{ 0x53, L"Num Del" },
|
||||
{ 0x54, L"Sys Req" },
|
||||
{ 0x57, L"F11" },
|
||||
{ 0x58, L"F12" },
|
||||
{ 0x7c, L"F13" },
|
||||
{ 0x7d, L"F14" },
|
||||
{ 0x7e, L"F15" },
|
||||
{ 0x7f, L"F16" },
|
||||
{ 0x80, L"F17" },
|
||||
{ 0x81, L"F18" },
|
||||
{ 0x82, L"F19" },
|
||||
{ 0x83, L"F20" },
|
||||
{ 0x84, L"F21" },
|
||||
{ 0x85, L"F22" },
|
||||
{ 0x86, L"F23" },
|
||||
{ 0x87, L"F24" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR extended_key_names[] = {
|
||||
{ 0x1c, L"Num Enter" },
|
||||
{ 0x1d, L"Right Control" },
|
||||
{ 0x35, L"Num /" },
|
||||
{ 0x37, L"Prnt Scrn" },
|
||||
{ 0x38, L"Right Alt" },
|
||||
{ 0x45, L"Num Lock" },
|
||||
{ 0x46, L"Break" },
|
||||
{ 0x47, L"Home" },
|
||||
{ 0x48, L"Up" },
|
||||
{ 0x49, L"Page Up" },
|
||||
{ 0x4b, L"Left" },
|
||||
{ 0x4d, L"Right" },
|
||||
{ 0x4f, L"End" },
|
||||
{ 0x50, L"Down" },
|
||||
{ 0x51, L"Page Down" },
|
||||
{ 0x52, L"Insert" },
|
||||
{ 0x53, L"Delete" },
|
||||
{ 0x54, L"<ReactOS>" },
|
||||
{ 0x56, L"Help" },
|
||||
{ 0x5b, L"Left <ReactOS>" },
|
||||
{ 0x5c, L"Right <ReactOS>" },
|
||||
{ 0x5d, L"Application" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
/* Finally, the master table */
|
||||
ROSDATA KBDTABLES keyboard_layout_table = {
|
||||
/* modifier assignments */
|
||||
&modifier_bits,
|
||||
|
||||
/* character from vk tables */
|
||||
vk_to_wchar_master_table,
|
||||
|
||||
/* diacritical marks */
|
||||
NULL,
|
||||
|
||||
/* Key names */
|
||||
(VSC_LPWSTR *)key_names,
|
||||
(VSC_LPWSTR *)extended_key_names,
|
||||
NULL, /* Dead key names */
|
||||
|
||||
/* scan code to virtual key maps */
|
||||
scancode_to_vk,
|
||||
sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
|
||||
extcode0_to_vk,
|
||||
extcode1_to_vk,
|
||||
|
||||
MAKELONG(0,1), /* Version 1.0 */
|
||||
|
||||
/* Ligatures */
|
||||
0,
|
||||
0,
|
||||
NULL
|
||||
};
|
||||
|
||||
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) {
|
||||
return &keyboard_layout_table;
|
||||
}
|
||||
|
||||
INT STDCALL
|
||||
DllMain(
|
||||
PVOID hinstDll,
|
||||
ULONG dwReason,
|
||||
PVOID reserved)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
8
reactos/dll/keyboard/kbdro/kbdro.def
Normal file
8
reactos/dll/keyboard/kbdro/kbdro.def
Normal file
|
@ -0,0 +1,8 @@
|
|||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
LIBRARY kbdro.dll
|
||||
|
||||
EXPORTS
|
||||
KbdLayerDescriptor@0
|
||||
;EOF
|
10
reactos/dll/keyboard/kbdro/kbdro.rbuild
Normal file
10
reactos/dll/keyboard/kbdro/kbdro.rbuild
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="kbdro" type="kernelmodedll" entrypoint="0" installbase="system32" installname="kbdro.dll" allowwarnings="true">
|
||||
<importlibrary definition="kbdro.def" />
|
||||
<include base="ntoskrnl">include</include>
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<define name="_WIN32_WINNT">0x0500</define>
|
||||
<file>kbdro.c</file>
|
||||
<file>kbdro.rc</file>
|
||||
</module>
|
5
reactos/dll/keyboard/kbdro/kbdro.rc
Normal file
5
reactos/dll/keyboard/kbdro/kbdro.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Romanian Keyboard Layout\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "kbdro\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "kbdro.dll\0"
|
||||
#include <reactos/version.rc>
|
403
reactos/dll/keyboard/kbdtat/kbdtat.c
Normal file
403
reactos/dll/keyboard/kbdtat/kbdtat.c
Normal file
|
@ -0,0 +1,403 @@
|
|||
/*
|
||||
* ReactOS Tatar Keyboard layout
|
||||
* Copyright (C) 2008 ReactOS
|
||||
* Author: Dmitry Chapyshev
|
||||
* License: LGPL, see: LGPL.txt
|
||||
*
|
||||
* Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php
|
||||
* and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <internal/kbd.h>
|
||||
|
||||
#ifdef _M_IA64
|
||||
#define ROSDATA static __declspec(allocate(".data"))
|
||||
#else
|
||||
#ifdef _MSC_VER
|
||||
#pragma data_seg(".data")
|
||||
#define ROSDATA static
|
||||
#else
|
||||
#define ROSDATA static __attribute__((section(".data")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define VK_EMPTY 0xff /* The non-existent VK */
|
||||
#define KSHIFT 0x001 /* Shift modifier */
|
||||
#define KCTRL 0x002 /* Ctrl modifier */
|
||||
#define KALT 0x004 /* Alt modifier */
|
||||
#define KEXT 0x100 /* Extended key code */
|
||||
#define KMULTI 0x200 /* Multi-key */
|
||||
#define KSPEC 0x400 /* Special key */
|
||||
#define KNUMP 0x800 /* Number-pad */
|
||||
#define KNUMS 0xc00 /* Special + number pad */
|
||||
#define KMEXT 0x300 /* Multi + ext */
|
||||
|
||||
#define SHFT_INVALID 0x0F
|
||||
|
||||
ROSDATA USHORT scancode_to_vk[] = {
|
||||
/* Numbers Row */
|
||||
/* - 00 - */
|
||||
/* 1 ... 2 ... 3 ... 4 ... */
|
||||
VK_EMPTY, VK_ESCAPE, '1', '2',
|
||||
'3', '4', '5', '6',
|
||||
'7', '8', '9', '0',
|
||||
VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
|
||||
/* - 0f - */
|
||||
/* First Letters Row */
|
||||
VK_TAB, 'Q', 'W', 'E',
|
||||
'R', 'T', 'Y', 'U',
|
||||
'I', 'O', 'P',
|
||||
VK_OEM_4, VK_OEM_6, VK_RETURN,
|
||||
/* - 1d - */
|
||||
/* Second Letters Row */
|
||||
VK_LCONTROL,
|
||||
'A', 'S', 'D', 'F',
|
||||
'G', 'H', 'J', 'K',
|
||||
'L', VK_OEM_1, VK_OEM_7, VK_OEM_3,
|
||||
VK_LSHIFT, VK_OEM_5,
|
||||
/* - 2c - */
|
||||
/* Third letters row */
|
||||
'Z', 'X', 'C', 'V',
|
||||
'B', 'N', 'M', VK_OEM_COMMA,
|
||||
VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT | KEXT,
|
||||
/* - 37 - */
|
||||
/* Bottom Row */
|
||||
0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL,
|
||||
|
||||
/* - 3b - */
|
||||
/* F-Keys */
|
||||
VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
|
||||
VK_F7, VK_F8, VK_F9, VK_F10,
|
||||
/* - 45 - */
|
||||
/* Locks */
|
||||
VK_NUMLOCK | KMEXT,
|
||||
VK_SCROLL | KMULTI,
|
||||
/* - 47 - */
|
||||
/* Number-Pad */
|
||||
VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
|
||||
VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
|
||||
VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
|
||||
VK_INSERT | KNUMS, VK_DELETE | KNUMS,
|
||||
/* - 54 - */
|
||||
/* Presumably PrtSc */
|
||||
VK_SNAPSHOT,
|
||||
/* - 55 - */
|
||||
/* Oddities, and the remaining standard F-Keys */
|
||||
VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
|
||||
/* - 59 - */
|
||||
VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */
|
||||
VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */
|
||||
VK_HELP,
|
||||
/* - 64 - */
|
||||
/* Even more F-Keys (for example, NCR keyboards from the early 90's) */
|
||||
VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
|
||||
VK_F21, VK_F22, VK_F23,
|
||||
/* - 6f - */
|
||||
/* Not sure who uses these codes */
|
||||
VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET,
|
||||
/* - 72 - */
|
||||
VK_EMPTY, 0xc1, VK_EMPTY, VK_EMPTY,
|
||||
/* - 76 - */
|
||||
/* One more f-key */
|
||||
VK_F24,
|
||||
/* - 77 - */
|
||||
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
|
||||
VK_OEM_PA1, VK_TAB, 0xc2, 0, /* PA1 */
|
||||
0,
|
||||
/* - 80 - */
|
||||
0
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode0_to_vk[] = {
|
||||
{ 0x10, VK_MEDIA_PREV_TRACK | KEXT },
|
||||
{ 0x19, VK_MEDIA_NEXT_TRACK | KEXT },
|
||||
{ 0x1D, VK_RCONTROL | KEXT },
|
||||
{ 0x20, VK_VOLUME_MUTE | KEXT },
|
||||
{ 0x21, VK_LAUNCH_APP2 | KEXT },
|
||||
{ 0x22, VK_MEDIA_PLAY_PAUSE | KEXT },
|
||||
{ 0x24, VK_MEDIA_STOP | KEXT },
|
||||
{ 0x2E, VK_VOLUME_DOWN | KEXT },
|
||||
{ 0x30, VK_VOLUME_UP | KEXT },
|
||||
{ 0x32, VK_BROWSER_HOME | KEXT },
|
||||
{ 0x35, VK_DIVIDE | KEXT },
|
||||
{ 0x37, VK_SNAPSHOT | KEXT },
|
||||
{ 0x38, VK_RMENU | KEXT },
|
||||
{ 0x47, VK_HOME | KEXT },
|
||||
{ 0x48, VK_UP | KEXT },
|
||||
{ 0x49, VK_PRIOR | KEXT },
|
||||
{ 0x4B, VK_LEFT | KEXT },
|
||||
{ 0x4D, VK_RIGHT | KEXT },
|
||||
{ 0x4F, VK_END | KEXT },
|
||||
{ 0x50, VK_DOWN | KEXT },
|
||||
{ 0x51, VK_NEXT | KEXT },
|
||||
{ 0x52, VK_INSERT | KEXT },
|
||||
{ 0x53, VK_DELETE | KEXT },
|
||||
{ 0x5B, VK_LWIN | KEXT },
|
||||
{ 0x5C, VK_RWIN | KEXT },
|
||||
{ 0x5D, VK_APPS | KEXT },
|
||||
{ 0x5F, VK_SLEEP | KEXT },
|
||||
{ 0x65, VK_BROWSER_SEARCH | KEXT },
|
||||
{ 0x66, VK_BROWSER_FAVORITES | KEXT },
|
||||
{ 0x67, VK_BROWSER_REFRESH | KEXT },
|
||||
{ 0x68, VK_BROWSER_STOP | KEXT },
|
||||
{ 0x69, VK_BROWSER_FORWARD | KEXT },
|
||||
{ 0x6A, VK_BROWSER_BACK | KEXT },
|
||||
{ 0x6B, VK_LAUNCH_APP1 | KEXT },
|
||||
{ 0x6C, VK_LAUNCH_MAIL | KEXT },
|
||||
{ 0x6D, VK_LAUNCH_MEDIA_SELECT | KEXT },
|
||||
{ 0x1C, VK_RETURN | KEXT },
|
||||
{ 0x46, VK_CANCEL | KEXT },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode1_to_vk[] = {
|
||||
{ 0x1d, VK_PAUSE},
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_BIT modifier_keys[] = {
|
||||
{ VK_SHIFT, KSHIFT },
|
||||
{ VK_CONTROL, KCTRL },
|
||||
{ VK_MENU, KALT },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA MODIFIERS modifier_bits = {
|
||||
modifier_keys,
|
||||
7,
|
||||
{ 0, 1, 4, 5, SHFT_INVALID, SHFT_INVALID, 2, 3 }
|
||||
};
|
||||
|
||||
#define NOCAPS 0
|
||||
#define CAPS KSHIFT /* Caps -> shift */
|
||||
|
||||
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
||||
{'1', NOCAPS, {'1', '!' } },
|
||||
{'5', NOCAPS, {'5', '%' } },
|
||||
{VK_OEM_PLUS, NOCAPS, {'=', '+' } },
|
||||
{'Q', CAPS, {0x0439, 0x0419} },
|
||||
{'E', CAPS, {0x0443, 0x0423} },
|
||||
{'R', CAPS, {0x043a, 0x041a} },
|
||||
{'T', CAPS, {0x0435, 0x0415} },
|
||||
{'Y', CAPS, {0x043d, 0x041d} },
|
||||
{'U', CAPS, {0x0433, 0x0413} },
|
||||
{'I', CAPS, {0x0448, 0x0428} },
|
||||
{'P', CAPS, {0x0437, 0x0417} },
|
||||
{VK_OEM_4, CAPS, {0x0445, 0x0425} },
|
||||
{'A', CAPS, {0x0444, 0x0424} },
|
||||
{'S', CAPS, {0x044b, 0x042b} },
|
||||
{'D', CAPS, {0x0432, 0x0412} },
|
||||
{'F', CAPS, {0x0430, 0x0410} },
|
||||
{'G', CAPS, {0x043f, 0x041f} },
|
||||
{'H', CAPS, {0x0440, 0x0420} },
|
||||
{'J', CAPS, {0x043e, 0x041e} },
|
||||
{'K', CAPS, {0x043b, 0x041b} },
|
||||
{'L', CAPS, {0x0434, 0x0414} },
|
||||
{'Z', CAPS, {0x044f, 0x042f} },
|
||||
{'X', CAPS, {0x0447, 0x0427} },
|
||||
{'C', CAPS, {0x0441, 0x0421} },
|
||||
{'V', CAPS, {0x043c, 0x041c} },
|
||||
{'B', CAPS, {0x0438, 0x0418} },
|
||||
{'N', CAPS, {0x0442, 0x0422} },
|
||||
{VK_OEM_2, NOCAPS, {'.', ',' } },
|
||||
{VK_DECIMAL, NOCAPS, {',', ',' } },
|
||||
{VK_TAB, NOCAPS, {'\t', '\t' } },
|
||||
{VK_ADD, NOCAPS, {'+', '+' } },
|
||||
{VK_DIVIDE, NOCAPS, {'/', '/' } },
|
||||
{VK_MULTIPLY, NOCAPS, {'*', '*' } },
|
||||
{VK_SUBTRACT, NOCAPS, {'-', '-' } },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
|
||||
{ '2', NOCAPS, {'2', '\"', '@'} },
|
||||
{ '3', NOCAPS, {'3', 0x2116, '#'} },
|
||||
{ '4', NOCAPS, {'4', ';', '$'} },
|
||||
{ '7', NOCAPS, {'7', '?', '['} },
|
||||
{ '8', NOCAPS, {'8', '*', ']'} },
|
||||
{ '9', NOCAPS, {'9', '(', '{'} },
|
||||
{ '0', NOCAPS, {'0', ')', '}'} },
|
||||
{ VK_OEM_7, CAPS, {0x044d, 0x042d, '\''} },
|
||||
{ VK_OEM_COMMA, CAPS, {0x0431, 0x0411, '<'} },
|
||||
{ VK_OEM_PERIOD, CAPS, {0x044e, 0x042e, '>'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
|
||||
{ VK_OEM_3, CAPS, {0x04bb, 0x04ba, 0x0451, 0x0401} },
|
||||
{ 'W', CAPS, {0x04e9, 0x04e8, 0x0446, 0x0426} },
|
||||
{ 'O', CAPS, {0x04d9, 0x04d8, 0x0449, 0x0429} },
|
||||
{ 'M', CAPS, {0x0497, 0x0496, 0x044c, 0x042c} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[] = {
|
||||
{ VK_OEM_MINUS, NOCAPS, {'-', '_', WCH_NONE, WCH_NONE, 0x001f} },
|
||||
{ VK_OEM_6, CAPS, {0x04af, 0x04ae, 0x044a, 0x042a, 0x001b} },
|
||||
{ VK_OEM_5, NOCAPS, {'\\', '/', WCH_NONE, WCH_NONE, 0x001c} },
|
||||
{ VK_OEM_1, CAPS, {0x04a3, 0x04a2, 0x0436, 0x0416, 0x001d} },
|
||||
{ VK_OEM_102, CAPS, {0x0491, 0x0490, WCH_NONE, WCH_NONE, 0x001c} },
|
||||
{ VK_BACK, NOCAPS, {'\b', '\b', WCH_NONE, WCH_NONE, 0x007f} },
|
||||
{ VK_ESCAPE, NOCAPS, {0x001b, 0x001b, WCH_NONE, WCH_NONE, 0x001b} },
|
||||
{ VK_RETURN, NOCAPS, {'\r', '\r', WCH_NONE, WCH_NONE, '\n' } },
|
||||
{ VK_SPACE, NOCAPS, {' ', ' ', WCH_NONE, WCH_NONE, ' ' } },
|
||||
{ VK_CANCEL, NOCAPS, {0x0003, 0x0003, WCH_NONE, WCH_NONE, 0x0003} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS6 key_to_chars_6mod[] = {
|
||||
{ '6', NOCAPS, {'6', ':', WCH_NONE, WCH_NONE, WCH_NONE, 0x001e} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
|
||||
{ VK_NUMPAD0, 0, {'0'} },
|
||||
{ VK_NUMPAD1, 0, {'1'} },
|
||||
{ VK_NUMPAD2, 0, {'2'} },
|
||||
{ VK_NUMPAD3, 0, {'3'} },
|
||||
{ VK_NUMPAD4, 0, {'4'} },
|
||||
{ VK_NUMPAD5, 0, {'5'} },
|
||||
{ VK_NUMPAD6, 0, {'6'} },
|
||||
{ VK_NUMPAD7, 0, {'7'} },
|
||||
{ VK_NUMPAD8, 0, {'8'} },
|
||||
{ VK_NUMPAD9, 0, {'9'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
|
||||
|
||||
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
|
||||
vk_master(3,key_to_chars_3mod),
|
||||
vk_master(4,key_to_chars_4mod),
|
||||
vk_master(5,key_to_chars_5mod),
|
||||
vk_master(6,key_to_chars_6mod),
|
||||
vk_master(2,key_to_chars_2mod),
|
||||
vk_master(1,keypad_numbers),
|
||||
{ 0,0,0 }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR key_names[] = {
|
||||
{ 0x01, L"Esc" },
|
||||
{ 0x0e, L"Backspace" },
|
||||
{ 0x0f, L"Tab" },
|
||||
{ 0x1c, L"Enter" },
|
||||
{ 0x1d, L"Ctrl" },
|
||||
{ 0x2a, L"Shift" },
|
||||
{ 0x36, L"Right Shift" },
|
||||
{ 0x37, L"Num *" },
|
||||
{ 0x38, L"Alt" },
|
||||
{ 0x39, L"Space" },
|
||||
{ 0x3a, L"Caps Lock" },
|
||||
{ 0x3b, L"F1" },
|
||||
{ 0x3c, L"F2" },
|
||||
{ 0x3d, L"F3" },
|
||||
{ 0x3e, L"F4" },
|
||||
{ 0x3f, L"F5" },
|
||||
{ 0x40, L"F6" },
|
||||
{ 0x41, L"F7" },
|
||||
{ 0x42, L"F8" },
|
||||
{ 0x43, L"F9" },
|
||||
{ 0x44, L"F10" },
|
||||
{ 0x45, L"Pause" },
|
||||
{ 0x46, L"Scroll Lock" },
|
||||
{ 0x47, L"Num 7" },
|
||||
{ 0x48, L"Num 8" },
|
||||
{ 0x49, L"Num 9" },
|
||||
{ 0x4a, L"Num -" },
|
||||
{ 0x4b, L"Num 4" },
|
||||
{ 0x4c, L"Num 5" },
|
||||
{ 0x4d, L"Num 6" },
|
||||
{ 0x4e, L"Num +" },
|
||||
{ 0x4f, L"Num 1" },
|
||||
{ 0x50, L"Num 2" },
|
||||
{ 0x51, L"Num 3" },
|
||||
{ 0x52, L"Num 0" },
|
||||
{ 0x53, L"Num Del" },
|
||||
{ 0x54, L"Sys Req" },
|
||||
{ 0x57, L"F11" },
|
||||
{ 0x58, L"F12" },
|
||||
{ 0x7c, L"F13" },
|
||||
{ 0x7d, L"F14" },
|
||||
{ 0x7e, L"F15" },
|
||||
{ 0x7f, L"F16" },
|
||||
{ 0x80, L"F17" },
|
||||
{ 0x81, L"F18" },
|
||||
{ 0x82, L"F19" },
|
||||
{ 0x83, L"F20" },
|
||||
{ 0x84, L"F21" },
|
||||
{ 0x85, L"F22" },
|
||||
{ 0x86, L"F23" },
|
||||
{ 0x87, L"F24" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR extended_key_names[] = {
|
||||
{ 0x1c, L"Num Enter" },
|
||||
{ 0x1d, L"Right Control" },
|
||||
{ 0x35, L"Num /" },
|
||||
{ 0x37, L"Prnt Scrn" },
|
||||
{ 0x38, L"Right Alt" },
|
||||
{ 0x45, L"Num Lock" },
|
||||
{ 0x46, L"Break" },
|
||||
{ 0x47, L"Home" },
|
||||
{ 0x48, L"Up" },
|
||||
{ 0x49, L"Page Up" },
|
||||
{ 0x4b, L"Left" },
|
||||
{ 0x4d, L"Right" },
|
||||
{ 0x4f, L"End" },
|
||||
{ 0x50, L"Down" },
|
||||
{ 0x51, L"Page Down" },
|
||||
{ 0x52, L"Insert" },
|
||||
{ 0x53, L"Delete" },
|
||||
{ 0x54, L"<ReactOS>" },
|
||||
{ 0x56, L"Help" },
|
||||
{ 0x5b, L"Left <ReactOS>" },
|
||||
{ 0x5c, L"Right <ReactOS>" },
|
||||
{ 0x5d, L"Application" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
/* Finally, the master table */
|
||||
ROSDATA KBDTABLES keyboard_layout_table = {
|
||||
/* modifier assignments */
|
||||
&modifier_bits,
|
||||
|
||||
/* character from vk tables */
|
||||
vk_to_wchar_master_table,
|
||||
|
||||
/* diacritical marks */
|
||||
NULL,
|
||||
|
||||
/* Key names */
|
||||
(VSC_LPWSTR *)key_names,
|
||||
(VSC_LPWSTR *)extended_key_names,
|
||||
NULL, /* Dead key names */
|
||||
|
||||
/* scan code to virtual key maps */
|
||||
scancode_to_vk,
|
||||
sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
|
||||
extcode0_to_vk,
|
||||
extcode1_to_vk,
|
||||
|
||||
MAKELONG(0,1), /* Version 1.0 */
|
||||
|
||||
/* Ligatures -- Russian doesn't have any */
|
||||
0,
|
||||
0,
|
||||
NULL
|
||||
};
|
||||
|
||||
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) {
|
||||
return &keyboard_layout_table;
|
||||
}
|
||||
|
||||
INT STDCALL
|
||||
DllMain(
|
||||
PVOID hinstDll,
|
||||
ULONG dwReason,
|
||||
PVOID reserved)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
8
reactos/dll/keyboard/kbdtat/kbdtat.def
Normal file
8
reactos/dll/keyboard/kbdtat/kbdtat.def
Normal file
|
@ -0,0 +1,8 @@
|
|||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
LIBRARY kbdtat.dll
|
||||
|
||||
EXPORTS
|
||||
KbdLayerDescriptor@0
|
||||
;EOF
|
10
reactos/dll/keyboard/kbdtat/kbdtat.rbuild
Normal file
10
reactos/dll/keyboard/kbdtat/kbdtat.rbuild
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="kbdtat" type="kernelmodedll" entrypoint="0" installbase="system32" installname="kbdtat.dll" allowwarnings="true">
|
||||
<importlibrary definition="kbdtat.def" />
|
||||
<include base="ntoskrnl">include</include>
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<define name="_WIN32_WINNT">0x0500</define>
|
||||
<file>kbdtat.c</file>
|
||||
<file>kbdtat.rc</file>
|
||||
</module>
|
5
reactos/dll/keyboard/kbdtat/kbdtat.rc
Normal file
5
reactos/dll/keyboard/kbdtat/kbdtat.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Tatar Keyboard Layout\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "kbdtat\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "kbdtat.dll\0"
|
||||
#include <reactos/version.rc>
|
393
reactos/dll/keyboard/kbdusl/kbdusl.c
Normal file
393
reactos/dll/keyboard/kbdusl/kbdusl.c
Normal file
|
@ -0,0 +1,393 @@
|
|||
/*
|
||||
* ReactOS US-Dvorak for left hand Keyboard layout
|
||||
* Copyright (C) 2008 ReactOS
|
||||
* Author: Dmitry Chapyshev
|
||||
* License: LGPL, see: LGPL.txt
|
||||
*
|
||||
* Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php
|
||||
* and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <internal/kbd.h>
|
||||
|
||||
#ifdef _M_IA64
|
||||
#define ROSDATA static __declspec(allocate(".data"))
|
||||
#else
|
||||
#ifdef _MSC_VER
|
||||
#pragma data_seg(".data")
|
||||
#define ROSDATA static
|
||||
#else
|
||||
#define ROSDATA static __attribute__((section(".data")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define VK_EMPTY 0xff /* The non-existent VK */
|
||||
#define KSHIFT 0x001 /* Shift modifier */
|
||||
#define KCTRL 0x002 /* Ctrl modifier */
|
||||
#define KALT 0x004 /* Alt modifier */
|
||||
#define KEXT 0x100 /* Extended key code */
|
||||
#define KMULTI 0x200 /* Multi-key */
|
||||
#define KSPEC 0x400 /* Special key */
|
||||
#define KNUMP 0x800 /* Number-pad */
|
||||
#define KNUMS 0xc00 /* Special + number pad */
|
||||
#define KMEXT 0x300 /* Multi + ext */
|
||||
|
||||
#define SHFT_INVALID 0x0F
|
||||
|
||||
ROSDATA USHORT scancode_to_vk[] = {
|
||||
/* Numbers Row */
|
||||
/* - 00 - */
|
||||
/* 1 ... 2 ... 3 ... 4 ... */
|
||||
VK_EMPTY, VK_ESCAPE, '1', '2',
|
||||
'3', '4', '5', '6',
|
||||
'7', '8', '9', '0',
|
||||
VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
|
||||
/* - 0f - */
|
||||
/* First Letters Row */
|
||||
VK_TAB, 'Q', 'W', 'E',
|
||||
'R', 'T', 'Y', 'U',
|
||||
'I', 'O', 'P',
|
||||
VK_OEM_4, VK_OEM_6, VK_RETURN,
|
||||
/* - 1d - */
|
||||
/* Second Letters Row */
|
||||
VK_LCONTROL,
|
||||
'A', 'S', 'D', 'F',
|
||||
'G', 'H', 'J', 'K',
|
||||
'L', VK_OEM_1, VK_OEM_7, VK_OEM_3,
|
||||
VK_LSHIFT, VK_OEM_5,
|
||||
/* - 2c - */
|
||||
/* Third letters row */
|
||||
'Z', 'X', 'C', 'V',
|
||||
'B', 'N', 'M', VK_OEM_COMMA,
|
||||
VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT | KEXT,
|
||||
/* - 37 - */
|
||||
/* Bottom Row */
|
||||
0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL,
|
||||
|
||||
/* - 3b - */
|
||||
/* F-Keys */
|
||||
VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
|
||||
VK_F7, VK_F8, VK_F9, VK_F10,
|
||||
/* - 45 - */
|
||||
/* Locks */
|
||||
VK_NUMLOCK | KMEXT,
|
||||
VK_SCROLL | KMULTI,
|
||||
/* - 47 - */
|
||||
/* Number-Pad */
|
||||
VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
|
||||
VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
|
||||
VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
|
||||
VK_INSERT | KNUMS, VK_DELETE | KNUMS,
|
||||
/* - 54 - */
|
||||
/* Presumably PrtSc */
|
||||
VK_SNAPSHOT,
|
||||
/* - 55 - */
|
||||
/* Oddities, and the remaining standard F-Keys */
|
||||
VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
|
||||
/* - 59 - */
|
||||
VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */
|
||||
VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */
|
||||
VK_HELP,
|
||||
/* - 64 - */
|
||||
/* Even more F-Keys (for example, NCR keyboards from the early 90's) */
|
||||
VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
|
||||
VK_F21, VK_F22, VK_F23,
|
||||
/* - 6f - */
|
||||
/* Not sure who uses these codes */
|
||||
VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET,
|
||||
/* - 72 - */
|
||||
VK_EMPTY, 0xc1, VK_EMPTY, VK_EMPTY,
|
||||
/* - 76 - */
|
||||
/* One more f-key */
|
||||
VK_F24,
|
||||
/* - 77 - */
|
||||
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
|
||||
VK_OEM_PA1, VK_TAB, 0xc2, 0, /* PA1 */
|
||||
0,
|
||||
/* - 80 - */
|
||||
0
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode0_to_vk[] = {
|
||||
{ 0x10, VK_MEDIA_PREV_TRACK | KEXT },
|
||||
{ 0x19, VK_MEDIA_NEXT_TRACK | KEXT },
|
||||
{ 0x1D, VK_RCONTROL | KEXT },
|
||||
{ 0x20, VK_VOLUME_MUTE | KEXT },
|
||||
{ 0x21, VK_LAUNCH_APP2 | KEXT },
|
||||
{ 0x22, VK_MEDIA_PLAY_PAUSE | KEXT },
|
||||
{ 0x24, VK_MEDIA_STOP | KEXT },
|
||||
{ 0x2E, VK_VOLUME_DOWN | KEXT },
|
||||
{ 0x30, VK_VOLUME_UP | KEXT },
|
||||
{ 0x32, VK_BROWSER_HOME | KEXT },
|
||||
{ 0x35, VK_DIVIDE | KEXT },
|
||||
{ 0x37, VK_SNAPSHOT | KEXT },
|
||||
{ 0x38, VK_RMENU | KEXT },
|
||||
{ 0x47, VK_HOME | KEXT },
|
||||
{ 0x48, VK_UP | KEXT },
|
||||
{ 0x49, VK_PRIOR | KEXT },
|
||||
{ 0x4B, VK_LEFT | KEXT },
|
||||
{ 0x4D, VK_RIGHT | KEXT },
|
||||
{ 0x4F, VK_END | KEXT },
|
||||
{ 0x50, VK_DOWN | KEXT },
|
||||
{ 0x51, VK_NEXT | KEXT },
|
||||
{ 0x52, VK_INSERT | KEXT },
|
||||
{ 0x53, VK_DELETE | KEXT },
|
||||
{ 0x5B, VK_LWIN | KEXT },
|
||||
{ 0x5C, VK_RWIN | KEXT },
|
||||
{ 0x5D, VK_APPS | KEXT },
|
||||
{ 0x5F, VK_SLEEP | KEXT },
|
||||
{ 0x65, VK_BROWSER_SEARCH | KEXT },
|
||||
{ 0x66, VK_BROWSER_FAVORITES | KEXT },
|
||||
{ 0x67, VK_BROWSER_REFRESH | KEXT },
|
||||
{ 0x68, VK_BROWSER_STOP | KEXT },
|
||||
{ 0x69, VK_BROWSER_FORWARD | KEXT },
|
||||
{ 0x6A, VK_BROWSER_BACK | KEXT },
|
||||
{ 0x6B, VK_LAUNCH_APP1 | KEXT },
|
||||
{ 0x6C, VK_LAUNCH_MAIL | KEXT },
|
||||
{ 0x6D, VK_LAUNCH_MEDIA_SELECT | KEXT },
|
||||
{ 0x1C, VK_RETURN | KEXT },
|
||||
{ 0x46, VK_CANCEL | KEXT },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode1_to_vk[] = {
|
||||
{ 0x1d, VK_PAUSE},
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_BIT modifier_keys[] = {
|
||||
{ VK_SHIFT, KSHIFT },
|
||||
{ VK_CONTROL, KCTRL },
|
||||
{ VK_MENU, KALT },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA MODIFIERS modifier_bits = {
|
||||
modifier_keys,
|
||||
3,
|
||||
{ 0, 1, 2, 3 }
|
||||
};
|
||||
|
||||
#define NOCAPS 0
|
||||
#define CAPS KSHIFT /* Caps -> shift */
|
||||
|
||||
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
||||
{ VK_OEM_3, NOCAPS, {'`', '~'} },
|
||||
{ VK_OEM_2, NOCAPS, {'/', '?'} },
|
||||
{ 'P', CAPS, {'p', 'P'} },
|
||||
{ 'F', CAPS, {'f', 'F'} },
|
||||
{ 'M', CAPS, {'m', 'M'} },
|
||||
{ 'L', CAPS, {'l', 'L'} },
|
||||
{ 'J', CAPS, {'j', 'J'} },
|
||||
{ '4', NOCAPS, {'4', '$'} },
|
||||
{ '3', NOCAPS, {'3', '#'} },
|
||||
{ '1', NOCAPS, {'1', '!'} },
|
||||
{ VK_OEM_1, NOCAPS, {';', ':'} },
|
||||
{ 'Q', CAPS, {'q', 'Q'} },
|
||||
{ 'B', CAPS, {'b', 'B'} },
|
||||
{ 'Y', CAPS, {'y', 'Y'} },
|
||||
{ 'U', CAPS, {'u', 'U'} },
|
||||
{ 'R', CAPS, {'r', 'R'} },
|
||||
{ 'S', CAPS, {'s', 'S'} },
|
||||
{ 'O', CAPS, {'o', 'O'} },
|
||||
{ VK_OEM_PERIOD, NOCAPS, {'.', '>'} },
|
||||
{ '5', NOCAPS, {'5', '%'} },
|
||||
{ VK_OEM_PLUS, NOCAPS, {'=', '+'} },
|
||||
{ 'K', CAPS, {'k', 'K'} },
|
||||
{ 'C', CAPS, {'c', 'C'} },
|
||||
{ 'D', CAPS, {'d', 'D'} },
|
||||
{ 'T', CAPS, {'t', 'T'} },
|
||||
{ 'H', CAPS, {'h', 'H'} },
|
||||
{ 'E', CAPS, {'e', 'E'} },
|
||||
{ 'A', CAPS, {'a', 'A'} },
|
||||
{ 'Z', CAPS, {'z', 'Z'} },
|
||||
{ '8', NOCAPS, {'8', '*'} },
|
||||
{ '7', NOCAPS, {'7', '&'} },
|
||||
{ VK_OEM_7, NOCAPS, {'\'','\"'}},
|
||||
{ 'X', CAPS, {'x', 'X'} },
|
||||
{ 'G', CAPS, {'g', 'G'} },
|
||||
{ 'V', CAPS, {'v', 'V'} },
|
||||
{ 'W', CAPS, {'w', 'W'} },
|
||||
{ 'N', CAPS, {'n', 'N'} },
|
||||
{ 'I', CAPS, {'i', 'I'} },
|
||||
{ VK_OEM_COMMA, NOCAPS, {',', '<'} },
|
||||
{ '0', NOCAPS, {'0', ')'} },
|
||||
{ '9', NOCAPS, {'9', '('} },
|
||||
{ VK_DECIMAL, NOCAPS, {'.', '.'} },
|
||||
{ VK_TAB, NOCAPS, {'\t','\t'}},
|
||||
{ VK_ADD, NOCAPS, {'+', '+'} },
|
||||
{ VK_DIVIDE, NOCAPS, {'/', '/'} },
|
||||
{ VK_MULTIPLY, NOCAPS, {'*', '*'} },
|
||||
{ VK_SUBTRACT, NOCAPS, {'-', '-'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
|
||||
{ VK_OEM_4, NOCAPS, {'[', '{', 0x001b} },
|
||||
{ VK_OEM_6, NOCAPS, {']', '}', 0x001d} },
|
||||
{ VK_OEM_5, NOCAPS, {'\\', '|', 0x001c} },
|
||||
{ VK_OEM_102, NOCAPS, {'\\', '|', 0x001c} },
|
||||
{ VK_BACK, NOCAPS, {'\b', '\b', 0x007f} },
|
||||
{ VK_ESCAPE, NOCAPS, {0x001b, 0x001b, 0x001b} },
|
||||
{ VK_RETURN, NOCAPS, {'\r', '\r', '\n' } },
|
||||
{ VK_SPACE, NOCAPS, {' ', ' ', ' ' } },
|
||||
{ VK_CANCEL, NOCAPS, {0x0003, 0x0003, 0x0003} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
|
||||
{ '2', NOCAPS, {'2', '@', WCH_NONE, 0x0000} },
|
||||
{ '6', NOCAPS, {'6', '^', WCH_NONE, 0x001e} },
|
||||
{ VK_OEM_MINUS, NOCAPS, {'-', '_', WCH_NONE, 0x001f} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
|
||||
{ VK_NUMPAD0, 0, {'0'} },
|
||||
{ VK_NUMPAD1, 0, {'1'} },
|
||||
{ VK_NUMPAD2, 0, {'2'} },
|
||||
{ VK_NUMPAD3, 0, {'3'} },
|
||||
{ VK_NUMPAD4, 0, {'4'} },
|
||||
{ VK_NUMPAD5, 0, {'5'} },
|
||||
{ VK_NUMPAD6, 0, {'6'} },
|
||||
{ VK_NUMPAD7, 0, {'7'} },
|
||||
{ VK_NUMPAD8, 0, {'8'} },
|
||||
{ VK_NUMPAD9, 0, {'9'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
|
||||
|
||||
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
|
||||
vk_master(3,key_to_chars_3mod),
|
||||
vk_master(4,key_to_chars_4mod),
|
||||
vk_master(2,key_to_chars_2mod),
|
||||
vk_master(1,keypad_numbers),
|
||||
{ 0,0,0 }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR key_names[] = {
|
||||
{ 0x01, L"Esc" },
|
||||
{ 0x0e, L"Backspace" },
|
||||
{ 0x0f, L"Tab" },
|
||||
{ 0x1c, L"Enter" },
|
||||
{ 0x1d, L"Ctrl" },
|
||||
{ 0x2a, L"Shift" },
|
||||
{ 0x36, L"Right Shift" },
|
||||
{ 0x37, L"Num *" },
|
||||
{ 0x38, L"Alt" },
|
||||
{ 0x39, L"Space" },
|
||||
{ 0x3a, L"Caps Lock" },
|
||||
{ 0x3b, L"F1" },
|
||||
{ 0x3c, L"F2" },
|
||||
{ 0x3d, L"F3" },
|
||||
{ 0x3e, L"F4" },
|
||||
{ 0x3f, L"F5" },
|
||||
{ 0x40, L"F6" },
|
||||
{ 0x41, L"F7" },
|
||||
{ 0x42, L"F8" },
|
||||
{ 0x43, L"F9" },
|
||||
{ 0x44, L"F10" },
|
||||
{ 0x45, L"Pause" },
|
||||
{ 0x46, L"Scroll Lock" },
|
||||
{ 0x47, L"Num 7" },
|
||||
{ 0x48, L"Num 8" },
|
||||
{ 0x49, L"Num 9" },
|
||||
{ 0x4a, L"Num -" },
|
||||
{ 0x4b, L"Num 4" },
|
||||
{ 0x4c, L"Num 5" },
|
||||
{ 0x4d, L"Num 6" },
|
||||
{ 0x4e, L"Num +" },
|
||||
{ 0x4f, L"Num 1" },
|
||||
{ 0x50, L"Num 2" },
|
||||
{ 0x51, L"Num 3" },
|
||||
{ 0x52, L"Num 0" },
|
||||
{ 0x53, L"Num Del" },
|
||||
{ 0x54, L"Sys Req" },
|
||||
{ 0x57, L"F11" },
|
||||
{ 0x58, L"F12" },
|
||||
{ 0x7c, L"F13" },
|
||||
{ 0x7d, L"F14" },
|
||||
{ 0x7e, L"F15" },
|
||||
{ 0x7f, L"F16" },
|
||||
{ 0x80, L"F17" },
|
||||
{ 0x81, L"F18" },
|
||||
{ 0x82, L"F19" },
|
||||
{ 0x83, L"F20" },
|
||||
{ 0x84, L"F21" },
|
||||
{ 0x85, L"F22" },
|
||||
{ 0x86, L"F23" },
|
||||
{ 0x87, L"F24" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR extended_key_names[] = {
|
||||
{ 0x1c, L"Num Enter" },
|
||||
{ 0x1d, L"Right Control" },
|
||||
{ 0x35, L"Num /" },
|
||||
{ 0x37, L"Prnt Scrn" },
|
||||
{ 0x38, L"Right Alt" },
|
||||
{ 0x45, L"Num Lock" },
|
||||
{ 0x46, L"Break" },
|
||||
{ 0x47, L"Home" },
|
||||
{ 0x48, L"Up" },
|
||||
{ 0x49, L"Page Up" },
|
||||
{ 0x4b, L"Left" },
|
||||
{ 0x4d, L"Right" },
|
||||
{ 0x4f, L"End" },
|
||||
{ 0x50, L"Down" },
|
||||
{ 0x51, L"Page Down" },
|
||||
{ 0x52, L"Insert" },
|
||||
{ 0x53, L"Delete" },
|
||||
{ 0x54, L"<ReactOS>" },
|
||||
{ 0x56, L"Help" },
|
||||
{ 0x5b, L"Left <ReactOS>" },
|
||||
{ 0x5c, L"Right <ReactOS>" },
|
||||
{ 0x5d, L"Application" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
/* Finally, the master table */
|
||||
ROSDATA KBDTABLES keyboard_layout_table = {
|
||||
/* modifier assignments */
|
||||
&modifier_bits,
|
||||
|
||||
/* character from vk tables */
|
||||
vk_to_wchar_master_table,
|
||||
|
||||
/* diacritical marks */
|
||||
NULL,
|
||||
|
||||
/* Key names */
|
||||
(VSC_LPWSTR *)key_names,
|
||||
(VSC_LPWSTR *)extended_key_names,
|
||||
NULL, /* Dead key names */
|
||||
|
||||
/* scan code to virtual key maps */
|
||||
scancode_to_vk,
|
||||
sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
|
||||
extcode0_to_vk,
|
||||
extcode1_to_vk,
|
||||
|
||||
MAKELONG(0,1), /* Version 1.0 */
|
||||
|
||||
/* Ligatures -- Russian doesn't have any */
|
||||
0,
|
||||
0,
|
||||
NULL
|
||||
};
|
||||
|
||||
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) {
|
||||
return &keyboard_layout_table;
|
||||
}
|
||||
|
||||
INT STDCALL
|
||||
DllMain(
|
||||
PVOID hinstDll,
|
||||
ULONG dwReason,
|
||||
PVOID reserved)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
8
reactos/dll/keyboard/kbdusl/kbdusl.def
Normal file
8
reactos/dll/keyboard/kbdusl/kbdusl.def
Normal file
|
@ -0,0 +1,8 @@
|
|||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
LIBRARY kbdusl.dll
|
||||
|
||||
EXPORTS
|
||||
KbdLayerDescriptor@0
|
||||
;EOF
|
10
reactos/dll/keyboard/kbdusl/kbdusl.rbuild
Normal file
10
reactos/dll/keyboard/kbdusl/kbdusl.rbuild
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="kbdusl" type="kernelmodedll" entrypoint="0" installbase="system32" installname="kbdusl.dll" allowwarnings="true">
|
||||
<importlibrary definition="kbdusl.def" />
|
||||
<include base="ntoskrnl">include</include>
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<define name="_WIN32_WINNT">0x0500</define>
|
||||
<file>kbdusl.c</file>
|
||||
<file>kbdusl.rc</file>
|
||||
</module>
|
5
reactos/dll/keyboard/kbdusl/kbdusl.rc
Normal file
5
reactos/dll/keyboard/kbdusl/kbdusl.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS US-Dvorak for left hand Keyboard Layout\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "kbdusl\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "kbdusl.dll\0"
|
||||
#include <reactos/version.rc>
|
393
reactos/dll/keyboard/kbdusr/kbdusr.c
Normal file
393
reactos/dll/keyboard/kbdusr/kbdusr.c
Normal file
|
@ -0,0 +1,393 @@
|
|||
/*
|
||||
* ReactOS US-Dvorak for right hand Keyboard layout
|
||||
* Copyright (C) 2008 ReactOS
|
||||
* Author: Dmitry Chapyshev
|
||||
* License: LGPL, see: LGPL.txt
|
||||
*
|
||||
* Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php
|
||||
* and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <internal/kbd.h>
|
||||
|
||||
#ifdef _M_IA64
|
||||
#define ROSDATA static __declspec(allocate(".data"))
|
||||
#else
|
||||
#ifdef _MSC_VER
|
||||
#pragma data_seg(".data")
|
||||
#define ROSDATA static
|
||||
#else
|
||||
#define ROSDATA static __attribute__((section(".data")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define VK_EMPTY 0xff /* The non-existent VK */
|
||||
#define KSHIFT 0x001 /* Shift modifier */
|
||||
#define KCTRL 0x002 /* Ctrl modifier */
|
||||
#define KALT 0x004 /* Alt modifier */
|
||||
#define KEXT 0x100 /* Extended key code */
|
||||
#define KMULTI 0x200 /* Multi-key */
|
||||
#define KSPEC 0x400 /* Special key */
|
||||
#define KNUMP 0x800 /* Number-pad */
|
||||
#define KNUMS 0xc00 /* Special + number pad */
|
||||
#define KMEXT 0x300 /* Multi + ext */
|
||||
|
||||
#define SHFT_INVALID 0x0F
|
||||
|
||||
ROSDATA USHORT scancode_to_vk[] = {
|
||||
/* Numbers Row */
|
||||
/* - 00 - */
|
||||
/* 1 ... 2 ... 3 ... 4 ... */
|
||||
VK_EMPTY, VK_ESCAPE, '1', '2',
|
||||
'3', '4', '5', '6',
|
||||
'7', '8', '9', '0',
|
||||
VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
|
||||
/* - 0f - */
|
||||
/* First Letters Row */
|
||||
VK_TAB, 'Q', 'W', 'E',
|
||||
'R', 'T', 'Y', 'U',
|
||||
'I', 'O', 'P',
|
||||
VK_OEM_4, VK_OEM_6, VK_RETURN,
|
||||
/* - 1d - */
|
||||
/* Second Letters Row */
|
||||
VK_LCONTROL,
|
||||
'A', 'S', 'D', 'F',
|
||||
'G', 'H', 'J', 'K',
|
||||
'L', VK_OEM_1, VK_OEM_7, VK_OEM_3,
|
||||
VK_LSHIFT, VK_OEM_5,
|
||||
/* - 2c - */
|
||||
/* Third letters row */
|
||||
'Z', 'X', 'C', 'V',
|
||||
'B', 'N', 'M', VK_OEM_COMMA,
|
||||
VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT | KEXT,
|
||||
/* - 37 - */
|
||||
/* Bottom Row */
|
||||
0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL,
|
||||
|
||||
/* - 3b - */
|
||||
/* F-Keys */
|
||||
VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
|
||||
VK_F7, VK_F8, VK_F9, VK_F10,
|
||||
/* - 45 - */
|
||||
/* Locks */
|
||||
VK_NUMLOCK | KMEXT,
|
||||
VK_SCROLL | KMULTI,
|
||||
/* - 47 - */
|
||||
/* Number-Pad */
|
||||
VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
|
||||
VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
|
||||
VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
|
||||
VK_INSERT | KNUMS, VK_DELETE | KNUMS,
|
||||
/* - 54 - */
|
||||
/* Presumably PrtSc */
|
||||
VK_SNAPSHOT,
|
||||
/* - 55 - */
|
||||
/* Oddities, and the remaining standard F-Keys */
|
||||
VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
|
||||
/* - 59 - */
|
||||
VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */
|
||||
VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */
|
||||
VK_HELP,
|
||||
/* - 64 - */
|
||||
/* Even more F-Keys (for example, NCR keyboards from the early 90's) */
|
||||
VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
|
||||
VK_F21, VK_F22, VK_F23,
|
||||
/* - 6f - */
|
||||
/* Not sure who uses these codes */
|
||||
VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET,
|
||||
/* - 72 - */
|
||||
VK_EMPTY, 0xc1, VK_EMPTY, VK_EMPTY,
|
||||
/* - 76 - */
|
||||
/* One more f-key */
|
||||
VK_F24,
|
||||
/* - 77 - */
|
||||
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
|
||||
VK_OEM_PA1, VK_TAB, 0xc2, 0, /* PA1 */
|
||||
0,
|
||||
/* - 80 - */
|
||||
0
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode0_to_vk[] = {
|
||||
{ 0x10, VK_MEDIA_PREV_TRACK | KEXT },
|
||||
{ 0x19, VK_MEDIA_NEXT_TRACK | KEXT },
|
||||
{ 0x1D, VK_RCONTROL | KEXT },
|
||||
{ 0x20, VK_VOLUME_MUTE | KEXT },
|
||||
{ 0x21, VK_LAUNCH_APP2 | KEXT },
|
||||
{ 0x22, VK_MEDIA_PLAY_PAUSE | KEXT },
|
||||
{ 0x24, VK_MEDIA_STOP | KEXT },
|
||||
{ 0x2E, VK_VOLUME_DOWN | KEXT },
|
||||
{ 0x30, VK_VOLUME_UP | KEXT },
|
||||
{ 0x32, VK_BROWSER_HOME | KEXT },
|
||||
{ 0x35, VK_DIVIDE | KEXT },
|
||||
{ 0x37, VK_SNAPSHOT | KEXT },
|
||||
{ 0x38, VK_RMENU | KEXT },
|
||||
{ 0x47, VK_HOME | KEXT },
|
||||
{ 0x48, VK_UP | KEXT },
|
||||
{ 0x49, VK_PRIOR | KEXT },
|
||||
{ 0x4B, VK_LEFT | KEXT },
|
||||
{ 0x4D, VK_RIGHT | KEXT },
|
||||
{ 0x4F, VK_END | KEXT },
|
||||
{ 0x50, VK_DOWN | KEXT },
|
||||
{ 0x51, VK_NEXT | KEXT },
|
||||
{ 0x52, VK_INSERT | KEXT },
|
||||
{ 0x53, VK_DELETE | KEXT },
|
||||
{ 0x5B, VK_LWIN | KEXT },
|
||||
{ 0x5C, VK_RWIN | KEXT },
|
||||
{ 0x5D, VK_APPS | KEXT },
|
||||
{ 0x5F, VK_SLEEP | KEXT },
|
||||
{ 0x65, VK_BROWSER_SEARCH | KEXT },
|
||||
{ 0x66, VK_BROWSER_FAVORITES | KEXT },
|
||||
{ 0x67, VK_BROWSER_REFRESH | KEXT },
|
||||
{ 0x68, VK_BROWSER_STOP | KEXT },
|
||||
{ 0x69, VK_BROWSER_FORWARD | KEXT },
|
||||
{ 0x6A, VK_BROWSER_BACK | KEXT },
|
||||
{ 0x6B, VK_LAUNCH_APP1 | KEXT },
|
||||
{ 0x6C, VK_LAUNCH_MAIL | KEXT },
|
||||
{ 0x6D, VK_LAUNCH_MEDIA_SELECT | KEXT },
|
||||
{ 0x1C, VK_RETURN | KEXT },
|
||||
{ 0x46, VK_CANCEL | KEXT },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode1_to_vk[] = {
|
||||
{ 0x1d, VK_PAUSE},
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_BIT modifier_keys[] = {
|
||||
{ VK_SHIFT, KSHIFT },
|
||||
{ VK_CONTROL, KCTRL },
|
||||
{ VK_MENU, KALT },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA MODIFIERS modifier_bits = {
|
||||
modifier_keys,
|
||||
3,
|
||||
{ 0, 1, 2, 3 }
|
||||
};
|
||||
|
||||
#define NOCAPS 0
|
||||
#define CAPS KSHIFT /* Caps -> shift */
|
||||
|
||||
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
||||
{ VK_OEM_3, NOCAPS, {'`' ,'~'} },
|
||||
{ '1', NOCAPS, {'1' ,'!'} },
|
||||
{ '3', NOCAPS, {'3' ,'#'} },
|
||||
{ '4', NOCAPS, {'4' ,'$'} },
|
||||
{ 'J', CAPS, {'j' ,'J'} },
|
||||
{ 'L', CAPS, {'l' ,'L'} },
|
||||
{ 'M', CAPS, {'m' ,'M'} },
|
||||
{ 'F', CAPS, {'f' ,'F'} },
|
||||
{ 'P', CAPS, {'p' ,'P'} },
|
||||
{ VK_OEM_2, NOCAPS, {'/' ,'?'} },
|
||||
{ '5', NOCAPS, {'5' ,'%'} },
|
||||
{ 'Q', CAPS, {'q' ,'Q'} },
|
||||
{ VK_OEM_PERIOD, NOCAPS, {'.' ,'>'} },
|
||||
{ 'O', CAPS, {'o' ,'O'} },
|
||||
{ 'R', CAPS, {'r' ,'R'} },
|
||||
{ 'S', CAPS, {'s' ,'S'} },
|
||||
{ 'U', CAPS, {'u' ,'U'} },
|
||||
{ 'Y', CAPS, {'y' ,'Y'} },
|
||||
{ 'B', CAPS, {'b' ,'B'} },
|
||||
{ VK_OEM_1, NOCAPS, {';' ,':'} },
|
||||
{ VK_OEM_PLUS, NOCAPS, {'=' ,'+'} },
|
||||
{ '7', NOCAPS, {'7' ,'&'} },
|
||||
{ '8', NOCAPS, {'8' ,'*'} },
|
||||
{ 'Z', CAPS, {'z' ,'Z'} },
|
||||
{ 'A', CAPS, {'a' ,'A'} },
|
||||
{ 'E', CAPS, {'e' ,'E'} },
|
||||
{ 'H', CAPS, {'h' ,'H'} },
|
||||
{ 'T', CAPS, {'t' ,'T'} },
|
||||
{ 'D', CAPS, {'d' ,'D'} },
|
||||
{ 'C', CAPS, {'c' ,'C'} },
|
||||
{ 'K', CAPS, {'k' ,'K'} },
|
||||
{ '9', NOCAPS, {'9' ,'('} },
|
||||
{ '0', NOCAPS, {'0' ,')'} },
|
||||
{ 'X', CAPS, {'x' ,'X'} },
|
||||
{ VK_OEM_COMMA, NOCAPS, {',' ,'<'} },
|
||||
{ 'I', CAPS, {'i' ,'I'} },
|
||||
{ 'N', CAPS, {'n' ,'N'} },
|
||||
{ 'W', CAPS, {'w' ,'W'} },
|
||||
{ 'V', CAPS, {'v' ,'V'} },
|
||||
{ 'G', CAPS, {'g' ,'G'} },
|
||||
{ VK_OEM_7, NOCAPS, {'\'','\"'}},
|
||||
{ VK_DECIMAL, NOCAPS, {'.' ,'.'} },
|
||||
{ VK_TAB, NOCAPS, {'\t','\t'}},
|
||||
{ VK_ADD, NOCAPS, {'+' ,'+'} },
|
||||
{ VK_DIVIDE, NOCAPS, {'/' ,'/'} },
|
||||
{ VK_MULTIPLY, NOCAPS, {'*' ,'*'} },
|
||||
{ VK_SUBTRACT, NOCAPS, {'-' ,'-'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
|
||||
{ VK_OEM_4, NOCAPS, {'[', '{', 0x001b} },
|
||||
{ VK_OEM_6, NOCAPS, {']', '}', 0x001d} },
|
||||
{ VK_OEM_5, NOCAPS, {'\\', '|', 0x001c} },
|
||||
{ VK_OEM_102, NOCAPS, {'\\', '|', 0x001c} },
|
||||
{ VK_BACK, NOCAPS, {'\b', '\b', 0x007f} },
|
||||
{ VK_ESCAPE, NOCAPS, {0x001b, 0x001b, 0x001b} },
|
||||
{ VK_RETURN, NOCAPS, {'\r', '\r', '\n' } },
|
||||
{ VK_SPACE, NOCAPS, {' ', ' ', ' ' } },
|
||||
{ VK_CANCEL, NOCAPS, {0x0003, 0x0003, 0x0003} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
|
||||
{ '2', NOCAPS, {'2', '@', WCH_NONE, 0x0000} },
|
||||
{ '6', NOCAPS, {'6', '^', WCH_NONE, 0x001e} },
|
||||
{ VK_OEM_MINUS, NOCAPS, {'-', '_', WCH_NONE, 0x001f} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
|
||||
{ VK_NUMPAD0, 0, {'0'} },
|
||||
{ VK_NUMPAD1, 0, {'1'} },
|
||||
{ VK_NUMPAD2, 0, {'2'} },
|
||||
{ VK_NUMPAD3, 0, {'3'} },
|
||||
{ VK_NUMPAD4, 0, {'4'} },
|
||||
{ VK_NUMPAD5, 0, {'5'} },
|
||||
{ VK_NUMPAD6, 0, {'6'} },
|
||||
{ VK_NUMPAD7, 0, {'7'} },
|
||||
{ VK_NUMPAD8, 0, {'8'} },
|
||||
{ VK_NUMPAD9, 0, {'9'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
|
||||
|
||||
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
|
||||
vk_master(3,key_to_chars_3mod),
|
||||
vk_master(4,key_to_chars_4mod),
|
||||
vk_master(2,key_to_chars_2mod),
|
||||
vk_master(1,keypad_numbers),
|
||||
{ 0,0,0 }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR key_names[] = {
|
||||
{ 0x01, L"Esc" },
|
||||
{ 0x0e, L"Backspace" },
|
||||
{ 0x0f, L"Tab" },
|
||||
{ 0x1c, L"Enter" },
|
||||
{ 0x1d, L"Ctrl" },
|
||||
{ 0x2a, L"Shift" },
|
||||
{ 0x36, L"Right Shift" },
|
||||
{ 0x37, L"Num *" },
|
||||
{ 0x38, L"Alt" },
|
||||
{ 0x39, L"Space" },
|
||||
{ 0x3a, L"Caps Lock" },
|
||||
{ 0x3b, L"F1" },
|
||||
{ 0x3c, L"F2" },
|
||||
{ 0x3d, L"F3" },
|
||||
{ 0x3e, L"F4" },
|
||||
{ 0x3f, L"F5" },
|
||||
{ 0x40, L"F6" },
|
||||
{ 0x41, L"F7" },
|
||||
{ 0x42, L"F8" },
|
||||
{ 0x43, L"F9" },
|
||||
{ 0x44, L"F10" },
|
||||
{ 0x45, L"Pause" },
|
||||
{ 0x46, L"Scroll Lock" },
|
||||
{ 0x47, L"Num 7" },
|
||||
{ 0x48, L"Num 8" },
|
||||
{ 0x49, L"Num 9" },
|
||||
{ 0x4a, L"Num -" },
|
||||
{ 0x4b, L"Num 4" },
|
||||
{ 0x4c, L"Num 5" },
|
||||
{ 0x4d, L"Num 6" },
|
||||
{ 0x4e, L"Num +" },
|
||||
{ 0x4f, L"Num 1" },
|
||||
{ 0x50, L"Num 2" },
|
||||
{ 0x51, L"Num 3" },
|
||||
{ 0x52, L"Num 0" },
|
||||
{ 0x53, L"Num Del" },
|
||||
{ 0x54, L"Sys Req" },
|
||||
{ 0x57, L"F11" },
|
||||
{ 0x58, L"F12" },
|
||||
{ 0x7c, L"F13" },
|
||||
{ 0x7d, L"F14" },
|
||||
{ 0x7e, L"F15" },
|
||||
{ 0x7f, L"F16" },
|
||||
{ 0x80, L"F17" },
|
||||
{ 0x81, L"F18" },
|
||||
{ 0x82, L"F19" },
|
||||
{ 0x83, L"F20" },
|
||||
{ 0x84, L"F21" },
|
||||
{ 0x85, L"F22" },
|
||||
{ 0x86, L"F23" },
|
||||
{ 0x87, L"F24" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR extended_key_names[] = {
|
||||
{ 0x1c, L"Num Enter" },
|
||||
{ 0x1d, L"Right Control" },
|
||||
{ 0x35, L"Num /" },
|
||||
{ 0x37, L"Prnt Scrn" },
|
||||
{ 0x38, L"Right Alt" },
|
||||
{ 0x45, L"Num Lock" },
|
||||
{ 0x46, L"Break" },
|
||||
{ 0x47, L"Home" },
|
||||
{ 0x48, L"Up" },
|
||||
{ 0x49, L"Page Up" },
|
||||
{ 0x4b, L"Left" },
|
||||
{ 0x4d, L"Right" },
|
||||
{ 0x4f, L"End" },
|
||||
{ 0x50, L"Down" },
|
||||
{ 0x51, L"Page Down" },
|
||||
{ 0x52, L"Insert" },
|
||||
{ 0x53, L"Delete" },
|
||||
{ 0x54, L"<ReactOS>" },
|
||||
{ 0x56, L"Help" },
|
||||
{ 0x5b, L"Left <ReactOS>" },
|
||||
{ 0x5c, L"Right <ReactOS>" },
|
||||
{ 0x5d, L"Application" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
/* Finally, the master table */
|
||||
ROSDATA KBDTABLES keyboard_layout_table = {
|
||||
/* modifier assignments */
|
||||
&modifier_bits,
|
||||
|
||||
/* character from vk tables */
|
||||
vk_to_wchar_master_table,
|
||||
|
||||
/* diacritical marks */
|
||||
NULL,
|
||||
|
||||
/* Key names */
|
||||
(VSC_LPWSTR *)key_names,
|
||||
(VSC_LPWSTR *)extended_key_names,
|
||||
NULL, /* Dead key names */
|
||||
|
||||
/* scan code to virtual key maps */
|
||||
scancode_to_vk,
|
||||
sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
|
||||
extcode0_to_vk,
|
||||
extcode1_to_vk,
|
||||
|
||||
MAKELONG(0,1), /* Version 1.0 */
|
||||
|
||||
/* Ligatures -- Russian doesn't have any */
|
||||
0,
|
||||
0,
|
||||
NULL
|
||||
};
|
||||
|
||||
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) {
|
||||
return &keyboard_layout_table;
|
||||
}
|
||||
|
||||
INT STDCALL
|
||||
DllMain(
|
||||
PVOID hinstDll,
|
||||
ULONG dwReason,
|
||||
PVOID reserved)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
8
reactos/dll/keyboard/kbdusr/kbdusr.def
Normal file
8
reactos/dll/keyboard/kbdusr/kbdusr.def
Normal file
|
@ -0,0 +1,8 @@
|
|||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
LIBRARY kbdusr.dll
|
||||
|
||||
EXPORTS
|
||||
KbdLayerDescriptor@0
|
||||
;EOF
|
10
reactos/dll/keyboard/kbdusr/kbdusr.rbuild
Normal file
10
reactos/dll/keyboard/kbdusr/kbdusr.rbuild
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="kbdusr" type="kernelmodedll" entrypoint="0" installbase="system32" installname="kbdusr.dll" allowwarnings="true">
|
||||
<importlibrary definition="kbdusr.def" />
|
||||
<include base="ntoskrnl">include</include>
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<define name="_WIN32_WINNT">0x0500</define>
|
||||
<file>kbdusr.c</file>
|
||||
<file>kbdusr.rc</file>
|
||||
</module>
|
5
reactos/dll/keyboard/kbdusr/kbdusr.rc
Normal file
5
reactos/dll/keyboard/kbdusr/kbdusr.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS US-Dvorak for right hand Keyboard Layout\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "kbdusr\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "kbdusr.dll\0"
|
||||
#include <reactos/version.rc>
|
482
reactos/dll/keyboard/kbdusx/kbdusx.c
Normal file
482
reactos/dll/keyboard/kbdusx/kbdusx.c
Normal file
|
@ -0,0 +1,482 @@
|
|||
/*
|
||||
* ReactOS US-International Keyboard layout
|
||||
* Copyright (C) 2008 ReactOS
|
||||
* Author: Dmitry Chapyshev
|
||||
* License: LGPL, see: LGPL.txt
|
||||
*
|
||||
* Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php
|
||||
* and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <internal/kbd.h>
|
||||
|
||||
#ifdef _M_IA64
|
||||
#define ROSDATA static __declspec(allocate(".data"))
|
||||
#else
|
||||
#ifdef _MSC_VER
|
||||
#pragma data_seg(".data")
|
||||
#define ROSDATA static
|
||||
#else
|
||||
#define ROSDATA static __attribute__((section(".data")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define VK_EMPTY 0xff /* The non-existent VK */
|
||||
#define KSHIFT 0x001 /* Shift modifier */
|
||||
#define KCTRL 0x002 /* Ctrl modifier */
|
||||
#define KALT 0x004 /* Alt modifier */
|
||||
#define KEXT 0x100 /* Extended key code */
|
||||
#define KMULTI 0x200 /* Multi-key */
|
||||
#define KSPEC 0x400 /* Special key */
|
||||
#define KNUMP 0x800 /* Number-pad */
|
||||
#define KNUMS 0xc00 /* Special + number pad */
|
||||
#define KMEXT 0x300 /* Multi + ext */
|
||||
|
||||
#define SHFT_INVALID 0x0F
|
||||
|
||||
ROSDATA USHORT scancode_to_vk[] = {
|
||||
/* Numbers Row */
|
||||
/* - 00 - */
|
||||
/* 1 ... 2 ... 3 ... 4 ... */
|
||||
VK_EMPTY, VK_ESCAPE, '1', '2',
|
||||
'3', '4', '5', '6',
|
||||
'7', '8', '9', '0',
|
||||
VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
|
||||
/* - 0f - */
|
||||
/* First Letters Row */
|
||||
VK_TAB, 'Q', 'W', 'E',
|
||||
'R', 'T', 'Y', 'U',
|
||||
'I', 'O', 'P',
|
||||
VK_OEM_4, VK_OEM_6, VK_RETURN,
|
||||
/* - 1d - */
|
||||
/* Second Letters Row */
|
||||
VK_LCONTROL,
|
||||
'A', 'S', 'D', 'F',
|
||||
'G', 'H', 'J', 'K',
|
||||
'L', VK_OEM_1, VK_OEM_7, VK_OEM_3,
|
||||
VK_LSHIFT, VK_OEM_5,
|
||||
/* - 2c - */
|
||||
/* Third letters row */
|
||||
'Z', 'X', 'C', 'V',
|
||||
'B', 'N', 'M', VK_OEM_COMMA,
|
||||
VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT | KEXT,
|
||||
/* - 37 - */
|
||||
/* Bottom Row */
|
||||
0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL,
|
||||
|
||||
/* - 3b - */
|
||||
/* F-Keys */
|
||||
VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
|
||||
VK_F7, VK_F8, VK_F9, VK_F10,
|
||||
/* - 45 - */
|
||||
/* Locks */
|
||||
VK_NUMLOCK | KMEXT,
|
||||
VK_SCROLL | KMULTI,
|
||||
/* - 47 - */
|
||||
/* Number-Pad */
|
||||
VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
|
||||
VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
|
||||
VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
|
||||
VK_INSERT | KNUMS, VK_DELETE | KNUMS,
|
||||
/* - 54 - */
|
||||
/* Presumably PrtSc */
|
||||
VK_SNAPSHOT,
|
||||
/* - 55 - */
|
||||
/* Oddities, and the remaining standard F-Keys */
|
||||
VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
|
||||
/* - 59 - */
|
||||
VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */
|
||||
VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */
|
||||
VK_HELP,
|
||||
/* - 64 - */
|
||||
/* Even more F-Keys (for example, NCR keyboards from the early 90's) */
|
||||
VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
|
||||
VK_F21, VK_F22, VK_F23,
|
||||
/* - 6f - */
|
||||
/* Not sure who uses these codes */
|
||||
VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET,
|
||||
/* - 72 - */
|
||||
VK_EMPTY, 0xc1, VK_EMPTY, VK_EMPTY,
|
||||
/* - 76 - */
|
||||
/* One more f-key */
|
||||
VK_F24,
|
||||
/* - 77 - */
|
||||
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
|
||||
VK_OEM_PA1, VK_TAB, 0xc2, 0, /* PA1 */
|
||||
0,
|
||||
/* - 80 - */
|
||||
0
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode0_to_vk[] = {
|
||||
{ 0x10, VK_MEDIA_PREV_TRACK | KEXT },
|
||||
{ 0x19, VK_MEDIA_NEXT_TRACK | KEXT },
|
||||
{ 0x1D, VK_RCONTROL | KEXT },
|
||||
{ 0x20, VK_VOLUME_MUTE | KEXT },
|
||||
{ 0x21, VK_LAUNCH_APP2 | KEXT },
|
||||
{ 0x22, VK_MEDIA_PLAY_PAUSE | KEXT },
|
||||
{ 0x24, VK_MEDIA_STOP | KEXT },
|
||||
{ 0x2E, VK_VOLUME_DOWN | KEXT },
|
||||
{ 0x30, VK_VOLUME_UP | KEXT },
|
||||
{ 0x32, VK_BROWSER_HOME | KEXT },
|
||||
{ 0x35, VK_DIVIDE | KEXT },
|
||||
{ 0x37, VK_SNAPSHOT | KEXT },
|
||||
{ 0x38, VK_RMENU | KEXT },
|
||||
{ 0x47, VK_HOME | KEXT },
|
||||
{ 0x48, VK_UP | KEXT },
|
||||
{ 0x49, VK_PRIOR | KEXT },
|
||||
{ 0x4B, VK_LEFT | KEXT },
|
||||
{ 0x4D, VK_RIGHT | KEXT },
|
||||
{ 0x4F, VK_END | KEXT },
|
||||
{ 0x50, VK_DOWN | KEXT },
|
||||
{ 0x51, VK_NEXT | KEXT },
|
||||
{ 0x52, VK_INSERT | KEXT },
|
||||
{ 0x53, VK_DELETE | KEXT },
|
||||
{ 0x5B, VK_LWIN | KEXT },
|
||||
{ 0x5C, VK_RWIN | KEXT },
|
||||
{ 0x5D, VK_APPS | KEXT },
|
||||
{ 0x5F, VK_SLEEP | KEXT },
|
||||
{ 0x65, VK_BROWSER_SEARCH | KEXT },
|
||||
{ 0x66, VK_BROWSER_FAVORITES | KEXT },
|
||||
{ 0x67, VK_BROWSER_REFRESH | KEXT },
|
||||
{ 0x68, VK_BROWSER_STOP | KEXT },
|
||||
{ 0x69, VK_BROWSER_FORWARD | KEXT },
|
||||
{ 0x6A, VK_BROWSER_BACK | KEXT },
|
||||
{ 0x6B, VK_LAUNCH_APP1 | KEXT },
|
||||
{ 0x6C, VK_LAUNCH_MAIL | KEXT },
|
||||
{ 0x6D, VK_LAUNCH_MEDIA_SELECT | KEXT },
|
||||
{ 0x1C, VK_RETURN | KEXT },
|
||||
{ 0x46, VK_CANCEL | KEXT },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VSC_VK extcode1_to_vk[] = {
|
||||
{ 0x1d, VK_PAUSE},
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_BIT modifier_keys[] = {
|
||||
{ VK_SHIFT, KSHIFT },
|
||||
{ VK_CONTROL, KCTRL },
|
||||
{ VK_MENU, KALT },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA MODIFIERS modifier_bits = {
|
||||
modifier_keys,
|
||||
6,
|
||||
{ 0, 1, 4, 5, SHFT_INVALID, SHFT_INVALID, 2, 3 }
|
||||
};
|
||||
|
||||
#define NOCAPS 0
|
||||
#define CAPS KSHIFT /* Caps -> shift */
|
||||
|
||||
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
||||
{ VK_OEM_3, NOCAPS, {WCH_DEAD, WCH_DEAD} },
|
||||
{ 0xff, NOCAPS, {'`', '~'} },
|
||||
{ 'F', CAPS, {'f', 'F'} },
|
||||
{ 'G', CAPS, {'g', 'G'} },
|
||||
{ 'H', CAPS, {'h', 'H'} },
|
||||
{ 'J', CAPS, {'j', 'J'} },
|
||||
{ 'K', CAPS, {'k', 'K'} },
|
||||
{ 'X', CAPS, {'x', 'X'} },
|
||||
{ 'V', CAPS, {'v', 'V'} },
|
||||
{ 'B', CAPS, {'b', 'B'} },
|
||||
{ VK_OEM_PERIOD,NOCAPS, {'.', '>'} },
|
||||
{ VK_DECIMAL, NOCAPS, {'.', '.'} },
|
||||
{ VK_TAB, NOCAPS, {'\t','\t'}},
|
||||
{ VK_ADD, NOCAPS, {'+', '+'} },
|
||||
{ VK_DIVIDE, NOCAPS, {'/', '/'} },
|
||||
{ VK_MULTIPLY, NOCAPS, {'*', '*'} },
|
||||
{ VK_SUBTRACT, NOCAPS, {'-', '-'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
|
||||
{ '3', NOCAPS, {'3', '#', 0x00b3} },
|
||||
{ '5', NOCAPS, {'5', '%', 0x20ac} },
|
||||
{ '7', NOCAPS, {'7', '&', 0x00bd} },
|
||||
{ '8', NOCAPS, {'8', '*', 0x00be} },
|
||||
{ '9', NOCAPS, {'9', '(', 0x2018} },
|
||||
{ '0', NOCAPS, {'0', ')', 0x2019} },
|
||||
{ 'R', CAPS, {'r', 'R', 0x00ae} },
|
||||
{ 'M', CAPS, {'m', 'M', 0x00b5} },
|
||||
{ VK_OEM_2, NOCAPS, {'/', '?', 0x00bf} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
|
||||
{ '1', NOCAPS, {'1', '!', 0x00a1, 0x00b9 } },
|
||||
{ '4', NOCAPS, {'4', '$', 0x00a4, 0x00a3 } },
|
||||
{ VK_OEM_PLUS, NOCAPS, {'=', '+', 0x00d7, 0x00f7 } },
|
||||
{ 'Q', CAPS|CAPLOKALTGR, {'q', 'Q', 0x00e4, 0x00c4 } },
|
||||
{ 'W', CAPS|CAPLOKALTGR, {'w', 'W', 0x00e5, 0x00c5 } },
|
||||
{ 'E', CAPS|CAPLOKALTGR, {'e', 'E', 0x00e9, 0x00c9 } },
|
||||
{ 'T', CAPS|CAPLOKALTGR, {'t', 'T', 0x00fe, 0x00de } },
|
||||
{ 'Y', CAPS|CAPLOKALTGR, {'y', 'Y', 0x00fc, 0x00dc } },
|
||||
{ 'U', CAPS|CAPLOKALTGR, {'u', 'U', 0x00fa, 0x00da } },
|
||||
{ 'I', CAPS|CAPLOKALTGR, {'i', 'I', 0x00ed, 0x00cd } },
|
||||
{ 'O', CAPS|CAPLOKALTGR, {'o', 'O', 0x00f3, 0x00d3 } },
|
||||
{ 'P', CAPS|CAPLOKALTGR, {'p', 'P', 0x00f6, 0x00d6 } },
|
||||
{ 'A', CAPS|CAPLOKALTGR, {'a', 'A', 0x00e1, 0x00c1 } },
|
||||
{ 'S', CAPS, {'s', 'S', 0x00df, 0x00a7 } },
|
||||
{ 'D', CAPS|CAPLOKALTGR, {'d', 'D', 0x00f0, 0x00d0 } },
|
||||
{ 'L', CAPS|CAPLOKALTGR, {'l', 'L', 0x00f8, 0x00d8 } },
|
||||
{ VK_OEM_1, NOCAPS, {';', ':', 0x00b6, 0x00b0 } },
|
||||
{ VK_OEM_7, NOCAPS, {WCH_DEAD, WCH_DEAD, 0x00b4, 0x00a8 } },
|
||||
{ 0xff, NOCAPS, {'\'', '\"', WCH_NONE, WCH_NONE} },
|
||||
{ 'Z', CAPS|CAPLOKALTGR, {'z', 'Z', 0x00e6, 0x00c6 } },
|
||||
{ 'C', CAPS, {'c', 'C', 0x00a9, 0x00a2 } },
|
||||
{ 'N', CAPS|CAPLOKALTGR, {'n', 'N', 0x00f1, 0x00d1 } },
|
||||
{ VK_OEM_COMMA, CAPLOKALTGR, {',', '<', 0x00e7, 0x00c7 } },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[] = {
|
||||
{ VK_OEM_4, NOCAPS, {'[', '{', 0x00ab, WCH_NONE, 0x001b} },
|
||||
{ VK_OEM_6, NOCAPS, {']', '}', 0x00bb, WCH_NONE, 0x001d} },
|
||||
{ VK_OEM_5, NOCAPS, {'\\', '|', 0x00ac, 0x00a6, 0x001c} },
|
||||
{ VK_OEM_102, NOCAPS, {'\\', '|', WCH_NONE, WCH_NONE, 0x001c} },
|
||||
{ VK_BACK, NOCAPS, {'\b', '\b', WCH_NONE, WCH_NONE, 0x007f} },
|
||||
{ VK_ESCAPE, NOCAPS, {0x001b, 0x001b, WCH_NONE, WCH_NONE, 0x001b} },
|
||||
{ VK_RETURN, NOCAPS, {'\r', '\r', WCH_NONE, WCH_NONE, '\n' } },
|
||||
{ VK_SPACE, NOCAPS, {' ', ' ', WCH_NONE, WCH_NONE, ' ' } },
|
||||
{ VK_CANCEL, NOCAPS, {0x0003, 0x0003, WCH_NONE, WCH_NONE, 0x0003} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS6 key_to_chars_6mod[] = {
|
||||
{ '2', NOCAPS, {'2', '@', 0x00b2, WCH_NONE, WCH_NONE, 0x0000 } },
|
||||
{ '6', NOCAPS, {'6', WCH_DEAD, 0x00bc, WCH_NONE, WCH_NONE, 0x001e } },
|
||||
{ 0xff, NOCAPS, {WCH_NONE, '^', WCH_NONE, WCH_NONE, WCH_NONE, WCH_NONE} },
|
||||
{ VK_OEM_MINUS, NOCAPS, {'-', '_', 0x00a5, WCH_NONE, WCH_NONE, 0x001f } },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
|
||||
{ VK_NUMPAD0, 0, {'0'} },
|
||||
{ VK_NUMPAD1, 0, {'1'} },
|
||||
{ VK_NUMPAD2, 0, {'2'} },
|
||||
{ VK_NUMPAD3, 0, {'3'} },
|
||||
{ VK_NUMPAD4, 0, {'4'} },
|
||||
{ VK_NUMPAD5, 0, {'5'} },
|
||||
{ VK_NUMPAD6, 0, {'6'} },
|
||||
{ VK_NUMPAD7, 0, {'7'} },
|
||||
{ VK_NUMPAD8, 0, {'8'} },
|
||||
{ VK_NUMPAD9, 0, {'9'} },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
|
||||
|
||||
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
|
||||
vk_master(3,key_to_chars_3mod),
|
||||
vk_master(4,key_to_chars_4mod),
|
||||
vk_master(5,key_to_chars_5mod),
|
||||
vk_master(6,key_to_chars_6mod),
|
||||
vk_master(2,key_to_chars_2mod),
|
||||
vk_master(1,keypad_numbers),
|
||||
{ 0,0,0 }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR key_names[] = {
|
||||
{ 0x01, L"Esc" },
|
||||
{ 0x0e, L"Backspace" },
|
||||
{ 0x0f, L"Tab" },
|
||||
{ 0x1c, L"Enter" },
|
||||
{ 0x1d, L"Ctrl" },
|
||||
{ 0x2a, L"Shift" },
|
||||
{ 0x36, L"Right Shift" },
|
||||
{ 0x37, L"Num *" },
|
||||
{ 0x38, L"Alt" },
|
||||
{ 0x39, L"Space" },
|
||||
{ 0x3a, L"Caps Lock" },
|
||||
{ 0x3b, L"F1" },
|
||||
{ 0x3c, L"F2" },
|
||||
{ 0x3d, L"F3" },
|
||||
{ 0x3e, L"F4" },
|
||||
{ 0x3f, L"F5" },
|
||||
{ 0x40, L"F6" },
|
||||
{ 0x41, L"F7" },
|
||||
{ 0x42, L"F8" },
|
||||
{ 0x43, L"F9" },
|
||||
{ 0x44, L"F10" },
|
||||
{ 0x45, L"Pause" },
|
||||
{ 0x46, L"Scroll Lock" },
|
||||
{ 0x47, L"Num 7" },
|
||||
{ 0x48, L"Num 8" },
|
||||
{ 0x49, L"Num 9" },
|
||||
{ 0x4a, L"Num -" },
|
||||
{ 0x4b, L"Num 4" },
|
||||
{ 0x4c, L"Num 5" },
|
||||
{ 0x4d, L"Num 6" },
|
||||
{ 0x4e, L"Num +" },
|
||||
{ 0x4f, L"Num 1" },
|
||||
{ 0x50, L"Num 2" },
|
||||
{ 0x51, L"Num 3" },
|
||||
{ 0x52, L"Num 0" },
|
||||
{ 0x53, L"Num Del" },
|
||||
{ 0x54, L"Sys Req" },
|
||||
{ 0x57, L"F11" },
|
||||
{ 0x58, L"F12" },
|
||||
{ 0x7c, L"F13" },
|
||||
{ 0x7d, L"F14" },
|
||||
{ 0x7e, L"F15" },
|
||||
{ 0x7f, L"F16" },
|
||||
{ 0x80, L"F17" },
|
||||
{ 0x81, L"F18" },
|
||||
{ 0x82, L"F19" },
|
||||
{ 0x83, L"F20" },
|
||||
{ 0x84, L"F21" },
|
||||
{ 0x85, L"F22" },
|
||||
{ 0x86, L"F23" },
|
||||
{ 0x87, L"F24" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
ROSDATA VSC_LPWSTR extended_key_names[] = {
|
||||
{ 0x1c, L"Num Enter" },
|
||||
{ 0x1d, L"Right Control" },
|
||||
{ 0x35, L"Num /" },
|
||||
{ 0x37, L"Prnt Scrn" },
|
||||
{ 0x38, L"Right Alt" },
|
||||
{ 0x45, L"Num Lock" },
|
||||
{ 0x46, L"Break" },
|
||||
{ 0x47, L"Home" },
|
||||
{ 0x48, L"Up" },
|
||||
{ 0x49, L"Page Up" },
|
||||
{ 0x4b, L"Left" },
|
||||
{ 0x4d, L"Right" },
|
||||
{ 0x4f, L"End" },
|
||||
{ 0x50, L"Down" },
|
||||
{ 0x51, L"Page Down" },
|
||||
{ 0x52, L"Insert" },
|
||||
{ 0x53, L"Delete" },
|
||||
{ 0x54, L"<ReactOS>" },
|
||||
{ 0x56, L"Help" },
|
||||
{ 0x5b, L"Left <ReactOS>" },
|
||||
{ 0x5c, L"Right <ReactOS>" },
|
||||
{ 0x5d, L"Application" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
ROSDATA DEADKEY_LPWSTR dead_key_names[] = {
|
||||
L"\'" L"ACUTE/CEDILLA",
|
||||
L"`" L"GRAVE",
|
||||
L"^" L"CIRCUMFLEX",
|
||||
L"\"" L"UMLAUT",
|
||||
L"~" L"TILDE",
|
||||
NULL
|
||||
};
|
||||
|
||||
#define DEADTRANS(ch, accent, comp, flags) MAKELONG(ch, accent), comp, flags
|
||||
|
||||
ROSDATA DEADKEY dead_key[] = {
|
||||
{ DEADTRANS(L'a', '\'', 0x00e1, 0x0000) },
|
||||
{ DEADTRANS(L'e', '\'', 0x00e9, 0x0000) },
|
||||
{ DEADTRANS(L'i', '\'', 0x00ed, 0x0000) },
|
||||
{ DEADTRANS(L'o', '\'', 0x00f3, 0x0000) },
|
||||
{ DEADTRANS(L'u', '\'', 0x00fa, 0x0000) },
|
||||
{ DEADTRANS(L'y', '\'', 0x00fd, 0x0000) },
|
||||
{ DEADTRANS(L'A', '\'', 0x00c1, 0x0000) },
|
||||
{ DEADTRANS(L'E', '\'', 0x00c9, 0x0000) },
|
||||
{ DEADTRANS(L'I', '\'', 0x00cd, 0x0000) },
|
||||
{ DEADTRANS(L'O', '\'', 0x00d3, 0x0000) },
|
||||
{ DEADTRANS(L'U', '\'', 0x00da, 0x0000) },
|
||||
{ DEADTRANS(L'Y', '\'', 0x00dd, 0x0000) },
|
||||
{ DEADTRANS(L' ', '\'', '\'', 0x0000) },
|
||||
{ DEADTRANS(L'c', '\'', 0x00e7, 0x0000) },
|
||||
{ DEADTRANS(L'C', '\'', 0x00c7, 0x0000) },
|
||||
|
||||
{ DEADTRANS(L'a', '\"', 0x00e4, 0x0000) },
|
||||
{ DEADTRANS(L'e', '\"', 0x00eb, 0x0000) },
|
||||
{ DEADTRANS(L'i', '\"', 0x00ef, 0x0000) },
|
||||
{ DEADTRANS(L'o', '\"', 0x00f6, 0x0000) },
|
||||
{ DEADTRANS(L'u', '\"', 0x00fc, 0x0000) },
|
||||
{ DEADTRANS(L'y', '\"', 0x00ff, 0x0000) },
|
||||
{ DEADTRANS(L'A', '\"', 0x00c4, 0x0000) },
|
||||
{ DEADTRANS(L'E', '\"', 0x00cb, 0x0000) },
|
||||
{ DEADTRANS(L'I', '\"', 0x00cf, 0x0000) },
|
||||
{ DEADTRANS(L'O', '\"', 0x00d6, 0x0000) },
|
||||
{ DEADTRANS(L'U', '\"', 0x00dc, 0x0000) },
|
||||
{ DEADTRANS(L' ', '\"', '\"', 0x0000) },
|
||||
|
||||
{ DEADTRANS(L'a', L'^', 0x00e2, 0x0000) },
|
||||
{ DEADTRANS(L'e', L'^', 0x00ea, 0x0000) },
|
||||
{ DEADTRANS(L'i', L'^', 0x00ee, 0x0000) },
|
||||
{ DEADTRANS(L'o', L'^', 0x00f4, 0x0000) },
|
||||
{ DEADTRANS(L'u', L'^', 0x00fb, 0x0000) },
|
||||
{ DEADTRANS(L'A', L'^', 0x00c2, 0x0000) },
|
||||
{ DEADTRANS(L'E', L'^', 0x00ca, 0x0000) },
|
||||
{ DEADTRANS(L'I', L'^', 0x00ce, 0x0000) },
|
||||
{ DEADTRANS(L'O', L'^', 0x00d4, 0x0000) },
|
||||
{ DEADTRANS(L'U', L'^', 0x00db, 0x0000) },
|
||||
{ DEADTRANS(L' ', L'^', L'^', 0x0000) },
|
||||
|
||||
{ DEADTRANS(L'a', L'`', 0x00e0, 0x0000) },
|
||||
{ DEADTRANS(L'e', L'`', 0x00e8, 0x0000) },
|
||||
{ DEADTRANS(L'i', L'`', 0x00ec, 0x0000) },
|
||||
{ DEADTRANS(L'o', L'`', 0x00f2, 0x0000) },
|
||||
{ DEADTRANS(L'u', L'`', 0x00f9, 0x0000) },
|
||||
{ DEADTRANS(L'A', L'`', 0x00c0, 0x0000) },
|
||||
{ DEADTRANS(L'E', L'`', 0x00c8, 0x0000) },
|
||||
{ DEADTRANS(L'I', L'`', 0x00cc, 0x0000) },
|
||||
{ DEADTRANS(L'O', L'`', 0x00d2, 0x0000) },
|
||||
{ DEADTRANS(L'U', L'`', 0x00d9, 0x0000) },
|
||||
{ DEADTRANS(L' ', L'`', L'`', 0x0000) },
|
||||
|
||||
{ DEADTRANS(L'a', L'~', 0x00e3, 0x0000) },
|
||||
{ DEADTRANS(L'o', L'~', 0x00f5, 0x0000) },
|
||||
{ DEADTRANS(L'n', L'~', 0x00f1, 0x0000) },
|
||||
{ DEADTRANS(L'A', L'~', 0x00c3, 0x0000) },
|
||||
{ DEADTRANS(L'O', L'~', 0x00d5, 0x0000) },
|
||||
{ DEADTRANS(L'N', L'~', 0x00d1, 0x0000) },
|
||||
{ DEADTRANS(L' ', L'~', L'~', 0x0000) },
|
||||
|
||||
{0, 0}
|
||||
};
|
||||
|
||||
/* Finally, the master table */
|
||||
ROSDATA KBDTABLES keyboard_layout_table = {
|
||||
/* modifier assignments */
|
||||
&modifier_bits,
|
||||
|
||||
/* character from vk tables */
|
||||
vk_to_wchar_master_table,
|
||||
|
||||
/* diacritical marks */
|
||||
dead_key,
|
||||
|
||||
/* Key names */
|
||||
(VSC_LPWSTR *)key_names,
|
||||
(VSC_LPWSTR *)extended_key_names,
|
||||
dead_key_names, /* Dead key names */
|
||||
|
||||
/* scan code to virtual key maps */
|
||||
scancode_to_vk,
|
||||
sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
|
||||
extcode0_to_vk,
|
||||
extcode1_to_vk,
|
||||
|
||||
MAKELONG(0,1), /* Version 1.0 */
|
||||
|
||||
/* Ligatures -- Russian doesn't have any */
|
||||
0,
|
||||
0,
|
||||
NULL
|
||||
};
|
||||
|
||||
PKBDTABLES STDCALL KbdLayerDescriptor(VOID) {
|
||||
return &keyboard_layout_table;
|
||||
}
|
||||
|
||||
INT STDCALL
|
||||
DllMain(
|
||||
PVOID hinstDll,
|
||||
ULONG dwReason,
|
||||
PVOID reserved)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
8
reactos/dll/keyboard/kbdusx/kbdusx.def
Normal file
8
reactos/dll/keyboard/kbdusx/kbdusx.def
Normal file
|
@ -0,0 +1,8 @@
|
|||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
LIBRARY kbdusx.dll
|
||||
|
||||
EXPORTS
|
||||
KbdLayerDescriptor@0
|
||||
;EOF
|
10
reactos/dll/keyboard/kbdusx/kbdusx.rbuild
Normal file
10
reactos/dll/keyboard/kbdusx/kbdusx.rbuild
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="kbdusx" type="kernelmodedll" entrypoint="0" installbase="system32" installname="kbdusx.dll" allowwarnings="true">
|
||||
<importlibrary definition="kbdusx.def" />
|
||||
<include base="ntoskrnl">include</include>
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<define name="_WIN32_WINNT">0x0500</define>
|
||||
<file>kbdusx.c</file>
|
||||
<file>kbdusx.rc</file>
|
||||
</module>
|
5
reactos/dll/keyboard/kbdusx/kbdusx.rc
Normal file
5
reactos/dll/keyboard/kbdusx/kbdusx.rc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS US-International Keyboard Layout\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "kbdusx\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "kbdusx.dll\0"
|
||||
#include <reactos/version.rc>
|
|
@ -100,6 +100,9 @@
|
|||
<directory name="kbdpo">
|
||||
<xi:include href="kbdpo/kbdpo.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdro">
|
||||
<xi:include href="kbdro/kbdro.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdru">
|
||||
<xi:include href="kbdru/kbdru.rbuild" />
|
||||
</directory>
|
||||
|
@ -115,6 +118,9 @@
|
|||
<directory name="kbdsw">
|
||||
<xi:include href="kbdsw/kbdsw.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdtat">
|
||||
<xi:include href="kbdtat/kbdtat.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdth">
|
||||
<xi:include href="kbdth/kbdth.rbuild" />
|
||||
</directory>
|
||||
|
@ -130,4 +136,13 @@
|
|||
<directory name="kbdusa">
|
||||
<xi:include href="kbdusa/kbdusa.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdusl">
|
||||
<xi:include href="kbdusl/kbdusl.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdusr">
|
||||
<xi:include href="kbdusr/kbdusr.rbuild" />
|
||||
</directory>
|
||||
<directory name="kbdusx">
|
||||
<xi:include href="kbdusx/kbdusx.rbuild" />
|
||||
</directory>
|
||||
</group>
|
||||
|
|
Loading…
Reference in a new issue