UID:3143
UID:2
shortcutContext : Qt::ShortcutContextThis property holds the context for the action's shortcut.Valid values for this property can be found in Qt::ShortcutContext. The default value is Qt::WindowShortcut.Access functions:Qt::ShortcutContext shortcutContext () constvoid setShortcutContext ( Qt::ShortcutContext context )enum Qt::ShortcutContextFor a QEvent::Shortcut event to occur, the shortcut's key sequence must be entered by the user in a context where the shortcut is active. The possible contexts are these:ConstantValueDescriptionQt::WidgetShortcut0The shortcut is only triggered when its parent widget has focus.Qt::WindowShortcut1The shortcut is triggered when its parent widget is a logical subwidget of the active top-level window.Qt::ApplicationShortcut2The shortcut is triggered when the application is active.
UID:66510