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 | 044efe69724c92a538b9f6e6252ae5782f860153 (patch) | |
tree | 23073f0c77ce2b6b9c4d4c67355548a101545891 /src/Editor.cxx | |
parent | 672a5e079386dbf0d648aac20790fecd17f16a61 (diff) | |
download | scintilla-mirror-044efe69724c92a538b9f6e6252ae5782f860153.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(); |