SelectionListModel QML Type

Provides a data model for the selection lists. More...

Import Statement: import QtQuick.VirtualKeyboard 2.13
Instantiates: QVirtualKeyboardSelectionListModel

Signals

Methods

Detailed Description

The SelectionListModel is a data model for word candidates provided by the input method.

An instance of a SelectionListModel cannot be created directly. Instead, the InputEngine manages the instances and provides access to the model by InputEngine::wordCandidateListModel property.

The model exposes the following data roles for the list delegate:

  • display Display text for item.
  • wordCompletionLength Word completion length for item.
  • dictionaryType Dictionary type of the word, see QVirtualKeyboardSelectionListModel::DictionaryType.
  • canRemoveSuggestion A boolean indicating if the word can be removed from the dictionary.

The activeItemChanged signal indicates which item is currently highlighted by the input method. The view should respond to this signal by highlighting the corresponding item in the list.

The user selection is handled by the selectItem() method. The view should be invoke this method when the user selects an item from the list.

Signal Documentation

void activeItemChanged(index)

This signal is emitted when the active item in the list changes. The UI should react to this signal by highlighting the item at index in the list.


void itemSelected(index)

This signal is emitted when an item at index is selected by the user.


Method Documentation

void removeItem(index)

This method should be called when the user removes an item at position index from the list. The removal is forwarded to the input method for further processing.


void selectItem(index)

This method should be called when the user selects an item at position index from the list. The selection is forwarded to the input method for further processing.


© 2019 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.