|
LingmoUI 3.1.0
|
Draws a radial gradient. More...
Properties | |
| bool | cached |
| real | horizontalOffset |
| real | verticalOffset |
| real | horizontalRadius |
| real | verticalRadius |
| real | angle |
| variant | source |
| Gradient | gradient |
Private Attributes | |
| SourceProxy | maskSourceProxy |
| ShaderEffectSource | gradientSource |
| ShaderEffectSource | cacheItem |
| ShaderEffect | shaderItem |
Draws a radial gradient.
\qmltype RadialGradient \inqmlmodule QtGraphicalEffects
A gradient is defined by two or more colors, which are blended seamlessly. The colors start from the middle of the item and end at the borders.
\table \header
|
private |
|
private |
|
private |
|
private |
|
read |
This property defines the rotation of the gradient around its center point. The rotation is only visible when the \l{RadialGradient::horizontalRadius}{horizontalRadius} and \l{RadialGradient::verticalRadius}{verticalRadius} properties are not equal. The angle is given in degrees and the default value is 0.
\table \header
|
read |
This property allows the effect output pixels to be cached in order to improve the rendering performance.
Every time the source or effect properties are changed, the pixels in the cache must be updated. Memory consumption is increased, because an extra buffer of memory is required for storing the effect output.
It is recommended to disable the cache when the source or the effect properties are animated.
By default, the property is set to false.
|
read |
A gradient is defined by two or more colors, which are blended
seamlessly. The colors are specified as a set of GradientStop child
items, each of which defines a position on the gradient from 0.0 to 1.0
and a color. The position of each GradientStop is defined by setting the
position property. The color is defined by setting the color property.
\table
\header
\li Output examples with different gradient values
\li
\li
\row
\li \image RadialGradient_gradient1.png
\li \image RadialGradient_gradient2.png
\li \image RadialGradient_gradient3.png
\row
\li \b {gradient:} \code
Gradient { GradientStop { position: 0.000 color: Qt.rgba(1, 0, 0, 1) } GradientStop { position: 0.167 color: Qt.rgba(1, 1, 0, 1) } GradientStop { position: 0.333 color: Qt.rgba(0, 1, 0, 1) } GradientStop { position: 0.500 color: Qt.rgba(0, 1, 1, 1) } GradientStop { position: 0.667 color: Qt.rgba(0, 0, 1, 1) } GradientStop { position: 0.833 color: Qt.rgba(1, 0, 1, 1) } GradientStop { position: 1.000 color: Qt.rgba(1, 0, 0, 1) } }
|
read |
\qmlproperty real RadialGradient::horizontalOffset \qmlproperty real RadialGradient::verticalOffset
The horizontalOffset and verticalOffset properties define the offset in pixels for the center point of the gradient compared to the item center.
The values range from -inf to inf. By default, these properties are set to 0.
\table \header
|
read |
\qmlproperty real RadialGradient::horizontalRadius \qmlproperty real RadialGradient::verticalRadius
The horizontalRadius and verticalRadius properties define the shape and size of the radial gradient. If the radiuses are equal, the shape of the gradient is a circle. If the horizontal and vertical radiuses differ, the shape is elliptical. The radiuses are given in pixels.
The value ranges from -inf to inf. By default, horizontalRadius is bound to width and verticalRadius is bound to height.
\table \header
|
read |
This property defines the item that is going to be filled with gradient. Source item gets rendered into an intermediate pixel buffer and the alpha values from the result are used to determine the gradient's pixels visibility in the display. The default value for source is undefined and in that case whole effect area is filled with gradient.
\table \header
|
read |
|
read |