QGraphicsOpacityEffect Class ReferenceThe QGraphicsOpacityEffect class provides an opacity effect. More... #include <QGraphicsOpacityEffect> Inherits: QGraphicsEffect. This class was introduced in Qt 4.6. Properties
Public Functions
Public Slots
Signals
Reimplemented Protected Functions
Additional Inherited Members
Detailed DescriptionThe QGraphicsOpacityEffect class provides an opacity effect. An opacity effect renders the source with an opacity. This effect is useful for making the source semi-transparent, similar to a fade-in/fade-out sequence. The opacity can be modified using the setOpacity() function. By default, the opacity is 0.7. See also QGraphicsDropShadowEffect, QGraphicsBlurEffect, and QGraphicsColorizeEffect. Property Documentation
|
qreal | opacity () const |
void | setOpacity ( qreal opacity ) |
Notifier signal:
void | opacityChanged ( qreal opacity ) |
See also setOpacityMask().
This property holds the opacity mask of the effect.
An opacity mask allows you apply opacity to portions of an element.
For example:
... QLinearGradient alphaGradient(rect.topLeft(), rect.bottomLeft()); alphaGradient.setColorAt(0.0, Qt::transparent); alphaGradient.setColorAt(0.5, Qt::black); alphaGradient.setColorAt(1.0, Qt::transparent); QGraphicsOpacityEffect *effect = new QGraphicsOpacityEffect; effect->setOpacityMask(alphaGradient); ...
There is no opacity mask by default.
Access functions:
QBrush | opacityMask () const |
void | setOpacityMask ( const QBrush & mask ) |
Notifier signal:
void | opacityMaskChanged ( const QBrush & mask ) |
See also setOpacity().
Constructs a new QGraphicsOpacityEffect instance. The parent parameter is passed to QGraphicsEffect's constructor.
Destroys the effect.
Reimplemented from QGraphicsEffect::draw().
This signal is emitted whenever the effect's opacity changes. The opacity parameter holds the effect's new opacity.
This signal is emitted whenever the effect's opacity mask changes. The mask parameter holds the effect's new opacity mask.
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.8 | |
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 ! |
Copyright © 2000-2012 - www.developpez.com