diff options
author | Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> | 2020-08-14 09:51:07 +0200 |
---|---|---|
committer | Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> | 2020-08-26 08:49:12 +0200 |
commit | f7885bb4eb2660ff4e287996061c9c1d987e5c60 (patch) | |
tree | 0474204dab9a896a3bb2f5ccae0bd62794c42739 /examples/wayland | |
parent | 0a4ce63b6177538a9abed89daefc43cc47247fc1 (diff) | |
download | qtwayland-f7885bb4eb2660ff4e287996061c9c1d987e5c60.tar.gz |
New input method protocol for use with Qt clients
We introduce an alternative input-method protocol, which
is a one-to-one mapping to Qt's input method API. Input
methods such as the virtual keyboard's hunspell
integration is quite sensitive to the inner workings of
the input method handling, both in terms of when state
is updated and which updates are delivered when.
With a one-to-one mapping we are able to match these
expectations and keep a well-synchronized state.
Task-number: QTBUG-85135
Task-number: QTBUG-85134
Change-Id: Id69c22a7b0885ea59f39fdcc8d663749af56c7ce
Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
Diffstat (limited to 'examples/wayland')
-rw-r--r-- | examples/wayland/pure-qml/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wayland/pure-qml/qml/main.qml b/examples/wayland/pure-qml/qml/main.qml index 448c5ff8..5a21735b 100644 --- a/examples/wayland/pure-qml/qml/main.qml +++ b/examples/wayland/pure-qml/qml/main.qml @@ -70,5 +70,5 @@ WaylandCompositor { } // Extension for Input Method (QT_IM_MODULE) support at compositor-side - TextInputManager {} + QtTextInputMethodManager {} } |