Qt:Документация 4.3.2/qgraphicspolygonitem
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] QGraphicsPolygonItem Class Reference
[модуль QtGui ]
The QGraphicsPolygonItem class provides a polygon item that you can add to a QGraphicsScene. Далее...
#include <QGraphicsPolygonItem>
Inherits QAbstractGraphicsShapeItem.
Класс был добавлен в Qt 4.2.
[править] Открытые функции
- QGraphicsPolygonItem ( QGraphicsItem * parent = 0 )
- QGraphicsPolygonItem ( const QPolygonF & polygon, QGraphicsItem * parent = 0 )
- ~QGraphicsPolygonItem ()
- Qt::FillRule fillRule () const
- QPolygonF polygon () const
- void setFillRule ( Qt::FillRule rule )
- void setPolygon ( const QPolygonF & polygon )
- 4 public functions inherited from QAbstractGraphicsShapeItem
- 114 public functions inherited from QGraphicsItem
[править] Дополнительные унаследованные члены
- 1 static public member inherited from QGraphicsItem
- 23 protected functions inherited from QGraphicsItem
[править] Подробное описание
The QGraphicsPolygonItem class provides a polygon item that you can add to a QGraphicsScene.
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.
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 QGraphicsPathItem, QGraphicsRectItem, QGraphicsEllipseItem, QGraphicsTextItem, QGraphicsLineItem, QGraphicsPixmapItem, and The Graphics View Framework.
[править] Описание функций-членов
[править] QGraphicsPolygonItem::QGraphicsPolygonItem ( QGraphicsItem * parent = 0 )
Constructs a QGraphicsPolygonItem. parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene::addItem().
[править] QGraphicsPolygonItem::QGraphicsPolygonItem ( const QPolygonF & polygon, QGraphicsItem * parent = 0 )
Constructs a QGraphicsPolygonItem with polygon as the default polygon. parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene::addItem().
[править] QGraphicsPolygonItem::~QGraphicsPolygonItem ()
Destroys the QGraphicsPolygonItem.
[править] Qt::FillRule QGraphicsPolygonItem::fillRule () const
Returns the fill rule of the polygon. The default fill rule is Qt::OddEvenFill.
See also setFillRule(), QPainterPath::fillRule(), and QPainter::drawPolygon().
[править] QPolygonF QGraphicsPolygonItem::polygon () const
Returns the item's polygon, or an empty polygon if no polygon has been set.
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 fillRule(), QPainterPath::fillRule(), and QPainter::drawPolygon().
[править] void QGraphicsPolygonItem::setPolygon ( const QPolygonF & polygon )
Sets the item's polygon to be the given polygon.
See also polygon().
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|