Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9a1c52e6
Commit
9a1c52e6
authored
Dec 19, 2002
by
Mauro Carvalho Chehab
Committed by
Alexandre Julliard
Dec 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Included a specific ABNT-2 scan and vkey tables, and an ABNT-2
keyboard with <ALT><GR> key codes.
parent
1cd02fa4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
3 deletions
+38
-3
keyboard.c
dlls/x11drv/keyboard.c
+38
-3
No files found.
dlls/x11drv/keyboard.c
View file @
9a1c52e6
...
@@ -63,7 +63,7 @@ static int is_xkb, xkb_opcode, xkb_event, xkb_error;
...
@@ -63,7 +63,7 @@ static int is_xkb, xkb_opcode, xkb_event, xkb_error;
static
char
KEYBOARD_MapDeadKeysym
(
KeySym
keysym
);
static
char
KEYBOARD_MapDeadKeysym
(
KeySym
keysym
);
/* Keyboard translation tables */
/* Keyboard translation tables */
#define MAIN_LEN 4
8
#define MAIN_LEN 4
9
static
const
WORD
main_key_scan_qwerty
[
MAIN_LEN
]
=
static
const
WORD
main_key_scan_qwerty
[
MAIN_LEN
]
=
{
{
/* this is my (102-key) keyboard layout, sorry if it doesn't quite match yours */
/* this is my (102-key) keyboard layout, sorry if it doesn't quite match yours */
...
@@ -78,6 +78,19 @@ static const WORD main_key_scan_qwerty[MAIN_LEN] =
...
@@ -78,6 +78,19 @@ static const WORD main_key_scan_qwerty[MAIN_LEN] =
0x56
/* the 102nd key (actually to the right of l-shift) */
0x56
/* the 102nd key (actually to the right of l-shift) */
};
};
static
const
WORD
main_key_scan_abnt_qwerty
[
MAIN_LEN
]
=
{
/* ` 1 2 3 4 5 6 7 8 9 0 - = */
0x29
,
0x02
,
0x03
,
0x04
,
0x05
,
0x06
,
0x07
,
0x08
,
0x09
,
0x0A
,
0x0B
,
0x0C
,
0x0D
,
/* q w e r t y u i o p [ ] */
0x10
,
0x11
,
0x12
,
0x13
,
0x14
,
0x15
,
0x16
,
0x17
,
0x18
,
0x19
,
0x1A
,
0x1B
,
/* a s d f g h j k l ; ' \ */
0x1E
,
0x1F
,
0x20
,
0x21
,
0x22
,
0x23
,
0x24
,
0x25
,
0x26
,
0x27
,
0x28
,
0x2B
,
/* \ z x c v b n m , . / */
0x5e
,
0x2C
,
0x2D
,
0x2E
,
0x2F
,
0x30
,
0x31
,
0x32
,
0x33
,
0x34
,
0x35
,
0x56
,
/* the 102nd key (actually to the right of l-shift) */
};
static
const
WORD
main_key_scan_dvorak
[
MAIN_LEN
]
=
static
const
WORD
main_key_scan_dvorak
[
MAIN_LEN
]
=
{
{
/* ` 1 2 3 4 5 6 7 8 9 0 [ ] */
/* ` 1 2 3 4 5 6 7 8 9 0 [ ] */
...
@@ -101,6 +114,16 @@ static const WORD main_key_vkey_qwerty[MAIN_LEN] =
...
@@ -101,6 +114,16 @@ static const WORD main_key_vkey_qwerty[MAIN_LEN] =
VK_OEM_102
/* the 102nd key (actually to the right of l-shift) */
VK_OEM_102
/* the 102nd key (actually to the right of l-shift) */
};
};
static
const
WORD
main_key_vkey_abnt_qwerty
[
MAIN_LEN
]
=
{
/* NOTE: this layout must concur with the scan codes layout above */
VK_OEM_3
,
VK_1
,
VK_2
,
VK_3
,
VK_4
,
VK_5
,
VK_6
,
VK_7
,
VK_8
,
VK_9
,
VK_0
,
VK_OEM_MINUS
,
VK_OEM_PLUS
,
VK_Q
,
VK_W
,
VK_E
,
VK_R
,
VK_T
,
VK_Y
,
VK_U
,
VK_I
,
VK_O
,
VK_P
,
VK_OEM_4
,
VK_OEM_6
,
VK_A
,
VK_S
,
VK_D
,
VK_F
,
VK_G
,
VK_H
,
VK_J
,
VK_K
,
VK_L
,
VK_OEM_1
,
VK_OEM_8
,
VK_OEM_5
,
VK_OEM_7
,
VK_Z
,
VK_X
,
VK_C
,
VK_V
,
VK_B
,
VK_N
,
VK_M
,
VK_OEM_COMMA
,
VK_OEM_PERIOD
,
VK_OEM_2
,
VK_OEM_102
,
/* the 102nd key (actually to the right of l-shift) */
};
static
const
WORD
main_key_vkey_azerty
[
MAIN_LEN
]
=
static
const
WORD
main_key_vkey_azerty
[
MAIN_LEN
]
=
{
{
/* NOTE: this layout must concur with the scan codes layout above */
/* NOTE: this layout must concur with the scan codes layout above */
...
@@ -500,7 +523,18 @@ static const char main_key_PT_br[MAIN_LEN][4] =
...
@@ -500,7 +523,18 @@ static const char main_key_PT_br[MAIN_LEN][4] =
"'
\"
"
,
"1!"
,
"2@"
,
"3#"
,
"4$"
,
"5%"
,
"6"
,
"7&"
,
"8*"
,
"9("
,
"0)"
,
"-_"
,
"=+"
,
"'
\"
"
,
"1!"
,
"2@"
,
"3#"
,
"4$"
,
"5%"
,
"6"
,
"7&"
,
"8*"
,
"9("
,
"0)"
,
"-_"
,
"=+"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"yY"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"`"
,
"[{"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"yY"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"`"
,
"[{"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
""
,
"~^"
,
"]}"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
""
,
"~^"
,
"]}"
,
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
";:"
,
"/?"
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
";:"
,
"/?"
,
"
\\
|"
};
/*** Brazilian ABNT-2 keyboard layout with <ALT GR> (contributed by Mauro Carvalho Chehab) */
static
const
char
main_key_PT_br_alt_gr
[
MAIN_LEN
][
4
]
=
{
"'
\"
"
,
"1!9"
,
"2@2"
,
"3#3"
,
"4$#"
,
"5%
\"
"
,
"6(,"
,
"7&"
,
"8*"
,
"9("
,
"0)"
,
"-_"
,
"=+'"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"yY"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"4`"
,
"[{*"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
"gG"
,
"~^"
,
"]}:"
,
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
";:"
,
"/?0"
,
"
\\
|"
};
};
/*** US international keyboard layout (contributed by Gustavo Noronha (kov@debian.org)) */
/*** US international keyboard layout (contributed by Gustavo Noronha (kov@debian.org)) */
...
@@ -660,7 +694,8 @@ static const struct {
...
@@ -660,7 +694,8 @@ static const struct {
{
"Belgian keyboard layout"
,
28605
,
&
main_key_BE
,
&
main_key_scan_qwerty
,
&
main_key_vkey_azerty
},
{
"Belgian keyboard layout"
,
28605
,
&
main_key_BE
,
&
main_key_scan_qwerty
,
&
main_key_vkey_azerty
},
{
"Swiss French keyboard layout"
,
28605
,
&
main_key_SF
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Swiss French keyboard layout"
,
28605
,
&
main_key_SF
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Portuguese keyboard layout"
,
28605
,
&
main_key_PT
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Portuguese keyboard layout"
,
28605
,
&
main_key_PT
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Brazilian ABNT-2 keyboard layout"
,
28591
,
&
main_key_PT_br
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Brazilian ABNT-2 keyboard layout"
,
28591
,
&
main_key_PT_br
,
&
main_key_scan_abnt_qwerty
,
&
main_key_vkey_abnt_qwerty
},
{
"Brazilian ABNT-2 keyboard layout ALT GR"
,
28591
,
&
main_key_PT_br_alt_gr
,
&
main_key_scan_abnt_qwerty
,
&
main_key_vkey_abnt_qwerty
},
{
"United States International keyboard layout"
,
28591
,
&
main_key_US_intl
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"United States International keyboard layout"
,
28591
,
&
main_key_US_intl
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Finnish keyboard layout"
,
28605
,
&
main_key_FI
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Finnish keyboard layout"
,
28605
,
&
main_key_FI
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Bulgarian bds keyboard layout"
,
1251
,
&
main_key_BG_bds
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Bulgarian bds keyboard layout"
,
1251
,
&
main_key_BG_bds
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment