Home · All Classes · Modules |
The QGraphicsRectItem class provides a rectangle item that you can add to a QGraphicsScene. More...
Inherits QAbstractGraphicsShapeItem.
The QGraphicsRectItem class provides a rectangle item that you can add to a QGraphicsScene.
To set the item's rectangle, pass a QRectF to QGraphicsRectItem's constructor, or call the setRect() function. The rect() function returns the current rectangle.
QGraphicsRectItem uses the rectangle and the pen width to provide a reasonable implementation of boundingRect(), shape(), and contains(). The paint() function draws the rectangle using the item's associated pen and brush, which you can set by calling the setPen() and setBrush() functions.
Note: The rendering of invalid rectangles, such as those with negative widths or heights, is undefined. If you cannot be sure that you are using valid rectangles (for example, if you are creating rectangles using data from an unreliable source) then you should use QRectF.normalized() to create normalized rectangles, and use those instead.
The parent argument, if not None, causes self to be owned by Qt instead of PyQt.
The scene argument, if not None, causes self to be owned by Qt instead of PyQt.
Constructs a QGraphicsRectItem. parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene.addItem().
The parent argument, if not None, causes self to be owned by Qt instead of PyQt.
The scene argument, if not None, causes self to be owned by Qt instead of PyQt.
Constructs a QGraphicsRectItem, using rect as the default rectangle. parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene.addItem().
The parent argument, if not None, causes self to be owned by Qt instead of PyQt.
The scene argument, if not None, causes self to be owned by Qt instead of PyQt.
Constructs a QGraphicsRectItem with a default rectangle defined by (x, y) and the given width and height.
parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene.addItem().
Reimplemented from QGraphicsItem.boundingRect().
Reimplemented from QGraphicsItem.contains().
Reimplemented from QGraphicsItem.isObscuredBy().
Reimplemented from QGraphicsItem.opaqueArea().
Reimplemented from QGraphicsItem.paint().
Returns the item's rectangle.
See also setRect().
Sets the item's rectangle to be the given rectangle.
See also rect().
Sets the item's rectangle to the rectangle defined by (x, y) and the given width and height.
This convenience function is equivalent to calling setRect(QRectF(x, y, width, height))
See also rect().
Reimplemented from QGraphicsItem.shape().
Reimplemented from QGraphicsItem.type().
PyQt 4.12.1 for X11 | Copyright © Riverbank Computing Ltd and The Qt Company 2015 | Qt 4.8.7 |