QAbstractGraphicsShapeItem

Inheritance diagram of QAbstractGraphicsShapeItem

Inherited by: QGraphicsSimpleTextItem, QGraphicsPolygonItem, QGraphicsEllipseItem, QGraphicsRectItem, QGraphicsPathItem

Synopsis

Functions

Detailed Description

The PySide.QtGui.QAbstractGraphicsShapeItem class provides a common base for all path items.

This class does not fully implement an item by itself; in particular, it does not implement PySide.QtGui.QGraphicsItem.boundingRect() and PySide.QtGui.QGraphicsItem.paint() , which are inherited by PySide.QtGui.QGraphicsItem .

You can subclass this item to provide a simple base implementation of accessors for the item’s pen and brush.

class PySide.QtGui.QAbstractGraphicsShapeItem([parent=None[, scene=None]])
Parameters:
PySide.QtGui.QAbstractGraphicsShapeItem.brush()
Return type:PySide.QtGui.QBrush

Returns the item’s brush, or an empty brush if no brush has been set.

PySide.QtGui.QAbstractGraphicsShapeItem.pen()
Return type:PySide.QtGui.QPen

Returns the item’s pen. If no pen has been set, this function returns QPen(), a default black solid line pen with 0 width.

PySide.QtGui.QAbstractGraphicsShapeItem.setBrush(brush)
Parameters:brushPySide.QtGui.QBrush

Sets the item’s brush to brush .

The item’s brush is used to fill the item.

If you use a brush with a PySide.QtGui.QGradient , the gradient is relative to the item’s coordinate system.

PySide.QtGui.QAbstractGraphicsShapeItem.setPen(pen)
Parameters:penPySide.QtGui.QPen

Sets the pen for this item to pen .

The pen is used to draw the item’s outline.