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
e607da94
Commit
e607da94
authored
Jan 19, 2024
by
Rémi Bernon
Committed by
Alexandre Julliard
Jan 31, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Only queue a single IME update during ImeProcessKey.
parent
d8a075dc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
8 deletions
+19
-8
imm.c
dlls/win32u/imm.c
+19
-8
No files found.
dlls/win32u/imm.c
View file @
e607da94
...
...
@@ -61,7 +61,7 @@ struct imm_thread_data
UINT
window_cnt
;
WORD
ime_process_scan
;
/* scan code of the key being processed */
WORD
ime_process_vkey
;
/* vkey of the key being processed */
BOOL
ime_process_result
;
/* result string has been received
*/
struct
ime_update
*
update
;
/* result of ImeProcessKey
*/
};
static
struct
list
thread_data_list
=
LIST_INIT
(
thread_data_list
);
...
...
@@ -454,18 +454,22 @@ static void post_ime_update( HWND hwnd, UINT cursor_pos, WCHAR *comp_str, WCHAR
update
->
comp_str
=
comp_str
?
memcpy
(
update
->
buffer
,
comp_str
,
comp_len
*
sizeof
(
WCHAR
)
)
:
NULL
;
update
->
result_str
=
result_str
?
memcpy
(
update
->
buffer
+
comp_len
,
result_str
,
result_len
*
sizeof
(
WCHAR
)
)
:
NULL
;
pthread_mutex_lock
(
&
imm_mutex
);
update
->
scan
=
data
->
ime_process_scan
;
if
(
!
(
update
->
vkey
=
data
->
ime_process_vkey
))
{
pthread_mutex_lock
(
&
imm_mutex
);
id
=
update
->
scan
=
++
ime_update_count
;
update
->
vkey
=
VK_PROCESSKEY
;
}
list_add_tail
(
&
ime_updates
,
&
update
->
entry
);
pthread_mutex_unlock
(
&
imm_mutex
);
if
(
!
data
->
ime_process_vkey
)
NtUserPostMessage
(
hwnd
,
WM_IME_NOTIFY
,
IMN_WINE_SET_COMP_STRING
,
id
);
if
(
result_str
)
data
->
ime_process_result
=
TRUE
;
NtUserPostMessage
(
hwnd
,
WM_IME_NOTIFY
,
IMN_WINE_SET_COMP_STRING
,
id
);
}
else
{
update
->
scan
=
data
->
ime_process_scan
;
free
(
data
->
update
);
data
->
update
=
update
;
}
}
static
struct
ime_update
*
find_ime_update
(
WORD
vkey
,
WORD
scan
)
...
...
@@ -581,10 +585,17 @@ LRESULT ime_driver_call( HWND hwnd, enum wine_ime_call call, WPARAM wparam, LPAR
data
->
ime_process_scan
=
HIWORD
(
lparam
)
&
0x1ff
;
data
->
ime_process_vkey
=
LOWORD
(
wparam
);
data
->
ime_process_result
=
FALSE
;
res
=
user_driver
->
pImeProcessKey
(
params
->
himc
,
wparam
,
lparam
,
params
->
state
);
data
->
ime_process_vkey
=
data
->
ime_process_scan
=
0
;
if
(
!
res
)
res
=
data
->
ime_process_result
;
if
(
data
->
update
)
{
pthread_mutex_lock
(
&
imm_mutex
);
list_add_tail
(
&
ime_updates
,
&
data
->
update
->
entry
);
pthread_mutex_unlock
(
&
imm_mutex
);
data
->
update
=
NULL
;
res
=
TRUE
;
}
TRACE
(
"processing scan %#x, vkey %#x -> %u
\n
"
,
LOWORD
(
wparam
),
HIWORD
(
lparam
)
&
0x1ff
,
(
UINT
)
res
);
return
res
;
...
...
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