QGraphicsDropShadowEffect¶
The QGraphicsDropShadowEffect
class provides a drop shadow effect. More…

New in version 4.6.
Synopsis¶
Functions¶
def
blurRadius
()def
blurRadiusChanged
(blurRadius)def
color
()def
colorChanged
(color)def
offset
()def
offsetChanged
(offset)def
setBlurRadius
(blurRadius)def
setColor
(color)def
setOffset
(d)def
setOffset
(dx, dy)def
setOffset
(ofs)def
setXOffset
(dx)def
setYOffset
(dy)def
xOffset
()def
yOffset
()
Detailed Description¶
A drop shadow effect renders the source with a drop shadow. The color of the drop shadow can be modified using the setColor()
function. The drop shadow offset can be modified using the setOffset()
function and the blur radius of the drop shadow can be changed with the setBlurRadius()
function.
By default, the drop shadow is a semi-transparent dark gray ( QColor
(63, 63, 63, 180)) shadow, blurred with a radius of 1 at an offset of 8 pixels towards the lower right. The drop shadow offset is specified in device coordinates.
-
class
PySide6.QtWidgets.
QGraphicsDropShadowEffect
([parent=None])¶ - Parameters
parent –
PySide6.QtCore.QObject
Constructs a new QGraphicsDropShadowEffect
instance. The parent
parameter is passed to QGraphicsEffect
‘s constructor.
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
blurRadius
()¶ - Return type
float
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
blurRadiusChanged
(blurRadius)¶ - Parameters
blurRadius – float
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
color
()¶ - Return type
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
colorChanged
(color)¶ - Parameters
color –
PySide6.QtGui.QColor
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
offset
()¶ - Return type
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
offsetChanged
(offset)¶ - Parameters
offset –
PySide6.QtCore.QPointF
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setBlurRadius
(blurRadius)¶ - Parameters
blurRadius – float
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setColor
(color)¶ - Parameters
color –
PySide6.QtGui.QColor
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setOffset
(ofs)¶ - Parameters
ofs –
PySide6.QtCore.QPointF
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setOffset
(d) - Parameters
d – float
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setOffset
(dx, dy) - Parameters
dx – float
dy – float
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setXOffset
(dx)¶ - Parameters
dx – float
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
setYOffset
(dy)¶ - Parameters
dy – float
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
xOffset
()¶ - Return type
float
See also
-
PySide6.QtWidgets.QGraphicsDropShadowEffect.
yOffset
()¶ - Return type
float
See also
© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.