Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QGradient Class Reference
[QtGui module]

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

#include <QGradient>

Inherited by QConicalGradient, QLinearGradient, and QRadialGradient.

Public Types

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

Public Functions

Related Non-Members


Detailed Description

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

Qt currently supports three types of gradient fills: linear, radial and conical. Each of these is represented by a subclass of QGradient: QLinearGradient, QRadialGradient and QConicalGradient.

The colors in a gradient is defined using stop points, which is a position and a color. The set of stop points describes how the gradient area should be filled. 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 the area by specifiying spread. The default is to pad the outside area with the color at the closest stop point.

See also QLinearGradient, QRadialGradient, and QConicalGradient.


Member Type Documentation

enum QGradient::Spread

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

ConstantValueDescription
QGradient::PadSpread0The areas are filled with the closes stop color. This is the default.
QGradient::RepeatSpread2The gradient repeats outside the gradient area.
QGradient::ReflectSpread1The gradient is reflected outside the gradient area.

enum QGradient::Type

Specifies the type of gradient.

ConstantValueDescription
QGradient::LinearGradient0The gradient is a linear gradient.
QGradient::RadialGradient1The gradient is a radial gradient.
QGradient::ConicalGradient2The gradient is a conical gradient.

Member Function Documentation

void QGradient::setColorAt ( qreal pos, const QColor & color )

Sets another stop point at the relative position pos with color color. The position pos must be in the range 0 to 1.

void QGradient::setSpread ( Spread method )

Specifies the spread method that should be used for this gradient. This function only has effect for linear and radial gradients.

See also spread().

void QGradient::setStops ( const QGradientStops & stops )

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

See also 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 stops for this gradient.

If no stops have been spesified a gradient of black at 0 to white at 1 is used.

See also setStops().

Type QGradient::type () const

Returns the type of gradient.


Related Non-Members

typedef QGradientStop

Typedef for QPair<qreal, QColor>.

typedef QGradientStops

Typedef for QVector<QGradientStop>.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 94
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 44
  4. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 6
  7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
Page suivante

Le blog Digia au hasard

Logo

Une nouvelle ère d'IHM 3D pour les automobiles

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.0
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web