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
b6e3f498
Commit
b6e3f498
authored
Aug 16, 2002
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Greek keyboard layout.
Updated Brazilian ABNT-2 keyboard layout.
parent
53a4b58b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
keyboard.c
dlls/x11drv/keyboard.c
+16
-3
No files found.
dlls/x11drv/keyboard.c
View file @
b6e3f498
...
...
@@ -486,10 +486,10 @@ static const char main_key_JA_pc98x1[MAIN_LEN][4] =
/*** Brazilian ABNT-2 keyboard layout (contributed by Raul Gomes Fernandes) */
static
const
char
main_key_PT_br
[
MAIN_LEN
][
4
]
=
{
"'
\"
"
,
"1!"
,
"2@"
,
"3#"
,
"4$"
,
"5%"
,
"6
\"
"
,
"7&"
,
"8*"
,
"9("
,
"0)"
,
"-_"
,
"=+"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"yY"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"
'
`"
,
"[{"
,
"'
\"
"
,
"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"
,
",<"
,
".>"
,
"/?"
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
"
;:"
,
"
/?"
};
/*** US international keyboard layout (contributed by Gustavo Noronha (kov@debian.org)) */
...
...
@@ -570,6 +570,18 @@ static const char main_key_IL[MAIN_LEN][4] =
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
"/?."
};
/*** Greek keyboard layout (contributed by Kriton Kyrimis <kyrimis@cti.gr>)
Greek characters for "wW" and "sS" are omitted to not produce a mismatch
message since they have different characters in gr and el XFree86 layouts. */
static
const
char
main_key_EL
[
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"
,
",<"
,
".>"
,
"/?"
,
"<>"
};
/*** VNC keyboard layout */
static
const
WORD
main_key_scan_vnc
[
MAIN_LEN
]
=
{
...
...
@@ -644,6 +656,7 @@ static const struct {
{
"Turkish keyboard layout"
,
28599
,
&
main_key_TK
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Israeli keyboard layout"
,
28598
,
&
main_key_IL
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"VNC keyboard layout"
,
28591
,
&
main_key_vnc
,
&
main_key_scan_vnc
,
&
main_key_vkey_vnc
},
{
"Greek keyboard layout"
,
28597
,
&
main_key_EL
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
NULL
,
0
,
NULL
,
NULL
,
NULL
}
/* sentinel */
};
...
...
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