Qt 4.8
Public Functions | List of all members
QConicalGradient Class Reference

The QConicalGradient class is used in combination with QBrush to specify a conical gradient brush. More...

#include <qbrush.h>

Inheritance diagram for QConicalGradient:
QGradient

Public Functions

qreal angle () const
 Returns the start angle of the conical gradient in logical coordinates. More...
 
QPointF center () const
 Returns the center of the conical gradient in logical coordinates. More...
 
 QConicalGradient ()
 Constructs a conical with center at (0, 0) starting the interpolation at angle 0. More...
 
 QConicalGradient (const QPointF &center, qreal startAngle)
 Constructs a conical gradient with the given center, starting the interpolation at the given angle. More...
 
 QConicalGradient (qreal cx, qreal cy, qreal startAngle)
 Constructs a conical gradient with the given center (cx, cy), starting the interpolation at the given angle. More...
 
void setAngle (qreal angle)
 Sets angle to be the start angle for this conical gradient in logical coordinates. More...
 
void setCenter (const QPointF &center)
 Sets the center of this conical gradient in logical coordinates to center. More...
 
void setCenter (qreal x, qreal y)
 Sets the center of this conical gradient in logical coordinates to (x, y). More...
 
- Public Functions inherited from QGradient
CoordinateMode coordinateMode () const
 Returns the coordinate mode of this gradient. More...
 
InterpolationMode interpolationMode () const
 Returns the interpolation mode of this gradient. More...
 
bool operator!= (const QGradient &other) const
 Returns true if the gradient is the same as the other gradient specified; otherwise returns false. More...
 
bool operator== (const QGradient &gradient) const
 Returns true if the gradient is the same as the other gradient specified; otherwise returns false. More...
 
bool operator== (const QGradient &gradient)
 
 QGradient ()
 
void setColorAt (qreal pos, const QColor &color)
 Creates a stop point at the given position with the given color. More...
 
void setCoordinateMode (CoordinateMode mode)
 Sets the coordinate mode of this gradient to mode. More...
 
void setInterpolationMode (InterpolationMode mode)
 Sets the interpolation mode of this gradient to mode. More...
 
void setSpread (Spread spread)
 Specifies the spread method that should be used for this gradient. More...
 
void setStops (const QGradientStops &stops)
 Replaces the current set of stop points with the given stopPoints. More...
 
Spread spread () const
 Returns the spread method use by this gradient. More...
 
QGradientStops stops () const
 Returns the stop points for this gradient. More...
 
Type type () const
 Returns the type of gradient. More...
 

Additional Inherited Members

- Public Types inherited from QGradient
enum  CoordinateMode { LogicalMode, StretchToDeviceMode, ObjectBoundingMode }
 This enum specifies how gradient coordinates map to the paint device on which the gradient is used. More...
 
enum  InterpolationMode { ColorInterpolation, ComponentInterpolation }
 
enum  Spread { PadSpread, ReflectSpread, RepeatSpread }
 Specifies how the area outside the gradient area should be filled. More...
 
enum  Type { LinearGradient, RadialGradient, ConicalGradient, NoGradient }
 Specifies the type of gradient. More...
 

Detailed Description

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.

qconicalgradient.png

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.

See also
QLinearGradient, QRadialGradient, {demos/gradients}{The Gradients Demo}

Definition at line 329 of file qbrush.h.

Constructors and Destructors

◆ QConicalGradient() [1/3]

QConicalGradient::QConicalGradient ( )

Constructs a conical with center at (0, 0) starting the interpolation at angle 0.

See also
QGradient::setColorAt(), setCenter(), setAngle()

Definition at line 2374 of file qbrush.cpp.

2375 {
2377  m_spread = PadSpread;
2378  m_data.conical.cx = 0;
2379  m_data.conical.cy = 0;
2380  m_data.conical.angle = 0;
2381 }
Type m_type
Definition: qbrush.h:260
union QGradient::@216 m_data
Spread m_spread
Definition: qbrush.h:261

◆ QConicalGradient() [2/3]

QConicalGradient::QConicalGradient ( const QPointF center,
qreal  angle 
)

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.

See also
QGradient::setColorAt(), QGradient::setStops()

Definition at line 2339 of file qbrush.cpp.

2340 {
2342  m_spread = PadSpread;
2343  m_data.conical.cx = center.x();
2344  m_data.conical.cy = center.y();
2345  m_data.conical.angle = angle;
2346 }
Type m_type
Definition: qbrush.h:260
qreal angle() const
Returns the start angle of the conical gradient in logical coordinates.
Definition: qbrush.cpp:2433
qreal x() const
Returns the x-coordinate of this point.
Definition: qpoint.h:282
union QGradient::@216 m_data
qreal y() const
Returns the y-coordinate of this point.
Definition: qpoint.h:287
Spread m_spread
Definition: qbrush.h:261

◆ QConicalGradient() [3/3]

QConicalGradient::QConicalGradient ( qreal  cx,
qreal  cy,
qreal  angle 
)

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.

See also
QGradient::setColorAt(), QGradient::setStops()

Definition at line 2357 of file qbrush.cpp.

2358 {
2360  m_spread = PadSpread;
2361  m_data.conical.cx = cx;
2362  m_data.conical.cy = cy;
2363  m_data.conical.angle = angle;
2364 }
Type m_type
Definition: qbrush.h:260
qreal angle() const
Returns the start angle of the conical gradient in logical coordinates.
Definition: qbrush.cpp:2433
qreal cy
Definition: qbrush.h:268
union QGradient::@216 m_data
qreal cx
Definition: qbrush.h:268
Spread m_spread
Definition: qbrush.h:261

Functions

◆ angle()

qreal QConicalGradient::angle ( ) const

Returns the start angle of the conical gradient in logical coordinates.

See also
stops()

Definition at line 2433 of file qbrush.cpp.

Referenced by QSpanData::setup(), QGL2PaintEngineExPrivate::updateBrushUniforms(), and QOpenGLPaintEnginePrivate::updateGradient().

2434 {
2436  return m_data.conical.angle;
2437 }
Type m_type
Definition: qbrush.h:260
#define Q_ASSERT(cond)
Definition: qglobal.h:1823
union QGradient::@216 m_data

◆ center()

QPointF QConicalGradient::center ( ) const

Returns the center of the conical gradient in logical coordinates.

See also
stops()

Definition at line 2391 of file qbrush.cpp.

Referenced by QSpanData::setup(), QGL2PaintEngineExPrivate::updateBrushUniforms(), and QOpenGLPaintEnginePrivate::updateGradient().

2392 {
2394  return QPointF(m_data.conical.cx, m_data.conical.cy);
2395 }
Type m_type
Definition: qbrush.h:260
The QPointF class defines a point in the plane using floating point precision.
Definition: qpoint.h:214
#define Q_ASSERT(cond)
Definition: qglobal.h:1823
union QGradient::@216 m_data

◆ setAngle()

void QConicalGradient::setAngle ( qreal  angle)

Sets angle to be the start angle for this conical gradient in logical coordinates.

Since
4.2
See also
angle()

Definition at line 2452 of file qbrush.cpp.

2453 {
2455  m_data.conical.angle = angle;
2456 }
Type m_type
Definition: qbrush.h:260
#define Q_ASSERT(cond)
Definition: qglobal.h:1823
qreal angle() const
Returns the start angle of the conical gradient in logical coordinates.
Definition: qbrush.cpp:2433
union QGradient::@216 m_data

◆ setCenter() [1/2]

void QConicalGradient::setCenter ( const QPointF center)

Sets the center of this conical gradient in logical coordinates to center.

See also
center()

Definition at line 2419 of file qbrush.cpp.

2420 {
2422  m_data.conical.cx = center.x();
2423  m_data.conical.cy = center.y();
2424 }
Type m_type
Definition: qbrush.h:260
#define Q_ASSERT(cond)
Definition: qglobal.h:1823
qreal x() const
Returns the x-coordinate of this point.
Definition: qpoint.h:282
union QGradient::@216 m_data
qreal y() const
Returns the y-coordinate of this point.
Definition: qpoint.h:287

◆ setCenter() [2/2]

void QConicalGradient::setCenter ( qreal  x,
qreal  y 
)
inline

Sets the center of this conical gradient in logical coordinates to (x, y).

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

See also
center()

Definition at line 338 of file qbrush.h.

Referenced by setCenter().

338 { setCenter(QPointF(x, y)); }
The QPointF class defines a point in the plane using floating point precision.
Definition: qpoint.h:214
void setCenter(const QPointF &center)
Sets the center of this conical gradient in logical coordinates to center.
Definition: qbrush.cpp:2419

The documentation for this class was generated from the following files: