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

Synopsis¶
Functions¶
def
isAmbiguous()def
key()def
shortcutId()
Detailed Description¶
Normally you do not need to use this class directly;
QShortcutprovides 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:
Constructs a shortcut event for the given
keypress, associated with theQShortcutIDid.ambiguousspecifies whether there is more than oneQShortcutfor the same key sequence.
- PySide2.QtGui.QShortcutEvent.isAmbiguous()¶
- Return type:
bool
Returns
trueif the key sequence that triggered the event is ambiguous.See also
activatedAmbiguously()
- PySide2.QtGui.QShortcutEvent.key()¶
- Return type:
Returns the key sequence that triggered the event.
- PySide2.QtGui.QShortcutEvent.shortcutId()¶
- Return type:
int
Returns the ID of the
QShortcutobject for which this event was generated.See also
id()
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.