QShortcutEvent Class▲
-
Header: QShortcutEvent
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui)
-
qmake: QT += gui
-
Inherits: QEvent
-
Group: QShortcutEvent is part of events
Detailed Description▲
Normally you do not need to use this class directly; QShortcut provides a higher-level interface to handle shortcut keys.
See Also▲
See also QShortcut
Member Function Documentation▲
QShortcutEvent::QShortcutEvent(const QKeySequence &key, int id, bool ambiguous = false)▲
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.
bool QShortcutEvent::isAmbiguous() const▲
Returns true if the key sequence that triggered the event is ambiguous.
See Also▲
See also QShortcut::activatedAmbiguously()
const QKeySequence &QShortcutEvent::key() const▲
Returns the key sequence that triggered the event.
int QShortcutEvent::shortcutId() const▲
Returns the ID of the QShortcut object for which this event was generated.
See Also▲
See also QShortcut::id()