QTouchEventSequence

PyQt5.QtTest.QTest.QTouchEventSequence

Description

The QTouchEventSequence class is used to simulate a sequence of touch events.

To simulate a sequence of touch events on a specific device for a window or widget, call touchEvent() to create a QTouchEventSequence instance. Add touch events to the sequence by calling press(), move(), release() and stationary(), and let the instance run out of scope to commit the sequence to the event system.

Example:

# QTouchDevice *dev = QTest::createTouchDevice();
# QWidget widget;

# QTest::touchEvent(&widget, dev)
#     .press(0, QPoint(10, 10));
# QTest::touchEvent(&widget, dev)
#     .stationary(0)
#     .press(1, QPoint(40, 10));
# QTest::touchEvent(&widget, dev)
#     .move(0, QPoint(12, 12))
#     .move(1, QPoint(45, 5));
# QTest::touchEvent(&widget, dev)
#     .release(0, QPoint(12, 12))
#     .release(1, QPoint(45, 5));

Methods

__init__(QTouchEventSequence)

TODO


commit(processEvents: bool = True)

TODO


move(int, QPoint, window: QWindow = None) → QTouchEventSequence

TODO


move(int, QPoint, QWidget) → QTouchEventSequence

TODO


press(int, QPoint, window: QWindow = None) → QTouchEventSequence

TODO


press(int, QPoint, QWidget) → QTouchEventSequence

TODO


release(int, QPoint, window: QWindow = None) → QTouchEventSequence

TODO


release(int, QPoint, QWidget) → QTouchEventSequence

TODO


stationary(int) → QTouchEventSequence

TODO