QGraphicsPolygonItem 类

QGraphicsPolygonItem class provides a polygon item that you can add to a QGraphicsScene . 更多...

头: #include <QGraphicsPolygonItem>
qmake: QT += widgets
Since: Qt 4.2
继承: QAbstractGraphicsShapeItem

公共函数

QGraphicsPolygonItem (QGraphicsItem * parent = Q_NULLPTR)
QGraphicsPolygonItem (const QPolygonF & polygon , QGraphicsItem * parent = Q_NULLPTR)
~QGraphicsPolygonItem ()
Qt::FillRule fillRule () const
QPolygonF polygon () const
void setFillRule (Qt::FillRule rule )
void setPolygon (const QPolygonF & polygon )

重实现公共函数

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

额外继承成员

详细描述

QGraphicsPolygonItem class provides a polygon item that you can add to a QGraphicsScene .

要设置项的多边形,传递 QPolygonF to QGraphicsPolygonItem 's constructor, or call the setPolygon () 函数。 polygon () 函数返回当前多边形。

QGraphicsPolygonItem uses the polygon and the pen width to provide a reasonable implementation of boundingRect (), shape (),和 contains ()。 paint () function draws the polygon using the item's associated pen and brush, which you can set by calling the setPen () 和 setBrush () 函数。

另请参阅 QGraphicsPathItem , QGraphicsRectItem , QGraphicsEllipseItem , QGraphicsTextItem , QGraphicsLineItem , QGraphicsPixmapItem ,和 图形视图框架 .

成员函数文档编制

QGraphicsPolygonItem:: QGraphicsPolygonItem ( QGraphicsItem * parent = Q_NULLPTR)

构造 QGraphicsPolygonItem . parent 会被传递给 QAbstractGraphicsShapeItem 的构造函数。

另请参阅 QGraphicsScene::addItem ().

QGraphicsPolygonItem:: QGraphicsPolygonItem (const QPolygonF & polygon , QGraphicsItem * parent = Q_NULLPTR)

构造 QGraphicsPolygonItem with polygon 作为默认多边形。 parent 会被传递给 QAbstractGraphicsShapeItem 的构造函数。

另请参阅 QGraphicsScene::addItem ().

QGraphicsPolygonItem:: ~QGraphicsPolygonItem ()

销毁 QGraphicsPolygonItem .

[virtual] QRectF QGraphicsPolygonItem:: boundingRect () const

重实现自 QGraphicsItem::boundingRect ().

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

重实现自 QGraphicsItem::contains ().

Qt::FillRule QGraphicsPolygonItem:: fillRule () const

返回多边形填充规则。默认填充规则为 Qt::OddEvenFill .

另请参阅 setFillRule (), QPainterPath::fillRule (),和 QPainter::drawPolygon ().

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

重实现自 QGraphicsItem::isObscuredBy ().

[virtual] QPainterPath QGraphicsPolygonItem:: opaqueArea () const

重实现自 QGraphicsItem::opaqueArea ().

[virtual] void QGraphicsPolygonItem:: paint ( QPainter * painter , const QStyleOptionGraphicsItem * option , QWidget * widget = Q_NULLPTR)

重实现自 QGraphicsItem::paint ().

QPolygonF QGraphicsPolygonItem:: polygon () const

Returns the item's polygon, or an empty polygon if no polygon has been set.

另请参阅 setPolygon ().

void QGraphicsPolygonItem:: setFillRule ( Qt::FillRule rule )

Sets the fill rule of the polygon to rule . The default fill rule is Qt::OddEvenFill .

另请参阅 fillRule (), QPainterPath::fillRule (),和 QPainter::drawPolygon ().

void QGraphicsPolygonItem:: setPolygon (const QPolygonF & polygon )

将项的多边形设为给定 polygon .

另请参阅 polygon ().

[virtual] QPainterPath QGraphicsPolygonItem:: shape () const

重实现自 QGraphicsItem::shape ().

[virtual] int QGraphicsPolygonItem:: type () const

重实现自 QGraphicsItem::type ().