IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QVirtualKeyboardInputEngine Class

The InputEngine class provides an input engine that supports C++ and QML integration.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QVirtualKeyboardInputEngine Class

  • Header: QVirtualKeyboardInputEngine

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS VirtualKeyboard)

    target_link_libraries(mytarget PRIVATE Qt6::VirtualKeyboard)

  • qmake: QT += virtualkeyboard

  • Inherited By:

  • Instantiated By: qml-qtquick-virtualkeyboard-inputengine.xml

  • Inherits: QObject

  • Group: QVirtualKeyboardInputEngine is part of qtvirtualkeyboard-cpp-for-devs

Detailed Description

The input engine is responsible for routing input events to input methods. The actual input logic is implemented by the input methods.

The input engine also includes the default input method, which takes care of default processing if the active input method does not handle the event.

Member Type Documentation

 

enum QVirtualKeyboardInputEngine::InputMode

This enum specifies the input mode for the input method.

Constant

Value

Description

QVirtualKeyboardInputEngine::InputMode::Latin

0

The default input mode for latin text.

QVirtualKeyboardInputEngine::InputMode::Numeric

1

Only numeric input is allowed.

QVirtualKeyboardInputEngine::InputMode::Dialable

2

Only dialable input is allowed.

QVirtualKeyboardInputEngine::InputMode::Pinyin

3

Pinyin input mode for Chinese.

QVirtualKeyboardInputEngine::InputMode::Cangjie

4

Cangjie input mode for Chinese.

QVirtualKeyboardInputEngine::InputMode::Zhuyin

5

Zhuyin input mode for Chinese.

QVirtualKeyboardInputEngine::InputMode::Hangul

6

Hangul input mode for Korean.

QVirtualKeyboardInputEngine::InputMode::Hiragana

7

Hiragana input mode for Japanese.

QVirtualKeyboardInputEngine::InputMode::Katakana

8

Katakana input mode for Japanese.

QVirtualKeyboardInputEngine::InputMode::FullwidthLatin

9

Fullwidth latin input mode for East Asian languages.

QVirtualKeyboardInputEngine::InputMode::Greek

10

Greek input mode.

QVirtualKeyboardInputEngine::InputMode::Cyrillic

11

Cyrillic input mode.

QVirtualKeyboardInputEngine::InputMode::Arabic

12

Arabic input mode.

QVirtualKeyboardInputEngine::InputMode::Hebrew

13

Hebrew input mode.

QVirtualKeyboardInputEngine::InputMode::ChineseHandwriting

14

Chinese handwriting input mode.

QVirtualKeyboardInputEngine::InputMode::JapaneseHandwriting

15

Japanese handwriting input mode.

QVirtualKeyboardInputEngine::InputMode::KoreanHandwriting

16

Korean handwriting input mode.

QVirtualKeyboardInputEngine::InputMode::Thai

17

Thai input mode.

QVirtualKeyboardInputEngine::InputMode::Stroke

18

Stroke input mode for Chinese.

QVirtualKeyboardInputEngine::InputMode::Romaji

19

Romaji input mode for Japanese.

enum QVirtualKeyboardInputEngine::PatternRecognitionMode

This enum specifies the input mode for the input method.

Constant

Value

Description

QVirtualKeyboardInputEngine::PatternRecognitionMode::None

0

Pattern recognition is not available.

QVirtualKeyboardInputEngine::PatternRecognitionMode::PatternRecognitionDisabled

None

obsolete Use PatternRecognitionMode::None

QVirtualKeyboardInputEngine::PatternRecognitionMode::Handwriting

1

Pattern recognition mode for handwriting recognition.

QVirtualKeyboardInputEngine::PatternRecognitionMode::HandwritingRecoginition

Handwriting

obsolete Use PatternRecognitionMode::Handwriting

enum QVirtualKeyboardInputEngine::ReselectFlag

flags QVirtualKeyboardInputEngine::ReselectFlags

This enum specifies the rules for word reselection.

Constant

Value

Description

QVirtualKeyboardInputEngine::ReselectFlag::WordBeforeCursor

0x1

Activate the word before the cursor. When this flag is used exclusively, the word must end exactly at the cursor.

QVirtualKeyboardInputEngine::ReselectFlag::WordAfterCursor

0x2

Activate the word after the cursor. When this flag is used exclusively, the word must start exactly at the cursor.

QVirtualKeyboardInputEngine::ReselectFlag::WordAtCursor

WordBeforeCursor | WordAfterCursor

Activate the word at the cursor. This flag is a combination of the above flags with the exception that the word cannot start or stop at the cursor.

The ReselectFlags type is a typedef for QFlags<ReselectFlag>. It stores an OR combination of ReselectFlag values.

enum QVirtualKeyboardInputEngine::TextCase

This enum specifies the text case for the input method.

Constant

Value

Description

QVirtualKeyboardInputEngine::TextCase::Lower

0

Lower case text.

QVirtualKeyboardInputEngine::TextCase::Upper

1

Upper case text.

Property Documentation

 

[read-only] activeKey : const Qt::Key

This property holds the active key.

Currently pressed key.

Access functions:

Notifier signal:

inputMethod : QVirtualKeyboardAbstractInputMethod*

This property holds the active input method.

Use this property to set active the input method, or to monitor when the active input method changes.

Access functions:

Notifier signal:

inputMode : InputMode

This property holds the current input mode.

Use this property to get or set the current input mode. The InputEngine::inputModes provides list of valid input modes for current input method and locale.

Access functions:

  • inputMode() const

  • void setInputMode( inputMode)

Notifier signal:

[read-only] inputModes : const QList<int>

This property holds the available input modes for active input method.

The list of available input modes is dependent on the input method and locale. This property is updated when either of the dependencies changes.

Access functions:

Notifier signal:

[read-only, since QtQuick.VirtualKeyboard 2.0] patternRecognitionModes : const QList<int>

This property holds the list of available pattern recognition modes.

The list of available pattern recognition modes.

This property was introduced in QtQuick.VirtualKeyboard 2.0.

Access functions:

Notifier signal:

[read-only] previousKey : const Qt::Key

This property holds the previous active key.

Previously pressed key.

Access functions:

Notifier signal:

[read-only] wordCandidateListModel : QVirtualKeyboardSelectionListModel* const

list model for the word candidate list.

Use this property to access the list model for the word candidate list.

Access functions:

  • *wordCandidateListModel() const

Notifier signal:

  • void wordCandidateListModelChanged()

[read-only] wordCandidateListVisibleHint : const bool

visible hint for the word candidate list.

Use this property to check if the word candidate list should be visible in the UI.

Access functions:

  • bool wordCandidateListVisibleHint() const

Notifier signal:

  • void wordCandidateListVisibleHintChanged()

Member Function Documentation

 

Qt::Key QVirtualKeyboardInputEngine::activeKey() const

Returns the currently active key, or Qt::Key_unknown if no key is active.

Getter function for property activeKey.

void QVirtualKeyboardInputEngine::activeKeyChanged(Qt::Key key)

Indicates that the active key has changed.

Notifier signal for property activeKey.

QVirtualKeyboardInputContext *QVirtualKeyboardInputEngine::inputContext() const

Returns the InputContext instance associated with the input engine.

QVirtualKeyboardAbstractInputMethod *QVirtualKeyboardInputEngine::inputMethod() const

Returns the active input method.

Getter function for property inputMethod.

See Also

See also setInputMethod()

void QVirtualKeyboardInputEngine::inputMethodChanged()

Indicates that the input method has changed.

Notifier signal for property inputMethod.

void QVirtualKeyboardInputEngine::inputMethodReset()

Emitted when the input method needs to be reset.

This signal is automatically connected to QVirtualKeyboardAbstractInputMethod::reset() and InputMethod::reset() when the input method is activated.

void QVirtualKeyboardInputEngine::inputMethodUpdate()

This signal is automatically connected to QVirtualKeyboardAbstractInputMethod::update() and InputMethod::update() when the input method is activated.

void QVirtualKeyboardInputEngine::inputModeChanged()

Indicates that the input mode has changed.

Notifier signal for property inputMode.

QList<int> QVirtualKeyboardInputEngine::inputModes() const

Returns the list of available input modes.

Getter function for property inputModes.

void QVirtualKeyboardInputEngine::inputModesChanged()

Indicates that the available input modes have changed.

Notifier signal for property inputModes.

QList<int> QVirtualKeyboardInputEngine::patternRecognitionModes() const

Returns list of supported pattern recognition modes.

Getter function for property patternRecognitionModes.

[since QtQuick.VirtualKeyboard 2.0] void QVirtualKeyboardInputEngine::patternRecognitionModesChanged()

Indicates that the available pattern recognition modes have changed.

Notifier signal for property patternRecognitionModes.

This function was introduced in QtQuick.VirtualKeyboard 2.0.

Qt::Key QVirtualKeyboardInputEngine::previousKey() const

Returns the previously active key, or Qt::Key_unknown if no key has been active.

Getter function for property previousKey.

void QVirtualKeyboardInputEngine::previousKeyChanged(Qt::Key key)

Indicates that the previous key has changed.

Notifier signal for property previousKey.

[since QtQuick.VirtualKeyboard 2.0] bool QVirtualKeyboardInputEngine::reselect(int cursorPosition, const QVirtualKeyboardInputEngine::ReselectFlags &reselectFlags)

This function attempts to reselect a word located at the cursorPosition. The reselectFlags define the rules for how the word should be selected in relation to the cursor position.

The function returns true if the word was successfully reselected.

This function was introduced in QtQuick.VirtualKeyboard 2.0.

void QVirtualKeyboardInputEngine::setInputMethod(QVirtualKeyboardAbstractInputMethod *inputMethod)

Sets inputMethod as the active input method.

Setter function for property inputMethod.

See Also

See also inputMethod()

[since QtQuick.VirtualKeyboard 2.0] QVirtualKeyboardTrace *QVirtualKeyboardInputEngine::traceBegin(int traceId, QVirtualKeyboardInputEngine::PatternRecognitionMode patternRecognitionMode, const QVariantMap &traceCaptureDeviceInfo, const QVariantMap &traceScreenInfo)

Starts a trace interaction with the input engine.

The trace is uniquely identified by the traceId. The input engine will assign the id to the QVirtualKeyboardTrace object if the input method accepts the event.

The patternRecognitionMode specifies the recognition mode used for the pattern.

If the current input method accepts the event it returns a QVirtualKeyboardTrace object associated with this interaction. If the input method discards the event, it returns a NULL value.

The traceCaptureDeviceInfo provides information about the source device and the traceScreenInfo provides information about the screen context.

By definition, the QVirtualKeyboardTrace object remains valid until the traceEnd() method is called.

The trace interaction is ended by calling the traceEnd() method.

This function was introduced in QtQuick.VirtualKeyboard 2.0.

bool QVirtualKeyboardInputEngine::traceEnd(QVirtualKeyboardTrace *trace)

Ends the trace interaction with the input engine.

The trace object may be discarded at any point after calling this function.

The function returns true if the trace interaction was accepted (i.e. the touch events should not be used for anything else).

void QVirtualKeyboardInputEngine::virtualKeyCancel()

Reverts the active key state without emitting the key event. This method is useful when the user discards the current key and the key state needs to be restored.

bool QVirtualKeyboardInputEngine::virtualKeyClick(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers)

Emits a key click event for the given key, text and modifiers. Returns true if the key event was accepted by the input engine.

void QVirtualKeyboardInputEngine::virtualKeyClicked(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers, bool isAutoRepeat)

Indicates that the virtual key was clicked with the given text and modifiers. The isAutoRepeat indicates if the event is automatically repeated while the key is being pressed. This signal is emitted after the input method has processed the key event.

bool QVirtualKeyboardInputEngine::virtualKeyPress(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers, bool repeat)

Called by the keyboard layer to indicate that key was pressed, with the given text and modifiers.

The key is set as an active key (down key). The actual key event is triggered when the key is released by the virtualKeyRelease() method. The key press event can be discarded by calling virtualKeyCancel().

The key press also initiates the key repeat timer if repeat is true.

Returns true if the key was accepted by this input engine.

See Also

bool QVirtualKeyboardInputEngine::virtualKeyRelease(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers)

Releases the key at key. The method emits a key event for the input method if the event has not been generated by a repeating timer. The text and modifiers are passed to the input method.

Returns true if the key was accepted by the input engine.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+