QShortcut

The QShortcut class is used to create keyboard shortcuts. More

Inheritance diagram of PySide2.QtWidgets.QShortcut

Synopsis

Functions

Signals

Detailed Description

The QShortcut class provides a way of connecting keyboard shortcuts to Qt’s signals and slots mechanism, so that objects can be informed when a shortcut is executed. The shortcut can be set up to contain all the key presses necessary to describe a keyboard shortcut, including the states of modifier keys such as Shift, Ctrl, and Alt.

On certain widgets, using ‘&’ in front of a character will automatically create a mnemonic (a shortcut) for that character, e.g. “E&xit” will create the shortcut Alt+X (use ‘&&’ to display an actual ampersand). The widget might consume and perform an action on a given shortcut. On X11 the ampersand will not be shown and the character will be underlined. On Windows, shortcuts are normally not displayed until the user presses the Alt key, but this is a setting the user can change. On Mac, shortcuts are disabled by default. Call qt_set_sequence_auto_mnemonic() to enable them. However, because mnemonic shortcuts do not fit in with Aqua’s guidelines, Qt will not show the shortcut character underlined.

For applications that use menus, it may be more convenient to use the convenience functions provided in the QMenu class to assign keyboard shortcuts to menu items as they are created. Alternatively, shortcuts may be associated with other types of actions in the QAction class.

The simplest way to create a shortcut for a particular widget is to construct the shortcut with a key sequence. For example:

shortcut = QShortcut(QKeySequence(self.tr("Ctrl+O", "File|Open")),
                     parent)

When the user types the key sequence for a given shortcut, the shortcut’s activated() signal is emitted. (In the case of ambiguity, the activatedAmbiguously() signal is emitted.) A shortcut is “listened for” by Qt’s event loop when the shortcut’s parent widget is receiving events.

A shortcut’s key sequence can be set with setKey() and retrieved with key() . A shortcut can be enabled or disabled with setEnabled() , and can have “What’s This?” help text set with setWhatsThis() .

class QShortcut(arg__1, arg__2, arg__3[, arg__4=Qt.WindowShortcut])

QShortcut(parent)

QShortcut(key, parent[, member=None[, ambiguousMember=None[, context=Qt.WindowShortcut]]])

param parent

QWidget

param arg__1

QKeySequence

param context

ShortcutContext

param arg__2

QWidget

param ambiguousMember

str

param arg__3

PyCallable

param arg__4

ShortcutContext

param member

str

param key

QKeySequence

Constructs a QShortcut object for the parent widget. Since no shortcut key sequence is specified, the shortcut will not emit any signals.

See also

setKey()

Constructs a QShortcut object for the parent widget. The shortcut operates on its parent, listening for QShortcutEvent s that match the key sequence. Depending on the ambiguity of the event, the shortcut will call the member function, or the ambiguousMember function, if the key press was in the shortcut’s context .

PySide2.QtWidgets.QShortcut.activated()
PySide2.QtWidgets.QShortcut.activatedAmbiguously()
PySide2.QtWidgets.QShortcut.autoRepeat()
Return type

bool

See also

setAutoRepeat()

PySide2.QtWidgets.QShortcut.context()
Return type

ShortcutContext

See also

setContext()

PySide2.QtWidgets.QShortcut.id()
Return type

int

Returns the shortcut’s ID.

See also

shortcutId()

PySide2.QtWidgets.QShortcut.isEnabled()
Return type

bool

PySide2.QtWidgets.QShortcut.key()
Return type

QKeySequence

See also

setKey()

PySide2.QtWidgets.QShortcut.parentWidget()
Return type

QWidget

Returns the shortcut’s parent widget.

PySide2.QtWidgets.QShortcut.setAutoRepeat(on)
Parameters

onbool

See also

autoRepeat()

PySide2.QtWidgets.QShortcut.setContext(context)
Parameters

contextShortcutContext

See also

context()

PySide2.QtWidgets.QShortcut.setEnabled(enable)
Parameters

enablebool

See also

isEnabled()

PySide2.QtWidgets.QShortcut.setKey(key)
Parameters

keyQKeySequence

See also

key()

PySide2.QtWidgets.QShortcut.setWhatsThis(text)
Parameters

text – unicode

See also

whatsThis()

PySide2.QtWidgets.QShortcut.whatsThis()
Return type

unicode

See also

setWhatsThis()