![]() |
Qt 6.x
The Qt SDK
|
\inmodule QtGui More...
#include <qbrush.h>
Public Member Functions | |
QConicalGradient () | |
Constructs a conical with center at (0, 0) starting the interpolation at angle 0. | |
QConicalGradient (const QPointF ¢er, qreal startAngle) | |
Constructs a conical gradient with the given center, starting the interpolation at the given angle. | |
QConicalGradient (qreal cx, qreal cy, qreal startAngle) | |
Constructs a conical gradient with the given center (cx, cy), starting the interpolation at the given angle. | |
~QConicalGradient () | |
QPointF | center () const |
Returns the center of the conical gradient in logical coordinates. | |
void | setCenter (const QPointF ¢er) |
Sets the center of this conical gradient in logical coordinates to center. | |
void | setCenter (qreal x, qreal y) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Sets the center of this conical gradient in logical coordinates to (x, y). | |
qreal | angle () const |
Returns the start angle of the conical gradient in logical coordinates. | |
void | setAngle (qreal angle) |
![]() | |
QGradient () | |
QGradient (Preset) | |
~QGradient () | |
Type | type () const |
Returns the type of gradient. | |
void | setSpread (Spread spread) |
Specifies the spread method that should be used for this gradient. | |
Spread | spread () const |
Returns the spread method use by this gradient. | |
void | setColorAt (qreal pos, const QColor &color) |
Creates a stop point at the given position with the given color. | |
void | setStops (const QGradientStops &stops) |
Replaces the current set of stop points with the given stopPoints. | |
QGradientStops | stops () const |
Returns the stop points for this gradient. | |
CoordinateMode | coordinateMode () const |
void | setCoordinateMode (CoordinateMode mode) |
InterpolationMode | interpolationMode () const |
void | setInterpolationMode (InterpolationMode mode) |
bool | operator== (const QGradient &gradient) const |
Returns true if the gradient is the same as the other gradient specified; otherwise returns false . | |
bool | operator!= (const QGradient &other) const |
\inmodule QtGui
The QConicalGradient class is used in combination with QBrush to specify a conical gradient brush.
Conical gradients interpolate interpolate colors counter-clockwise around a center point.
The colors in a gradient is defined using stop points of the QGradientStop type, i.e. a position and a color. Use the QGradient::setColorAt() or the QGradient::setStops() function to define the stop points. It is the gradient's 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 QConicalGradient class provides the angle() and center() functions returning the start angle and center of the gradient.
Note that the setSpread() function has no effect for conical gradients. The reason is that the conical gradient is closed by definition, i.e. the conical gradient fills the entire circle from 0 - 360 degrees, while the boundary of a radial or a linear gradient can be specified through its radius or final stop points, respectively.
QConicalGradient::QConicalGradient | ( | ) |
Constructs a conical with center at (0, 0) starting the interpolation at angle 0.
Definition at line 2397 of file qbrush.cpp.
References QGradient::ConicalGradient, m_data, and QGradient::PadSpread.
Constructs a conical gradient with the given center, starting the interpolation at the given angle.
The angle must be specified in degrees between 0 and 360.
Definition at line 2359 of file qbrush.cpp.
References angle(), center(), QGradient::ConicalGradient, m_data, QGradient::PadSpread, QPointF::x(), and QPointF::y().
Constructs a conical gradient with the given center (cx, cy), starting the interpolation at the given angle.
The angle must be specified in degrees between 0 and 360.
Definition at line 2377 of file qbrush.cpp.
QConicalGradient::~QConicalGradient | ( | ) |
Definition at line 2385 of file qbrush.cpp.
qreal QConicalGradient::angle | ( | ) | const |
Returns the start angle of the conical gradient in logical coordinates.
Definition at line 2453 of file qbrush.cpp.
References QGradient::ConicalGradient, m_data, and Q_ASSERT.
Referenced by QConicalGradient(), and setAngle().
QPointF QConicalGradient::center | ( | ) | const |
Returns the center of the conical gradient in logical coordinates.
Definition at line 2414 of file qbrush.cpp.
References QGradient::ConicalGradient, m_data, and Q_ASSERT.
Referenced by QConicalGradient(), and setCenter().
Sets angle to be the start angle for this conical gradient in logical coordinates.
Definition at line 2469 of file qbrush.cpp.
References angle(), QGradient::ConicalGradient, m_data, and Q_ASSERT.
Sets the center of this conical gradient in logical coordinates to center.
Definition at line 2439 of file qbrush.cpp.
References center(), QGradient::ConicalGradient, m_data, Q_ASSERT, QPointF::x(), and QPointF::y().
Referenced by QQuickFusionBusyIndicator::paint().
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Sets the center of this conical gradient in logical coordinates to (x, y).
Definition at line 455 of file qbrush.h.
References setCenter().
Referenced by setCenter().