IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QGraphicsPolygonItem Class

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

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QGraphicsPolygonItem Class

  • Header: QGraphicsPolygonItem

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Widgets)

    target_link_libraries(mytarget PRIVATE Qt6::Widgets)

  • qmake: QT += widgets

  • Inherits: QAbstractGraphicsShapeItem

  • Group: QGraphicsPolygonItem is part of graphicsview-api

Detailed Description

To set the item's polygon, pass a QPolygonF to QGraphicsPolygonItem's constructor, or call the setPolygon() function. The polygon() function returns the current polygon.

Image non disponible

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

See Also

Member Type Documentation

 

enum QGraphicsPolygonItem::anonymous

The value returned by the virtual type() function.

Constant

Value

Description

QGraphicsPolygonItem::Type

5

A graphics polygon item

Member Function Documentation

 

[explicit] QGraphicsPolygonItem::QGraphicsPolygonItem(QGraphicsItem *parent = nullptr)

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

See Also

[explicit] QGraphicsPolygonItem::QGraphicsPolygonItem(const QPolygonF &polygon, QGraphicsItem *parent = nullptr)

Constructs a QGraphicsPolygonItem with polygon as the default polygon. parent is passed to QAbstractGraphicsShapeItem's constructor.

See Also

[virtual] QGraphicsPolygonItem::~QGraphicsPolygonItem()

Destroys the QGraphicsPolygonItem.

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

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

Qt::FillRule QGraphicsPolygonItem::fillRule() const

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

See Also

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

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

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

QPolygonF QGraphicsPolygonItem::polygon() const

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

See Also

See also setPolygon()

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

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

See Also

void QGraphicsPolygonItem::setPolygon(const QPolygonF &polygon)

Sets the item's polygon to be the given polygon.

See Also

See also polygon()

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

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

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+