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
e6d53d63
Commit
e6d53d63
authored
Oct 15, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Use ImmSetActiveContext in ImmAssociateContext.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
266c1101
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
22 deletions
+38
-22
imm.c
dlls/imm32/imm.c
+12
-22
imm32.c
dlls/imm32/tests/imm32.c
+26
-0
No files found.
dlls/imm32/imm.c
View file @
e6d53d63
...
...
@@ -601,35 +601,25 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC)
if
(
hIMC
&&
IMM_IsCrossThreadAccess
(
hWnd
,
hIMC
))
return
NULL
;
old
=
GetPropW
(
hWnd
,
szwWineIMCProperty
);
defaultContext
=
get_default_context
(
hWnd
);
old
=
RemovePropW
(
hWnd
,
szwWineIMCProperty
);
if
(
old
==
NULL
)
if
(
!
old
)
old
=
defaultContext
;
else
if
(
old
==
(
HIMC
)
-
1
)
old
=
NULL
;
if
(
hIMC
!=
defaultContext
)
{
if
(
hIMC
==
NULL
)
/* Meaning disable imm for that window*/
SetPropW
(
hWnd
,
szwWineIMCProperty
,
(
HANDLE
)
-
1
);
else
SetPropW
(
hWnd
,
szwWineIMCProperty
,
hIMC
);
}
if
(
old
)
{
InputContextData
*
old_data
=
old
;
if
(
old_data
->
IMC
.
hWnd
==
hWnd
)
old_data
->
IMC
.
hWnd
=
NULL
;
}
if
(
!
hIMC
)
return
old
;
if
(
old
==
hIMC
)
return
hIMC
;
SendMessageW
(
data
->
IMC
.
hWnd
,
WM_IME_SETCONTEXT
,
FALSE
,
ISC_SHOWUIALL
);
data
->
IMC
.
hWnd
=
hWnd
;
SendMessageW
(
data
->
IMC
.
hWnd
,
WM_IME_SETCONTEXT
,
TRUE
,
ISC_SHOWUIALL
);
if
(
!
hIMC
)
/* Meaning disable imm for that window*/
SetPropW
(
hWnd
,
szwWineIMCProperty
,
(
HANDLE
)
-
1
);
else
if
(
hIMC
==
defaultContext
)
RemovePropW
(
hWnd
,
szwWineIMCProperty
);
else
SetPropW
(
hWnd
,
szwWineIMCProperty
,
hIMC
);
ImmSetActiveContext
(
hWnd
,
old
,
FALSE
);
ImmSetActiveContext
(
hWnd
,
hIMC
,
TRUE
);
return
old
;
}
...
...
dlls/imm32/tests/imm32.c
View file @
e6d53d63
...
...
@@ -663,29 +663,55 @@ static void test_ImmAssociateContextEx(void)
{
HIMC
retimc
,
newimc
;
SET_ENABLE
(
WM_IME_SETCONTEXT_ACTIVATE
,
TRUE
);
SET_ENABLE
(
WM_IME_SETCONTEXT_DEACTIVATE
,
TRUE
);
ok
(
GetActiveWindow
()
==
hwnd
,
"hwnd is not active
\n
"
);
newimc
=
ImmCreateContext
();
ok
(
newimc
!=
imc
,
"handles should not be the same
\n
"
);
rc
=
pImmAssociateContextEx
(
NULL
,
NULL
,
0
);
ok
(
!
rc
,
"ImmAssociateContextEx succeeded
\n
"
);
SET_EXPECT
(
WM_IME_SETCONTEXT_DEACTIVATE
);
SET_EXPECT
(
WM_IME_SETCONTEXT_ACTIVATE
);
rc
=
pImmAssociateContextEx
(
hwnd
,
NULL
,
0
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_DEACTIVATE
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_ACTIVATE
);
ok
(
rc
,
"ImmAssociateContextEx failed
\n
"
);
rc
=
pImmAssociateContextEx
(
NULL
,
imc
,
0
);
ok
(
!
rc
,
"ImmAssociateContextEx succeeded
\n
"
);
SET_EXPECT
(
WM_IME_SETCONTEXT_DEACTIVATE
);
SET_EXPECT
(
WM_IME_SETCONTEXT_ACTIVATE
);
rc
=
pImmAssociateContextEx
(
hwnd
,
imc
,
0
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_DEACTIVATE
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_ACTIVATE
);
ok
(
rc
,
"ImmAssociateContextEx failed
\n
"
);
retimc
=
ImmGetContext
(
hwnd
);
ok
(
retimc
==
imc
,
"handles should be the same
\n
"
);
ImmReleaseContext
(
hwnd
,
retimc
);
rc
=
pImmAssociateContextEx
(
hwnd
,
imc
,
0
);
ok
(
rc
,
"ImmAssociateContextEx failed
\n
"
);
SET_EXPECT
(
WM_IME_SETCONTEXT_DEACTIVATE
);
SET_EXPECT
(
WM_IME_SETCONTEXT_ACTIVATE
);
rc
=
pImmAssociateContextEx
(
hwnd
,
newimc
,
0
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_DEACTIVATE
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_ACTIVATE
);
ok
(
rc
,
"ImmAssociateContextEx failed
\n
"
);
retimc
=
ImmGetContext
(
hwnd
);
ok
(
retimc
==
newimc
,
"handles should be the same
\n
"
);
ImmReleaseContext
(
hwnd
,
retimc
);
SET_EXPECT
(
WM_IME_SETCONTEXT_DEACTIVATE
);
SET_EXPECT
(
WM_IME_SETCONTEXT_ACTIVATE
);
rc
=
pImmAssociateContextEx
(
hwnd
,
NULL
,
IACE_DEFAULT
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_DEACTIVATE
);
CHECK_CALLED
(
WM_IME_SETCONTEXT_ACTIVATE
);
ok
(
rc
,
"ImmAssociateContextEx failed
\n
"
);
SET_ENABLE
(
WM_IME_SETCONTEXT_ACTIVATE
,
FALSE
);
SET_ENABLE
(
WM_IME_SETCONTEXT_DEACTIVATE
,
FALSE
);
}
ImmReleaseContext
(
hwnd
,
imc
);
}
...
...
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