This enum contains the different scroll metric types. When not indicated otherwise the setScrollMetric() method expects a QVariant of type double. Refer to the QScroller documentation for further details of the concepts behind the different values.
Constant | Value | Description |
QScrollerProperties::MousePressEventDelay | 0 | This is the time a mouse press event is delayed when starting a flick gesture in [s]. If the gesture is triggered within that time, no mouse press or release is sent to the scrolled object. If it triggers after that delay, the delayed mouse press plus a faked release event at global position QPoint(-QWIDGETSIZE_MAX, -QWIDGETSIZE_MAX) is sent. If the gesture is canceled then both the delayed mouse press plus the real release event are delivered. |
QScrollerProperties::DragStartDistance | 1 | The minimum distance the touch or mouse point needs to be moved before the flick gesture is triggered in m. |
QScrollerProperties::DragVelocitySmoothingFactor | 2 | A value that describes to which extent new drag velocities are included in the final scrolling velocity. This value should be in the range between 0 and 1. The lower the value, the more smoothing is applied to the dragging velocity. |
QScrollerProperties::AxisLockThreshold | 3 | Restricts the movement to one axis if the movement is inside an angle around the axis. The threshold must be in the range 0 to 1. |
QScrollerProperties::ScrollingCurve | 4 | The QEasingCurve used when decelerating the scrolling velocity after an user initiated flick. Please note that this is the easing curve for the positions, not the velocity: the default is QEasingCurve::OutQuad, which results in a linear decrease in velocity (1st derivative) and a constant deceleration (2nd derivative). |
QScrollerProperties::DecelerationFactor | 5 | This factor influences how long it takes the scroller to decelerate to 0 velocity. The actual value depends on the chosen ScrollingCurve. For most types the value should be in the range from 0.1 to 2.0 |
QScrollerProperties::MinimumVelocity | 6 | The minimum velocity that is needed after ending the touch or releasing the mouse to start scrolling in m/s. |
QScrollerProperties::MaximumVelocity | 7 | This is the maximum velocity that can be reached in m/s. |
QScrollerProperties::MaximumClickThroughVelocity | 8 | This is the maximum allowed scroll speed for a click-through in m/s. This means that a click on a currently (slowly) scrolling object will not only stop the scrolling but the click event will also be delivered to the UI control. This is useful when using exponential-type scrolling curves. |
QScrollerProperties::AcceleratingFlickMaximumTime | 9 | This is the maximum time in seconds that a flick gesture can take to be recognized as an accelerating flick. If set to zero no such gesture is detected. An "accelerating flick" is a flick gesture executed on an already scrolling object. In such cases the scrolling speed is multiplied by AcceleratingFlickSpeedupFactor in order to accelerate it. |
QScrollerProperties::AcceleratingFlickSpeedupFactor | 10 | The current speed is multiplied by this number if an accelerating flick is detected. Should be >= 1. |
QScrollerProperties::SnapPositionRatio | 11 | This is the distance that the user must drag the area between two snap points in order to snap it to the next position. 0.33 means that the scroll must only reach one third of the distance between two snap points to snap to the next one. The ratio must be between 0 and 1. |
QScrollerProperties::SnapTime | 12 | This is the time factor for the scrolling curve. A lower value means that the scrolling will take longer. The scrolling distance is independent of this value. |
QScrollerProperties::OvershootDragResistanceFactor | 13 | This value is the factor between the mouse dragging and the actual scroll area movement (during overshoot). The factor must be between 0 and 1. |
QScrollerProperties::OvershootDragDistanceFactor | 14 | This is the maximum distance for overshoot movements while dragging. The actual overshoot distance is calculated by multiplying this value with the viewport size of the scrolled object. The factor must be between 0 and 1. |
QScrollerProperties::OvershootScrollDistanceFactor | 15 | This is the maximum distance for overshoot movements while scrolling. The actual overshoot distance is calculated by multiplying this value with the viewport size of the scrolled object. The factor must be between 0 and 1. |
QScrollerProperties::OvershootScrollTime | 16 | This is the time in seconds that is used to play the complete overshoot animation. |
QScrollerProperties::HorizontalOvershootPolicy | 17 | This is the horizontal overshooting policy (refer to OvershootPolicy). |
QScrollerProperties::VerticalOvershootPolicy | 18 | This is the horizontal overshooting policy (refer to OvershootPolicy). |
QScrollerProperties::FrameRate | 19 | This is the frame rate which should be used while dragging or scrolling. QScroller uses a QAbstractAnimation timer internally to sync all scrolling operations to other animations that might be active at the same time. If the standard value of 60 frames per second is too fast, it can be lowered with this setting, while still being in-sync with QAbstractAnimation. Oonly the values of the FrameRates enum are allowed. |
QScrollerProperties::ScrollMetricCount | 20 | This is always the last entry. |