Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.cpp
| Context not available. | |||||
| } | } | ||||
| #ifdef WITH_INPUT_IME | #ifdef WITH_INPUT_IME | ||||
| if (window->getImeInput()->IsImeKeyEvent(ascii)) { | if (window->getImeInput()->isEnable() && window->getImeInput()->IsImeKeyEvent(ascii)) { | ||||
| return NULL; | return NULL; /* a key event is forwarded to IME. */ | ||||
| } | } | ||||
| #endif /* WITH_INPUT_IME */ | #endif /* WITH_INPUT_IME */ | ||||
| Context not available. | |||||
| ime->UpdateConversionStatus(hwnd); | ime->UpdateConversionStatus(hwnd); | ||||
| ime->CreateImeWindow(hwnd); | ime->CreateImeWindow(hwnd); | ||||
| ime->CleanupComposition(hwnd); | ime->CleanupComposition(hwnd); | ||||
| ime->CheckFirst(hwnd); | |||||
| break; | break; | ||||
| } | } | ||||
| case WM_IME_STARTCOMPOSITION: { | case WM_IME_STARTCOMPOSITION: { | ||||
| Context not available. | |||||