QLinearGradient露
- PyQt5.QtGui.QLinearGradient
Inherits from QGradient.
Description露
The QLinearGradient class is used in combination with QBrush to specify a linear gradient brush.
Linear gradients interpolate colors between start and end points. Outside these points the gradient is either padded, reflected or repeated depending on the currently set Spread method:
PadSpread (default) |
The colors in a gradient is defined using stop points of the QGradientStop type, i.e. a position and a color. Use the setColorAt() or the setStops() function to define the stop points. It is the gradient鈥檚 complete set of stop points that describes how the gradient area should be filled. If no stop points have been specified, a gradient of black at 0 to white at 1 is used.
In addition to the functions inherited from QGradient, the QLinearGradient class provides the finalStop() function which returns the final stop point of the gradient, and the start() function returning the start point of the gradient.
See also
Methods露
- __init__()
Constructs a default linear gradient with interpolation area between (0, 0) and (1, 1).
See also
- __init__(QLinearGradient)
TODO
- __init__(Union[QPointF, QPoint], Union[QPointF, QPoint])
Constructs a linear gradient with interpolation area between the given start point and finalStop.
Note: The expected parameter values are in pixels.
See also
- __init__(float, float, float, float)
TODO
- finalStop() → QPointF
Returns the final stop point of this linear gradient in logical coordinates.
See also
- setFinalStop(Union[QPointF, QPoint])
Sets the final stop point of this linear gradient in logical coordinates to stop.
See also
- setFinalStop(float, float)
TODO
- setStart(Union[QPointF, QPoint])
Sets the start point of this linear gradient in logical coordinates to start.
See also
- setStart(float, float)
TODO
- start() → QPointF
Returns the start point of this linear gradient in logical coordinates.
See also