Qt:Документация 4.3.2/qgraphicspathitem
Материал из Wiki.crossplatform.ru
![]() | Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] QGraphicsPathItem Class Reference
[модуль QtGui ]
The QGraphicsPathItem class provides a path item that you can add to a QGraphicsScene. Далее...
#include <QGraphicsPathItem>
Inherits QAbstractGraphicsShapeItem.
Класс был добавлен в Qt 4.2.
[править] Открытые функции
- QGraphicsPathItem ( QGraphicsItem * parent = 0 )
- QGraphicsPathItem ( const QPainterPath & path, QGraphicsItem * parent = 0 )
- ~QGraphicsPathItem ()
- QPainterPath path () const
- void setPath ( const QPainterPath & path )
- 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 QGraphicsPathItem class provides a path item that you can add to a QGraphicsScene.
To set the item's path, pass a QPainterPath to QGraphicsPathItem's constructor, or call the setPath() function. The path() function returns the current path.
QGraphicsPathItem uses the path to provide a reasonable implementation of boundingRect(), shape(), and contains(). The paint() function draws the path using the item's associated pen and brush, which you can set by calling the setPen() and setBrush() functions.
See also QGraphicsRectItem, QGraphicsEllipseItem, QGraphicsPolygonItem, QGraphicsTextItem, QGraphicsLineItem, QGraphicsPixmapItem, and The Graphics View Framework.
[править] Описание функций-членов
[править] QGraphicsPathItem::QGraphicsPathItem ( QGraphicsItem * parent = 0 )
Constructs a QGraphicsPath. parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene::addItem().
[править] QGraphicsPathItem::QGraphicsPathItem ( const QPainterPath & path, QGraphicsItem * parent = 0 )
Constructs a QGraphicsPath item using path as the default path. parent is passed to QAbstractGraphicsShapeItem's constructor.
See also QGraphicsScene::addItem().
[править] QGraphicsPathItem::~QGraphicsPathItem ()
Destroys the QGraphicsPathItem.
[править] QPainterPath QGraphicsPathItem::path () const
Returns the item's path as a QPainterPath. If no item has been set, an empty QPainterPath is returned.
See also setPath().
[править] void QGraphicsPathItem::setPath ( const QPainterPath & path )
Sets the item's path to be the given path.
See also path().
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|