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
12eb5fd1
Commit
12eb5fd1
authored
Mar 17, 1999
by
Huw D M Davies
Committed by
Alexandre Julliard
Mar 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added UK keyboard layout.
parent
d2037592
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
keyboard.c
windows/x11drv/keyboard.c
+11
-0
No files found.
windows/x11drv/keyboard.c
View file @
12eb5fd1
...
...
@@ -68,6 +68,16 @@ static const char main_key_US[MAIN_LEN][4] =
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
"/?"
};
/*** British keyboard layout */
static
const
char
main_key_UK
[
MAIN_LEN
][
4
]
=
{
"`"
,
"1!"
,
"2
\"
"
,
"3"
,
"4$"
,
"5%"
,
"6^"
,
"7&"
,
"8*"
,
"9("
,
"0)"
,
"-_"
,
"=+"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"yY"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"[{"
,
"]}"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
";:"
,
"'@"
,
"#~"
,
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
"/?"
,
"
\\
|"
};
/*** French keyboard layout (contributed by Eric Pouech) */
static
const
char
main_key_FR
[
MAIN_LEN
][
4
]
=
{
...
...
@@ -114,6 +124,7 @@ static struct {
const
char
(
*
key
)[
MAIN_LEN
][
4
];
}
main_key_tab
[]
=
{
{
MAKELANGID
(
LANG_ENGLISH
,
SUBLANG_ENGLISH_US
),
1252
,
437
,
&
main_key_US
},
{
MAKELANGID
(
LANG_ENGLISH
,
SUBLANG_ENGLISH_UK
),
1252
,
850
,
&
main_key_UK
},
{
MAKELANGID
(
LANG_FRENCH
,
SUBLANG_DEFAULT
),
1252
,
850
,
&
main_key_FR
},
{
MAKELANGID
(
LANG_GERMAN
,
SUBLANG_DEFAULT
),
1252
,
850
,
&
main_key_DE
},
{
MAKELANGID
(
LANG_NORWEGIAN
,
SUBLANG_DEFAULT
),
1252
,
865
,
&
main_key_NO
},
...
...
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