PySide6.QtWidgets.QGraphicsColorizeEffect¶
- class QGraphicsColorizeEffect¶
The
QGraphicsColorizeEffectclass provides a colorize effect. More…Added in version 4.6.
Synopsis¶
Properties¶
Methods¶
def
__init__()def
color()def
strength()
Slots¶
def
setColor()def
setStrength()
Signals¶
def
colorChanged()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
A colorize effect renders the source with a tint of its
color(). The color can be modified using thesetColor()function.By default, the color is light blue (QColor(0, 0, 192)).
Note
Properties can be used directly when
from __feature__ import true_propertyis used or via accessor functions otherwise.This property holds the color of the effect..
By default, the color is light blue (QColor(0, 0, 192)).
- Access functions:
Signal
colorChanged()
- property strengthᅟ: float¶
This property holds the strength of the effect..
By default, the strength is 1.0. A strength 0.0 equals to no effect, while 1.0 means full colorization.
- Access functions:
Constructs a new
QGraphicsColorizeEffectinstance. Theparentparameter is passed toQGraphicsEffect‘s constructor.- color()¶
- Return type:
See also
Getter of property
colorᅟ.This signal is emitted whenever the effect’s color changes. The
colorparameter holds the effect’s new color.Notification signal of property
colorᅟ.Setter of property
colorᅟ.- setStrength(strength)¶
- Parameters:
strength – float
See also
Setter of property
strengthᅟ.- strength()¶
- Return type:
float
See also
Getter of property
strengthᅟ.- strengthChanged(strength)¶
- Parameters:
strength – float
This signal is emitted whenever
setStrength()changes the colorize strength property.strengthcontains the new strength value of the colorize effect.Notification signal of property
strengthᅟ.