QScrollPrepareEvent

The QScrollPrepareEvent class is sent in preparation of scrolling. More

Inheritance diagram of PySide6.QtGui.QScrollPrepareEvent

Synopsis

Functions

Detailed Description

The scroll prepare event is sent before scrolling (usually by QScroller ) is started. The object receiving this event should set viewportSize , maxContentPos and contentPos . It also should accept this event to indicate that scrolling should be started.

It is not guaranteed that a QScrollEvent will be sent after an accepted QScrollPrepareEvent , e.g. in a case where the maximum content position is (0, 0).

See also

QScrollEvent QScroller

class PySide6.QtGui.QScrollPrepareEvent(startPos)

PySide6.QtGui.QScrollPrepareEvent(arg__1)

Parameters

Creates new QScrollPrepareEvent The startPos is the position of a touch or mouse event that started the scrolling.

Creates new QScrollPrepareEvent The startPos is the position of a touch or mouse event that started the scrolling.

PySide6.QtGui.QScrollPrepareEvent.contentPos()
Return type

PySide6.QtCore.QPointF

Returns the current position of the content as set by setContentPos .

See also

setContentPos()

PySide6.QtGui.QScrollPrepareEvent.contentPosRange()
Return type

PySide6.QtCore.QRectF

Returns the range of coordinates for the content as set by setContentPosRange() .

PySide6.QtGui.QScrollPrepareEvent.setContentPos(pos)
Parameters

posPySide6.QtCore.QPointF

Sets the current content position to pos.

See also

contentPos()

PySide6.QtGui.QScrollPrepareEvent.setContentPosRange(rect)
Parameters

rectPySide6.QtCore.QRectF

Sets the range of content coordinates to rect.

PySide6.QtGui.QScrollPrepareEvent.setViewportSize(size)
Parameters

sizePySide6.QtCore.QSizeF

Sets the size of the area that is to be scrolled to size.

See also

viewportSize()

PySide6.QtGui.QScrollPrepareEvent.startPos()
Return type

PySide6.QtCore.QPointF

Returns the position of the touch or mouse event that started the scrolling.

PySide6.QtGui.QScrollPrepareEvent.viewportSize()
Return type

PySide6.QtCore.QSizeF

Returns size of the area that is to be scrolled as set by setViewportSize