diff options
author | Prasanth Ullattil <prasanth.ullattil@nokia.com> | 2009-08-25 11:08:09 (GMT) |
---|---|---|
committer | Prasanth Ullattil <prasanth.ullattil@nokia.com> | 2009-08-27 09:43:26 (GMT) |
commit | 917d176fb49ee1cd54a57305e4d7ef1bd7ce6f34 (patch) | |
tree | 991185e86c865280b614d41a24a1c366a3b129d1 /src/gui/inputmethod/qwininputcontext_p.h | |
parent | bca6787b48c152110b4afb2bd389b1fb9a6032cb (diff) | |
download | Qt-917d176fb49ee1cd54a57305e4d7ef1bd7ce6f34.zip Qt-917d176fb49ee1cd54a57305e4d7ef1bd7ce6f34.tar.gz Qt-917d176fb49ee1cd54a57305e4d7ef1bd7ce6f34.tar.bz2 |
Implement IME reconversion on windows.
Windows IME supports reconversion of text. e.g. On a Japanese layout,
up on pressing the HENKAN key a list of choices for the current word are
shown in a popup. This patch adds that support to Qt. We will select the
current word in the widget and the choices are shown as in the editing
mode.
Task-number:225588
Reviewed-by: axis
Diffstat (limited to 'src/gui/inputmethod/qwininputcontext_p.h')
-rw-r--r-- | src/gui/inputmethod/qwininputcontext_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/inputmethod/qwininputcontext_p.h b/src/gui/inputmethod/qwininputcontext_p.h index eff223b..767fc33 100644 --- a/src/gui/inputmethod/qwininputcontext_p.h +++ b/src/gui/inputmethod/qwininputcontext_p.h @@ -79,6 +79,7 @@ public: bool startComposition(); bool endComposition(); bool composition(LPARAM lparam); + int reconvertString(RECONVERTSTRING *reconv); static void TranslateMessage(const MSG *msg); static LRESULT DefWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); |