Defines a restriction on the range of values that can be set on a numeric property. 更多...
import 语句: | import Qt.labs.animation |
A BoundaryRule defines the range of values that a particular property is allowed to have. When an out-of-range value would otherwise be set, it applies "resistance" via an easing curve.
For example, the following BoundaryRule prevents DragHandler from dragging the Rectangle too far:
import QtQuick 2.14 import Qt.labs.animation 1.0 Rectangle { id: root width: 170; height: 120 color: "green" DragHandler { id: dragHandler yAxis.minimum: -1000 xAxis.minimum: -1000 onActiveChanged: if (!active) xbr.returnToBounds(); } BoundaryRule on x { id: xbr minimum: -50 maximum: 100 minimumOvershoot: 40 maximumOvershoot: 40 } }
Note that a property cannot have more than one assigned BoundaryRule.
另请参阅 Qt Quick 中的动画和过渡 , Behavior example , Qt QML ,和 Pointer Handlers Example .
currentOvershoot : qreal |
This property holds the amount by which the most recently set value of the intercepted property exceeds maximum or is less than minimum .
It is positive if the property value exceeds maximum , negative if the property value is less than minimum , or 0 if the property value is within both boundaries.
easing : enumeration |
This property holds the easing curve to be applied in overshoot mode (whenever the minimum or maximum constraint is violated, while the value is still within the respective overshoot range).
The default easing curve is QEasingCurve::OutQuad .
enabled : bool |
This property holds whether the rule will be enforced when the tracked property changes value.
By default a BoundaryRule is enabled.
maximum : qreal |
This property holds the largest unconstrained value that the property is allowed to have. If the property is set to a larger value, it will be constrained by easing and maximumOvershoot .
默认为
1
.
maximumOvershoot : qreal |
This property holds the amount that the property is allowed to be more than
maximum
. Whenever the value is greater than
maximum
and less than
maximum + maximumOvershoot
, it is constrained by the
easing
curve. When the value attempts to exceed
maximum + maximumOvershoot
there is a hard stop.
默认为 0。
minimum : qreal |
This property holds the smallest unconstrained value that the property is allowed to have. If the property is set to a smaller value, it will be constrained by easing and minimumOvershoot .
默认为
0
.
minimumOvershoot : qreal |
This property holds the amount that the property is allowed to be less than
minimum
. Whenever the value is less than
minimum
and greater than
minimum - minimumOvershoot
, it is constrained by the
easing
curve. When the value attempts to go under
minimum - minimumOvershoots
there is a hard stop.
默认为
0
.
overshootFilter : enumeration |
This property specifies the aggregation function that will be applied to the intercepted property value.
If this is set to
BoundaryRule.None
(the default), the intercepted property will hold a value whose overshoot is limited to
currentOvershoot
. If this is set to
BoundaryRule.Peak
, the intercepted property will hold a value whose overshoot is limited to
peakOvershoot
.
overshootScale : qreal |
This property holds the amount by which the easing is scaled during the overshoot condition. For example if an Item is restricted from moving more than 100 pixels beyond some limit, and the user (by means of some Input Handler) is trying to drag it 100 pixels past the limit, if overshootScale is set to 1, the user will succeed: the only effect of the easing curve is to change the rate at which the item moves from overshoot 0 to overshoot 100. But if it is set to 0.5, the BoundaryRule provides resistance such that when the user tries to move 100 pixels, the Item will only move 50 pixels; and the easing curve modulates the rate of movement such that it may move in sync with the user's attempted movement at the beginning, and then slows down, depending on the shape of the easing curve.
The default is 0.5.
peakOvershoot : qreal |
This property holds the most-positive or most-negative value of currentOvershoot that has been seen, until returnToBounds () 被调用。
This can be useful when the intercepted property value is known to fluctuate, and you want to find and react to the maximum amount of overshoot rather than to the fluctuations.
另请参阅 overshootFilter .
returnDuration : int |
This property holds the amount of time in milliseconds that returnToBounds () will take to return the target property to the nearest bound. If it is set to 0, returnToBounds () will set the property immediately rather than creating an animation job.
The default is 100 ms.
returnedToBounds () |
此信号被发射当
currentOvershoot
returns to
0
again, after the
maximum
or
minimum
constraint has been violated. If the return is animated, the signal is emitted when the animation completes.
注意:
相应处理程序是
onReturnedToBounds
.
另请参阅 returnDuration and returnToBounds ().
bool returnToBounds () |
Returns the intercepted property to a value between minimum and maximum , such that currentOvershoot and peakOvershoot are both zero. This will be animated if returnDuration is greater than zero.
Returns true if the value needed to be adjusted, or false if it was already within bounds.
另请参阅 returnedToBounds .