QGraphicsRectItem Class

The QGraphicsRectItem class provides a rectangle item that you can add to a QGraphicsScene. More...

Header: #include <QGraphicsRectItem>
qmake: QT += widgets
Since: Qt 4.2
Inherits: QAbstractGraphicsShapeItem

Public Types

enum anonymous { Type }

Public Functions

QGraphicsRectItem(QGraphicsItem *parent = nullptr)
QGraphicsRectItem(const QRectF &rect, QGraphicsItem *parent = nullptr)
QGraphicsRectItem(qreal x, qreal y, qreal w, qreal h, QGraphicsItem *parent = nullptr)
virtual ~QGraphicsRectItem()
QRectF rect() const
void setRect(const QRectF &rect)
void setRect(qreal x, qreal y, qreal w, qreal h)

Reimplemented Public Functions

virtual QRectF boundingRect() const override
virtual bool contains(const QPointF &point) const override
virtual bool isObscuredBy(const QGraphicsItem *item) const override
virtual QPainterPath opaqueArea() const override
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr) override
virtual QPainterPath shape() const override
virtual int type() const override

Additional Inherited Members

Detailed Description

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.

See also QGraphicsPathItem, QGraphicsEllipseItem, QGraphicsPolygonItem, QGraphicsTextItem, QGraphicsLineItem, QGraphicsPixmapItem, and Graphics View Framework.

Member Type Documentation

enum QGraphicsRectItem::anonymous

The value returned by the virtual type() function.

ConstantValueDescription
QGraphicsRectItem::Type3A graphics rect item

Member Function Documentation

QGraphicsRectItem::QGraphicsRectItem(QGraphicsItem *parent = nullptr)

Constructs a QGraphicsRectItem. parent is passed to QAbstractGraphicsShapeItem's constructor.

See also QGraphicsScene::addItem().

QGraphicsRectItem::QGraphicsRectItem(const QRectF &rect, QGraphicsItem *parent = nullptr)

Constructs a QGraphicsRectItem, using rect as the default rectangle. parent is passed to QAbstractGraphicsShapeItem's constructor.

See also QGraphicsScene::addItem().

QGraphicsRectItem::QGraphicsRectItem(qreal x, qreal y, qreal w, qreal h, QGraphicsItem *parent = nullptr)

Default constructs an instance of QGraphicsRectItem.

[virtual] QGraphicsRectItem::~QGraphicsRectItem()

Destroys the QGraphicsRectItem.

[override virtual] QRectF QGraphicsRectItem::boundingRect() const

Reimplemented from QGraphicsItem::boundingRect().

[override virtual] bool QGraphicsRectItem::contains(const QPointF &point) const

Reimplemented from QGraphicsItem::contains().

[override virtual] bool QGraphicsRectItem::isObscuredBy(const QGraphicsItem *item) const

Reimplemented from QAbstractGraphicsShapeItem::isObscuredBy().

[override virtual] QPainterPath QGraphicsRectItem::opaqueArea() const

Reimplemented from QAbstractGraphicsShapeItem::opaqueArea().

[override virtual] void QGraphicsRectItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr)

Reimplemented from QGraphicsItem::paint().

QRectF QGraphicsRectItem::rect() const

Returns the item's rectangle.

See also setRect().

void QGraphicsRectItem::setRect(const QRectF &rect)

See also rect().

void QGraphicsRectItem::setRect(qreal x, qreal y, qreal w, qreal h)

[override virtual] QPainterPath QGraphicsRectItem::shape() const

Reimplemented from QGraphicsItem::shape().

[override virtual] int QGraphicsRectItem::type() const

Reimplemented from QGraphicsItem::type().