Home · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The QGraphicsRectItem class provides a rectangle item that you can add to a QGraphicsScene. More...
#include <QGraphicsRectItem>
Inherits QAbstractGraphicsShapeItem.
This class was introduced in Qt 4.2.
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.
See also QGraphicsPathItem, QGraphicsEllipseItem, QGraphicsPolygonItem, QGraphicsTextItem, QGraphicsLineItem, QGraphicsPixmapItem, and The Graphics View Framework.
Constructs a QGraphicsRectItem. The parent and scene parameters are passed to QAbstractGraphicsShapeItem's constructor.
Constructs a QGraphicsRectItem, using rect as the default rectangle. The parent and scene parameters are passed to QAbstractGraphicsShapeItem's constructor.
Constructs a QGraphicsRectItem with a default rectangle defined by (x, y) and the given width and height.
The parent parameter is passed to QAbstractGraphicsShapeItem's constructor.
Destroys the QGraphicsRectItem.
Returns the item's rectangle.
See also setRect().
Sets the item's rectangle to be the given rectangle.
See also rect().
This is an overloaded member function, provided for convenience.
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().
Copyright © 2007 Trolltech | Trademarks | Qt 4.2.3 |