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

removeSequence().


buttonInterval() → int

Returns the maximum time in between consecutive QAbstractActionInput’s in the input sequence. The time is in milliseconds


removeSequence(QAbstractActionInput)

Remove the QAbstractActionInput input from this QInputSequence’s sequence vector.

See also

addSequence().


sequences() → List[QAbstractActionInput]

Returns the QInputSequence’s sequence vector.


setButtonInterval(int)

See also

buttonInterval().


setTimeout(int)

See also

timeout().


timeout() → int

Returns the time in which all QAbstractActionInput’s in the input sequence must triggered within. The time is in milliseconds

See also

setTimeout().

Signals¶

buttonIntervalChanged(int)

TODO


timeoutChanged(int)

TODO