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
f1511803
Commit
f1511803
authored
Oct 09, 2008
by
Tobias Jakobi
Committed by
Alexandre Julliard
Oct 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Remove acute/apostrophe from German keyboard layout tables.
parent
7ea27385
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
13 deletions
+25
-13
keyboard.c
dlls/winex11.drv/keyboard.c
+25
-13
No files found.
dlls/winex11.drv/keyboard.c
View file @
f1511803
...
...
@@ -242,16 +242,6 @@ static const WORD main_key_vkey_dvorak[MAIN_LEN] =
/* If Wine fails to match your new table, use WINEDEBUG=+key to find out why */
/* Remember to also add your new table to the layout index table far below! */
/*** German Logitech Desktop Pro keyboard layout */
static
const
char
main_key_DE_logitech
[
MAIN_LEN
][
4
]
=
{
"^
\xb0
"
,
"1!"
,
"2
\"
"
,
"3
\xa7
"
,
"4$"
,
"5%"
,
"6&"
,
"7/{"
,
"8(["
,
"9)]"
,
"0=}"
,
"
\xdf
?
\\
"
,
"'`"
,
"qQ@"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"zZ"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"
\xfc\xdc
"
,
"+*~"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
"
\xf6\xd6
"
,
"
\xe4\xc4
"
,
"#'"
,
"yY"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",;"
,
".:"
,
"-_"
,
"<>|"
};
/*** United States keyboard layout (mostly contributed by Uwe Bonnes) */
static
const
char
main_key_US
[
MAIN_LEN
][
4
]
=
{
...
...
@@ -311,10 +301,32 @@ static const char main_key_IS[MAIN_LEN][4] =
"<>"
};
/* All german keyb layout tables have the acute/apostrophe symbol next to
* the BACKSPACE key removed (replaced with NULL which is ignored by the
* detection code).
* This was done because the mapping of the acute (and apostrophe) is done
* differently in various xkb-data/xkeyboard-config versions. Some replace
* the acute with a normal apostrophe, so that the apostrophe is found twice
* on the keyboard (one next to BACKSPACE and one next to ENTER).
* Others put the acute and grave accents on the key left of BACKSPACE.
* More information on the fd.o bugtracker:
* https://bugs.freedesktop.org/show_bug.cgi?id=11514
*/
/*** German Logitech Desktop Pro keyboard layout */
static
const
char
main_key_DE_logitech
[
MAIN_LEN
][
4
]
=
{
"^
\xb0
"
,
"1!"
,
"2
\"
"
,
"3
\xa7
"
,
"4$"
,
"5%"
,
"6&"
,
"7/{"
,
"8(["
,
"9)]"
,
"0=}"
,
"
\xdf
?
\\
"
,
"
\0
`"
,
"qQ@"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"zZ"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"
\xfc\xdc
"
,
"+*~"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
"
\xf6\xd6
"
,
"
\xe4\xc4
"
,
"#'"
,
"yY"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",;"
,
".:"
,
"-_"
,
"<>|"
};
/*** German keyboard layout (setxkbmap de) */
static
const
char
main_key_DE
[
MAIN_LEN
][
4
]
=
{
"^"
,
"1!"
,
"2
\"
"
,
"3"
,
"4$"
,
"5%"
,
"6&"
,
"7/"
,
"8("
,
"9)"
,
"0="
,
"?"
,
"`"
,
"^"
,
"1!"
,
"2
\"
"
,
"3"
,
"4$"
,
"5%"
,
"6&"
,
"7/"
,
"8("
,
"9)"
,
"0="
,
"?"
,
"
\0
`"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"zZ"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
""
,
"+*"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
""
,
""
,
"#'"
,
"yY"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",;"
,
".:"
,
"-_"
,
...
...
@@ -324,7 +336,7 @@ static const char main_key_DE[MAIN_LEN][4] =
/*** German keyboard layout without dead keys */
static
const
char
main_key_DE_nodead
[
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"
,
"zZ"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
""
,
"+*~"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
""
,
""
,
"#'"
,
"yY"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",;"
,
".:"
,
"-_"
,
...
...
@@ -334,7 +346,7 @@ static const char main_key_DE_nodead[MAIN_LEN][4] =
/*** German keyboard layout without dead keys 105 Keys (contributed by Matthias Fechner)*/
static
const
char
main_key_DE_nodead_105
[
MAIN_LEN
][
4
]
=
{
"^"
,
"1!"
,
"2
\"
"
,
"3"
,
"4$"
,
"5%"
,
"6&"
,
"7/{"
,
"8(["
,
"9)]"
,
"0=}"
,
"?
\\
"
,
"
'
`"
,
"^"
,
"1!"
,
"2
\"
"
,
"3"
,
"4$"
,
"5%"
,
"6&"
,
"7/{"
,
"8(["
,
"9)]"
,
"0=}"
,
"?
\\
"
,
"
\0
`"
,
"qQ@"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"zZ"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
""
,
"+*~"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
""
,
""
,
"#'"
,
"<>|"
,
"yY"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",;"
,
".:"
,
"-_"
,
...
...
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