Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquickshortcut.cpp File Reference

(01cd43d30e3ca2c4dd94a4a4711604adb9417517)

#include "qquickshortcut_p.h"
#include <QtQuick/qquickitem.h>
#include <QtQuick/qquickwindow.h>
#include <QtQuick/qquickrendercontrol.h>
#include <QtQuick/private/qtquickglobal_p.h>
#include <QtGui/private/qguiapplication_p.h>
#include <QtQml/qqmlinfo.h>
#include "moc_qquickshortcut_p.cpp"
Include dependency graph for qquickshortcut.cpp:

Go to the source code of this file.

Typedefs

typedef bool(* ContextMatcher) (QObject *, Qt::ShortcutContext)

Functions

static QT_BEGIN_NAMESPACE bool qQuickShortcutContextMatcher (QObject *obj, Qt::ShortcutContext context)
 \qmltype Shortcut \nativetype QQuickShortcut \inqmlmodule QtQuick
Q_QUICK_EXPORT ContextMatcher qt_quick_shortcut_context_matcher ()
Q_QUICK_EXPORT void qt_quick_set_shortcut_context_matcher (ContextMatcher matcher)
static QKeySequence valueToKeySequence (const QVariant &value, const QQuickShortcut *const shortcut)
static QList< QKeySequencevalueToKeySequences (const QVariant &value)

Typedef Documentation

◆ ContextMatcher

typedef bool(* ContextMatcher)(QObject *, Qt::ShortcutContext)

Definition at line 79 of file qquickshortcut.cpp.

Function Documentation

◆ qQuickShortcutContextMatcher()

QT_BEGIN_NAMESPACE bool qQuickShortcutContextMatcher ( QObject * obj,
Qt::ShortcutContext context )
static

\qmltype Shortcut \nativetype QQuickShortcut \inqmlmodule QtQuick

Since
5.5

Provides keyboard shortcuts.

The Shortcut type lets you handle keyboard shortcuts. The shortcut can be set to one of the \l{QKeySequence::StandardKey}{standard keyboard shortcuts}, or it can be described with a string containing a sequence of up to four key presses that are needed to \l{Shortcut::activated}{activate} the shortcut.

\qml Item { id: view

property int currentIndex

Shortcut { sequences: [StandardKey.NextChild] onActivated: view.currentIndex++ } } \endqml

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

See also
Keys, {Keys::}{shortcutOverride()}

\qmlsignal QtQuick::Shortcut::activated()

This signal is emitted when the shortcut is activated.

\qmlsignal QtQuick::Shortcut::activatedAmbiguously()

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

Definition at line 60 of file qquickshortcut.cpp.

◆ qt_quick_set_shortcut_context_matcher()

Q_QUICK_EXPORT void qt_quick_set_shortcut_context_matcher ( ContextMatcher matcher)

Definition at line 88 of file qquickshortcut.cpp.

◆ qt_quick_shortcut_context_matcher()

Q_QUICK_EXPORT ContextMatcher qt_quick_shortcut_context_matcher ( )

Definition at line 83 of file qquickshortcut.cpp.

◆ valueToKeySequence()

QKeySequence valueToKeySequence ( const QVariant & value,
const QQuickShortcut *const shortcut )
static

Definition at line 94 of file qquickshortcut.cpp.

◆ valueToKeySequences()

QList< QKeySequence > valueToKeySequences ( const QVariant & value)
static

Definition at line 112 of file qquickshortcut.cpp.