Qt:Документация 4.3.2/qgradient

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QGradient Class Reference
[модуль QtGui ]

The QGradient class is used in combination with QBrush to specify gradient fills. Далее...

 #include <QGradient>

Inherited by QConicalGradient, QLinearGradient, and QRadialGradient.

[править] Открытые типы

  • enum Spread { PadSpread, RepeatSpread, ReflectSpread }
  • enum Type { LinearGradient, RadialGradient, ConicalGradient, NoGradient }

[править] Открытые функции

[править] Связанные не-члены


[править] Подробное описание

The QGradient class is used in combination with QBrush to specify gradient fills.

Qt currently supports three types of gradient fills:

  • Linear gradients interpolate colors between start and end points.
  • Radial gradients interpolate colors between a focal point and end points on a circle surrounding it.
  • Conical gradients interpolate colors around a center point.

A gradient's type can be retrieved using the type() function. Each of the types is represented by a subclass of QGradient:


Файл:Qgradient-linear.png Файл:Qgradient-radial.png Файл:Qgradient-conical.png
QLinearGradient QRadialGradient QConicalGradient

The colors in a gradient is defined using stop points of the QGradientStop type, i.e. a position and a color. Use the setColorAt() function to define a single stop point. Alternatively, use the setStops() function to define several stop points in one go. Note that the latter function replaces the current set of stop points.

It is the gradient's complete set of stop points (accessible through the stops() function) 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.

A diagonal linear gradient from black at (100, 100) to white at (200, 200) could be specified like this:

     QLinearGradient linearGrad(QPointF(100, 100), QPointF(200, 200));
     linearGrad.setColorAt(0, Qt::black);
     linearGrad.setColorAt(1, Qt::white);

A gradient can have an arbitrary number of stop points. The following would create a radial gradient starting with red in the center, blue and then green on the edges:

     QRadialGradient radialGrad(QPointF(100, 100), 100);
     radialGrad.setColorAt(0, Qt::red);
     radialGrad.setColorAt(0.5, Qt::blue);
     radialGrad.setColorAt(1, Qt::green);

It is possible to repeat or reflect the gradient outside its area by specifiying the spread method using the setSpread() function. The default is to pad the outside area with the color at the closest stop point. The currently set spread method can be retrieved using the spread() function. The QGradient::Spread enum defines three different methods:


Файл:Qradialgradient-pad.png Файл:Qradialgradient-repeat.png Файл:Qradialgradient-reflect.png
PadSpread RepeatSpread ReflectSpread

Note that the setSpread() function only has effect for linear and radial 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 The Gradients Demo and QBrush.


[править] Описание типов

[править]
enum QGradient::Spread

Specifies how the area outside the gradient area should be filled.


Константа Значение Описание
QGradient::PadSpread 0 The area is filled with the closest stop color. Это значение и установлено по умолчанию.
QGradient::RepeatSpread 2 The gradient is repeated outside the gradient area.
QGradient::ReflectSpread 1 The gradient is reflected outside the gradient area.

See also spread() and setSpread().

[править]
enum QGradient::Type

Specifies the type of gradient.


Константа Значение Описание
QGradient::LinearGradient 0 Interpolates colors between start and end points ( QLinearGradient).
QGradient::RadialGradient 1 Interpolate colors between a focal point and end points on a circle surrounding it ( QRadialGradient).
QGradient::ConicalGradient 2 Interpolate colors around a center point ( QConicalGradient).
QGradient::NoGradient 3 No gradient is used.

See also type().


[править] Описание функций-членов

[править]
void QGradient::setColorAt ( qreal position, const QColor & color )

Creates a stop point at the given position with the given color. The given position must be in the range 0 to 1.

See also setStops() and stops().

[править]
void QGradient::setSpread ( Spread method )

Specifies the spread method that should be used for this gradient.

Note that this function only has effect for linear and radial gradients.

See also spread().

[править]
void QGradient::setStops ( const QGradientStops & stopPoints )

Replaces the current set of stop points with the given stopPoints. The positions of the points must be in the range 0 to 1, and must be sorted with the lowest point first.

See also setColorAt() and stops().

[править]
Spread QGradient::spread () const

Returns the spread method use by this gradient. The default is PadSpread.

See also setSpread().

[править]
QGradientStops QGradient::stops () const

Returns the stop points for this gradient.

If no stop points have been specified, a gradient of black at 0 to white at 1 is used.

See also setStops() and setColorAt().

[править]
Type QGradient::type () const

Returns the type of gradient.

[править]
bool QGradient::operator!= ( const QGradient & gradient ) const

Returns true if the gradient is the same as the other gradient specified; otherwise returns false.

Эта функция была введена в Qt 4.2.

Смотрите также operator==().

[править]
bool QGradient::operator== ( const QGradient & gradient ) const

Returns true if the gradient is the same as the other gradient specified; otherwise returns false.

Смотирте также operator!=().


[править] Связанные не-члены

[править]
typedef QGradientStop

Typedef for QPair< qreal, QColor>.

[править]
typedef QGradientStops

Typedef for QVector< QGradientStop>.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2