QShortcutEvent

The QShortcutEvent class provides an event which is generated when the user presses a key combination. More

Inheritance diagram of PySide2.QtGui.QShortcutEvent

Synopsis

Functions

Detailed Description

Normally you do not need to use this class directly; QShortcut provides a higher-level interface to handle shortcut keys.

See also

QShortcut

class PySide2.QtGui.QShortcutEvent(key, id[, ambiguous=false])
param id:

int

param ambiguous:

bool

param key:

PySide2.QtGui.QKeySequence

Constructs a shortcut event for the given key press, associated with the QShortcut ID id .

ambiguous specifies whether there is more than one QShortcut for the same key sequence.

PySide2.QtGui.QShortcutEvent.isAmbiguous()
Return type:

bool

Returns true if the key sequence that triggered the event is ambiguous.

See also

activatedAmbiguously()

PySide2.QtGui.QShortcutEvent.key()
Return type:

PySide2.QtGui.QKeySequence

Returns the key sequence that triggered the event.

PySide2.QtGui.QShortcutEvent.shortcutId()
Return type:

int

Returns the ID of the QShortcut object for which this event was generated.

See also

id()