Qt:Документация 4.3.2/qgraphicssimpletextitem

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QGraphicsSimpleTextItem Class Reference
[модуль QtGui ]

The QGraphicsSimpleTextItem class provides a simple text path item that you can add to a QGraphicsScene. Далее...

 #include <QGraphicsSimpleTextItem>

Inherits QAbstractGraphicsShapeItem.

Класс был добавлен в Qt 4.2.

[править] Открытые функции

[править] Дополнительные унаследованные члены


[править] Подробное описание

The QGraphicsSimpleTextItem class provides a simple text path item that you can add to a QGraphicsScene.

To set the item's text, you can either pass a QString to QGraphicsSimpleTextItem's constructor, or call setText() to change the text later. To set the text fill color, call setBrush().

The simple text item can have both a fill and an outline; setBrush() will set the text fill (i.e., text color), and setPen() sets the pen that will be used to draw the text outline. (The latter can be slow, especially for complex pens, and items with long text content.) If all you want is to draw a simple line of text, you should call setBrush() only, and leave the pen unset; QGraphicsSimpleTextItem's pen is by default Qt::NoPen.

QGraphicsSimpleTextItem uses the text's formatted size and the associated font to provide a reasonable implementation of boundingRect(), shape(), and contains(). You can set the font by calling setFont().

QGraphicsSimpleText does not display rich text; instead, you can use QGraphicsTextItem, which provides full text control capabilities.

center

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


[править] Описание функций-членов

[править]
QGraphicsSimpleTextItem::QGraphicsSimpleTextItem ( QGraphicsItem * parent = 0 )

Constructs a QGraphicsSimpleTextItem.

parent is passed to QGraphicsItem's constructor.

See also QGraphicsScene::addItem().

[править]
QGraphicsSimpleTextItem::QGraphicsSimpleTextItem ( const QString & text, QGraphicsItem * parent = 0 )

Constructs a QGraphicsSimpleTextItem, using text as the default plain text.

parent is passed to QGraphicsItem's constructor.

See also QGraphicsScene::addItem().

[править]
QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem ()

Destroys the QGraphicsSimpleTextItem.

[править]
QFont QGraphicsSimpleTextItem::font () const

Returns the font that is used to draw the item's text.

See also setFont().

[править]
void QGraphicsSimpleTextItem::setFont ( const QFont & font )

Sets the font that is used to draw the item's text to font.

See also font().

[править]
void QGraphicsSimpleTextItem::setText ( const QString & text )

Sets the item's text to text. The text will be displayed as plain text. Newline characters ('\n') as well as characters of type QChar::LineSeparator will cause item to break the text into multiple lines.

See also text().

[править]
QString QGraphicsSimpleTextItem::text () const

Returns the item's text.

See also setText().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2