QKeySequenceEdit

The QKeySequenceEdit widget allows to input a QKeySequence . More

Inheritance diagram of PySide2.QtWidgets.QKeySequenceEdit

Synopsis

Functions

Slots

Signals

Detailed Description

This widget lets the user choose a QKeySequence , which is usually used as a shortcut. The recording is initiated when the widget receives the focus and ends one second after the user releases the last key.

See also

keySequence

class QKeySequenceEdit([parent=None])

QKeySequenceEdit(keySequence[, parent=None])

param parent

QWidget

param keySequence

QKeySequence

Constructs a QKeySequenceEdit widget with the given parent .

Constructs a QKeySequenceEdit widget with the given keySequence and parent .

PySide2.QtWidgets.QKeySequenceEdit.clear()

Clears the current key sequence.

PySide2.QtWidgets.QKeySequenceEdit.editingFinished()
PySide2.QtWidgets.QKeySequenceEdit.keySequence()
Return type

QKeySequence

See also

setKeySequence()

PySide2.QtWidgets.QKeySequenceEdit.keySequenceChanged(keySequence)
Parameters

keySequenceQKeySequence

PySide2.QtWidgets.QKeySequenceEdit.setKeySequence(keySequence)
Parameters

keySequenceQKeySequence

See also

keySequence()