Fixed bug #634
If TranslateMessage() isn't done, then IME messages aren't generated. --HG-- branch : SDL-1.2 extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%404005
This commit is contained in:
parent
f0c110f75a
commit
b613ffc4f1
2 changed files with 9 additions and 2 deletions
|
@ -198,7 +198,7 @@ LRESULT DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar
|
|||
m.wParam = wParam;
|
||||
m.lParam = lParam;
|
||||
m.time = 0;
|
||||
if ( TranslateMessage(&m) && PeekMessage(&m, hwnd, 0, WM_USER, PM_NOREMOVE) && (m.message == WM_CHAR) ) {
|
||||
if ( PeekMessage(&m, hwnd, 0, WM_USER, PM_NOREMOVE) && (m.message == WM_CHAR) ) {
|
||||
GetMessage(&m, hwnd, 0, WM_USER);
|
||||
wParam = m.wParam;
|
||||
}
|
||||
|
@ -363,6 +363,7 @@ void DIB_PumpEvents(_THIS)
|
|||
|
||||
while ( PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
|
||||
if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessage(&msg);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -655,6 +655,7 @@ static int DX5_CheckInput(_THIS, int timeout, BOOL processInput)
|
|||
while ( ! posted &&
|
||||
PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
|
||||
if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessage(&msg);
|
||||
} else {
|
||||
return(-1);
|
||||
|
@ -713,12 +714,17 @@ static int DX5_CheckInput(_THIS, int timeout, BOOL processInput)
|
|||
}
|
||||
if ( event != WAIT_TIMEOUT ) {
|
||||
/* Maybe there was a windows message? */
|
||||
if ( PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
|
||||
posted = 0;
|
||||
while ( ! posted &&
|
||||
PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
|
||||
if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
|
||||
TranslateMessage(&msg);
|
||||
DispatchMessage(&msg);
|
||||
} else {
|
||||
return(-1);
|
||||
}
|
||||
}
|
||||
if ( posted ) {
|
||||
return(1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue