QGraphicsColorizeEffect#

The QGraphicsColorizeEffect class provides a colorize effect. More

Inheritance diagram of PySide6.QtWidgets.QGraphicsColorizeEffect

New in version 4.6.

Synopsis#

Functions#

Slots#

Signals#

Detailed Description#

A colorize effect renders the source with a tint of its color() . The color can be modified using the setColor() function.

By default, the color is light blue ( QColor (0, 0, 192)).

class PySide6.QtWidgets.QGraphicsColorizeEffect([parent=None])#
Parameters

parentPySide6.QtCore.QObject

Constructs a new QGraphicsColorizeEffect instance. The parent parameter is passed to QGraphicsEffect ‘s constructor.

PySide6.QtWidgets.QGraphicsColorizeEffect.color()#
Return type

PySide6.QtGui.QColor

This property holds the color of the effect..

By default, the color is light blue ( QColor (0, 0, 192)).

PySide6.QtWidgets.QGraphicsColorizeEffect.colorChanged(color)#
Parameters

colorPySide6.QtGui.QColor

This signal is emitted whenever the effect’s color changes. The color parameter holds the effect’s new color.

PySide6.QtWidgets.QGraphicsColorizeEffect.setColor(c)#
Parameters

cPySide6.QtGui.QColor

This property holds the color of the effect..

By default, the color is light blue ( QColor (0, 0, 192)).

PySide6.QtWidgets.QGraphicsColorizeEffect.setStrength(strength)#
Parameters

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.

PySide6.QtWidgets.QGraphicsColorizeEffect.strength()#
Return type

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.

PySide6.QtWidgets.QGraphicsColorizeEffect.strengthChanged(strength)#
Parameters

strength – float

This signal is emitted whenever setStrength() changes the colorize strength property. strength contains the new strength value of the colorize effect.