diff options
author | Neil <nyamatongwe@gmail.com> | 2014-09-12 11:22:39 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-09-12 11:22:39 +1000 |
commit | d744f3aedb7b09625f45ef659ed4c787bf45c42f (patch) | |
tree | 00da8be0e8c426d00c3195d22fd998792187afba /src/Editor.cxx | |
parent | 2fffff0d5d691f314829b0b3c8ecd59707afdb38 (diff) | |
download | scintilla-mirror-d744f3aedb7b09625f45ef659ed4c787bf45c42f.tar.gz |
Allow choice between windowed and inline IME.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 8f0f43b08..af9d92cdc 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6251,6 +6251,13 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { case SCI_GETCODEPAGE: return pdoc->dbcsCodePage; + case SCI_SETIMEINTERACTION: + imeInteraction = static_cast<EditModel::IMEInteraction>(wParam); + break; + + case SCI_GETIMEINTERACTION: + return imeInteraction; + #ifdef INCLUDE_DEPRECATED_FEATURES case SCI_SETUSEPALETTE: InvalidateStyleRedraw(); |