QInputSequence¶
- PyQt5.Qt3DInput.QInputSequence
Inherits from QAbstractActionInput.
Description¶
QInputSequence represents a set of QAbstractActionInput’s that must be triggerd one after the other.
Methods¶
- __init__(parent: QNode = None)
Constructs a new QInputSequence with parent parent.
- addSequence(QAbstractActionInput)
Append the QAbstractActionInput input to the end of this QInputSequence’s sequence vector.
See also
- buttonInterval() → int
Returns the maximum time in between consecutive QAbstractActionInput’s in the input sequence. The time is in milliseconds
See also
- removeSequence(QAbstractActionInput)
Remove the QAbstractActionInput input from this QInputSequence’s sequence vector.
See also
- sequences() → List[QAbstractActionInput]
Returns the QInputSequence’s sequence vector.
- setButtonInterval(int)
See also
- setTimeout(int)
See also
- timeout() → int
Returns the time in which all QAbstractActionInput’s in the input sequence must triggered within. The time is in milliseconds
See also