QShortcutEvent¶
The QShortcutEvent
class 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; QShortcut
provides a higher-level interface to handle shortcut keys.
See also
- class PySide6.QtGui.QShortcutEvent(key, id[, ambiguous=false])¶
PySide6.QtGui.QShortcutEvent(arg__1)
- Parameters
ambiguous – bool
id – int
arg__1 –
PySide6.QtGui.QShortcutEvent
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.
- PySide6.QtGui.QShortcutEvent.isAmbiguous()¶
- Return type
bool
Returns true
if the key sequence that triggered the event is ambiguous.
See also
- PySide6.QtGui.QShortcutEvent.key()¶
- Return type
Returns the key sequence that triggered the event.
- PySide6.QtGui.QShortcutEvent.shortcutId()¶
- Return type
int
Returns the ID of the QShortcut
object for which this event was generated.
See also
© 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.