Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.cpp
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| if (wParam == IMN_SETOPENSTATUS || wParam == IMN_SETCONVERSIONMODE) { | if (wParam == IMN_SETOPENSTATUS || wParam == IMN_SETCONVERSIONMODE) { | ||||
| window->getImeInput()->UpdateConversionStatus(hwnd); | window->getImeInput()->UpdateConversionStatus(hwnd); | ||||
| } | } | ||||
| break; | break; | ||||
| } | } | ||||
| case WM_IME_SETCONTEXT: { | case WM_IME_SETCONTEXT: { | ||||
| GHOST_ImeWin32 *ime = window->getImeInput(); | GHOST_ImeWin32 *ime = window->getImeInput(); | ||||
| ime->UpdateInputLanguage(); | ime->UpdateInputLanguage(); | ||||
| ime->UpdateConversionStatus(hwnd); | |||||
| ime->CreateImeWindow(hwnd); | ime->CreateImeWindow(hwnd); | ||||
| ime->CleanupComposition(hwnd); | ime->CleanupComposition(hwnd); | ||||
| ime->CheckFirst(hwnd); | ime->CheckFirst(hwnd); | ||||
| break; | break; | ||||
| } | } | ||||
| case WM_IME_STARTCOMPOSITION: { | case WM_IME_STARTCOMPOSITION: { | ||||
| GHOST_ImeWin32 *ime = window->getImeInput(); | GHOST_ImeWin32 *ime = window->getImeInput(); | ||||
| eventHandled = true; | eventHandled = true; | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||