QShortcutEvent Class

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

Header: #include <QShortcutEvent>
qmake: QT += gui
Inherits: QEvent

Public Functions

QShortcutEvent(const QKeySequence &key, int id, bool ambiguous = false)
virtual ~QShortcutEvent()
  • 2 public functions inherited from QEvent

Additional Inherited Members

  • 1 property inherited from QEvent
  • 1 static public member inherited from QEvent

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.

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.

[virtual] QShortcutEvent::~QShortcutEvent()

Destroys the event object.