QGraphicsPathItem¶
The
QGraphicsPathItem
class provides a path item that you can add to aQGraphicsScene
. More…
Synopsis¶
Functions¶
Detailed Description¶
To set the item’s path, pass a
QPainterPath
toQGraphicsPathItem
‘s constructor, or call thesetPath()
function. Thepath()
function returns the current path.
QGraphicsPathItem
uses the path to provide a reasonable implementation ofboundingRect()
,shape()
, andcontains()
. Thepaint()
function draws the path using the item’s associated pen and brush, which you can set by calling thesetPen()
andsetBrush()
functions.
- class PySide2.QtWidgets.QGraphicsPathItem([parent=None])¶
PySide2.QtWidgets.QGraphicsPathItem(path[, parent=None])
- param parent:
- param path:
Constructs a QGraphicsPath.
parent
is passed toQAbstractGraphicsShapeItem
‘s constructor.See also
Constructs a QGraphicsPath item using
path
as the default path.parent
is passed toQAbstractGraphicsShapeItem
‘s constructor.See also
- PySide2.QtWidgets.QGraphicsPathItem.path()¶
- Return type:
Returns the item’s path as a
QPainterPath
. If no item has been set, an emptyQPainterPath
is returned.See also
- PySide2.QtWidgets.QGraphicsPathItem.setPath(path)¶
- Parameters:
path –
PySide2.QtGui.QPainterPath
Sets the item’s path to be the given
path
.See also
© 2022 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.