The QShortcutEvent class provides an event which is generated when the user presses a key combination. More...
Header: | #include <QShortcutEvent> |
CMake: | find_package(Qt6 COMPONENTS Gui REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
Inherits: | QEvent |
QShortcutEvent(const QKeySequence &key, int id, bool ambiguous = false) | |
virtual | ~QShortcutEvent() |
bool | isAmbiguous() const |
const QKeySequence & | key() const |
int | shortcutId() const |
Normally you do not need to use this class directly; QShortcut provides a higher-level interface to handle shortcut keys.
See also QShortcut.
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.
[virtual]
QShortcutEvent::~QShortcutEvent()
Destroys the event object.
Returns true
if the key sequence that triggered the event is ambiguous.
See also QShortcut::activatedAmbiguously().
Returns the key sequence that triggered the event.
Returns the ID of the QShortcut object for which this event was generated.
See also QShortcut::id().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qshortcutevent.html