Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4b050944
Commit
4b050944
authored
May 31, 2002
by
Shachar Shemesh
Committed by
Alexandre Julliard
May 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Israeli Hebrew keyboard, and fixed a problem in the matching of
characters against dead keys.
parent
be367c72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
keyboard.c
dlls/x11drv/keyboard.c
+11
-1
No files found.
dlls/x11drv/keyboard.c
View file @
4b050944
...
...
@@ -531,6 +531,15 @@ static const char main_key_TK[MAIN_LEN][4] =
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
""
,
""
,
".:"
};
/*** Israeli keyboard layout */
static
const
char
main_key_IL
[
MAIN_LEN
][
4
]
=
{
"`~;"
,
"1!1"
,
"2@2"
,
"3#3"
,
"4$4"
,
"5%5"
,
"6^6"
,
"7&7"
,
"8*8"
,
"9(9"
,
"0)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
]
=
{
...
...
@@ -600,6 +609,7 @@ static const struct {
{
"Latin American keyboard layout"
,
28591
,
&
main_key_LA
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"Lithuanian (Baltic) keyboard layout"
,
28603
,
&
main_key_LT_B
,
&
main_key_scan_qwerty
,
&
main_key_vkey_qwerty
},
{
"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
},
{
NULL
,
0
,
NULL
,
NULL
,
NULL
}
/* sentinel */
...
...
@@ -989,7 +999,7 @@ X11DRV_KEYBOARD_DetectLayout (void)
for
(
i
=
0
;
i
<
syms
;
i
++
)
{
keysym
=
TSXKeycodeToKeysym
(
display
,
keyc
,
i
);
/* Allow both one-byte and two-byte national keysyms */
if
((
keysym
<
0x800
)
&&
(
keysym
!=
' '
))
if
((
keysym
<
0x800
0
)
&&
(
keysym
!=
' '
))
ckey
[
i
]
=
keysym
&
0xFF
;
else
{
ckey
[
i
]
=
KEYBOARD_MapDeadKeysym
(
keysym
);
...
...
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