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
b52c89fc
Commit
b52c89fc
authored
Apr 23, 2014
by
Ken Thomases
Committed by
Alexandre Julliard
Apr 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: For GetKeyNameText(), use the hard-coded table in preference to the Mac keyboard layout.
parent
c4a28490
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
35 deletions
+32
-35
keyboard.c
dlls/winemac.drv/keyboard.c
+32
-35
No files found.
dlls/winemac.drv/keyboard.c
View file @
b52c89fc
...
...
@@ -1229,6 +1229,8 @@ INT CDECL macdrv_GetKeyNameText(LONG lparam, LPWSTR buffer, INT size)
UInt32
deadKeyState
=
0
;
UniCharCount
len
;
OSStatus
status
;
DWORD
vkey
;
int
i
;
uchr
=
(
const
UCKeyboardLayout
*
)
CFDataGetBytePtr
(
thread_data
->
keyboard_layout_uchr
);
status
=
UCKeyTranslate
(
uchr
,
keyc
,
kUCKeyActionDisplay
,
0
,
thread_data
->
keyboard_type
,
...
...
@@ -1237,51 +1239,46 @@ INT CDECL macdrv_GetKeyNameText(LONG lparam, LPWSTR buffer, INT size)
len
=
0
;
if
(
len
&&
isgraphW
(
buffer
[
0
]))
buffer
[
len
]
=
0
;
else
{
DWORD
vkey
=
thread_data
->
keyc2vkey
[
keyc
];
int
i
;
if
(
scan
&
0x100
)
vkey
|=
0x100
;
if
(
lparam
&
(
1
<<
25
))
vkey
=
thread_data
->
keyc2vkey
[
keyc
];
if
(
lparam
&
(
1
<<
25
))
{
/* Caller doesn't care about distinctions between left and
right keys. */
switch
(
vkey
)
{
/* Caller doesn't care about distinctions between left and
right keys. */
switch
(
vkey
)
{
case
VK_LSHIFT
:
case
VK_RSHIFT
:
vkey
=
VK_SHIFT
;
break
;
case
VK_LCONTROL
:
case
VK_RCONTROL
:
vkey
=
VK_CONTROL
;
break
;
case
VK_LMENU
:
case
VK_RMENU
:
vkey
=
VK_MENU
;
break
;
}
case
VK_LSHIFT
:
case
VK_RSHIFT
:
vkey
=
VK_SHIFT
;
break
;
case
VK_LCONTROL
:
case
VK_RCONTROL
:
vkey
=
VK_CONTROL
;
break
;
case
VK_LMENU
:
case
VK_RMENU
:
vkey
=
VK_MENU
;
break
;
}
}
len
=
0
;
for
(
i
=
0
;
i
<
sizeof
(
vkey_names
)
/
sizeof
(
vkey_names
[
0
]);
i
++
)
{
if
(
vkey_names
[
i
].
vkey
==
vkey
)
{
len
=
MultiByteToWideChar
(
CP_UTF8
,
0
,
vkey_names
[
i
].
name
,
-
1
,
buffer
,
size
);
if
(
len
)
len
--
;
break
;
}
}
if
(
scan
&
0x100
)
vkey
|=
0x100
;
if
(
!
len
)
for
(
i
=
0
;
i
<
sizeof
(
vkey_names
)
/
sizeof
(
vkey_names
[
0
]);
i
++
)
{
if
(
vkey_names
[
i
].
vkey
==
vkey
)
{
static
const
WCHAR
format
[]
=
{
'K'
,
'e'
,
'y'
,
' '
,
'0'
,
'x'
,
'%'
,
'0'
,
'2'
,
'x'
,
0
}
;
snprintfW
(
buffer
,
size
,
format
,
vkey
)
;
len
=
strlenW
(
buffer
)
;
len
=
MultiByteToWideChar
(
CP_UTF8
,
0
,
vkey_names
[
i
].
name
,
-
1
,
buffer
,
size
)
;
if
(
len
)
len
--
;
break
;
}
}
if
(
!
len
)
{
static
const
WCHAR
format
[]
=
{
'K'
,
'e'
,
'y'
,
' '
,
'0'
,
'x'
,
'%'
,
'0'
,
'2'
,
'x'
,
0
};
snprintfW
(
buffer
,
size
,
format
,
vkey
);
len
=
strlenW
(
buffer
);
}
if
(
!
len
)
break
;
if
(
status
==
noErr
&&
deadKeyState
)
...
...
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