Details
-
Task
-
Resolution: Done
-
P2: Important
-
None
-
1f292c52cb09444bad4a888df20971c61a4e72a2
Description
Native side has a feature with predictive text support when there is partially written word (underlined) and
user taps that word, the device shows a suggested word list for the user to pick one.
I.e. Write "Tes" (language English), tap the underlined word
Device opens a popup list with "Test, Vest and Spell" (last one is used to type the word yourself)
From Qt input context support this integration to native side is missing. If user taps a word with Qt for Symbian, the pre-edited word
is committed and cursor is moved to the tap position.
I.e. Write "Tes" (language English), tap the underlined word
Device commits "Tes" and moves the cursor into the word
To implement this call MFepPointerEventHandlerDuringInlineEdit::HandlePointerEventInInlineTextL
(QCoeFepInputContext even owns an instance of this class) with TPointerEvent::EButton1Up and the native server should handle the rest.
Focus changes should be handled, though.