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

Shortcut QML Type

Provides keyboard shortcuts.

This type was introduced in Qt 5.5.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

Shortcut QML Type

  • Import Statement: import QtQuick

  • Since:: Qt 5.5

  • Group: Shortcut is part of qtquick-input

Detailed Description

The Shortcut type provides a way of handling keyboard shortcuts. The shortcut can be set to one of the standard keyboard shortcuts, or it can be described with a string containing a sequence of up to four key presses that are needed to activate the shortcut.

 
Sélectionnez
Item {
    id: view

    property int currentIndex

    Shortcut {
        sequence: StandardKey.NextChild
        onActivated: view.currentIndex++
    }
}

It is also possible to set multiple shortcut sequences, so that the shortcut can be activated via several different sequences of key presses.

See Also

See also Keys, shortcutOverride()

Property Documentation

 

autoRepeat : bool

This property holds whether the shortcut can auto repeat.

The default value is true.

context : enumeration

This property holds the shortcut context.

Supported values are:

  • Qt.WindowShortcut (default) - The shortcut is active when its parent item is in an active top-level window.

  • Qt.ApplicationShortcut - The shortcut is active when one of the application's windows are active.

 
Sélectionnez
Shortcut {
    sequence: StandardKey.Quit
    context: Qt.ApplicationShortcut
    onActivated: Qt.quit()
}

enabled : bool

This property holds whether the shortcut is enabled.

The default value is true.

[read-only, since 5.6] nativeText : string

This property provides the shortcut's key sequence as a platform specific string. This means that it will be shown translated, and on macOS it will resemble a key sequence from the menu bar. It is best to display this text to the user (for example, on a tooltip).

This property was introduced in Qt 5.6.

See Also

[read-only, since 5.6] portableText : string

This property provides the shortcut's key sequence as a string in a "portable" format, suitable for reading and writing to a file. In many cases, it will look similar to the native text on Windows and X11.

This property was introduced in Qt 5.6.

See Also

See also sequence, nativeText

sequence : keysequence

This property holds the shortcut's key sequence. The key sequence can be set to one of the standard keyboard shortcuts, or it can be described with a string containing a sequence of up to four key presses that are needed to activate the shortcut.

The default value is an empty key sequence.

 
Sélectionnez
Shortcut {
    sequence: "Ctrl+E,Ctrl+W"
    onActivated: edit.wrapMode = TextEdit.Wrap
}
See Also

See also sequences

[since 5.9] sequences : list<keysequence>

This property holds multiple key sequences for the shortcut. The key sequences can be set to one of the standard keyboard shortcuts, or they can be described with strings containing sequences of up to four key presses that are needed to activate the shortcut.

 
Sélectionnez
Shortcut {
    sequences: [StandardKey.Cut, "Ctrl+X", "Shift+Del"]
    onActivated: edit.cut()
}

This property was introduced in Qt 5.9.

Signal Documentation

 

activated()

This signal is emitted when the shortcut is activated.

The corresponding handler is onActivated.

activatedAmbiguously()

This signal is emitted when the shortcut is activated ambigously, meaning that it matches the start of more than one shortcut.

The corresponding handler is onActivatedAmbiguously.

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