Qt:Документация 4.3.2/qtextinlineobject
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] QTextInlineObject Class Reference
[модуль QtGui ]
The QTextInlineObject class represents an inline object in a QTextLayout. Далее...
#include <QTextInlineObject>
[править] Открытые функции
- QTextInlineObject ( int i, QTextEngine * e )
- qreal ascent () const
- qreal descent () const
- QTextFormat format () const
- int formatIndex () const
- qreal height () const
- bool isValid () const
- QRectF rect () const
- void setAscent ( qreal a )
- void setDescent ( qreal d )
- void setWidth ( qreal w )
- Qt::LayoutDirection textDirection () const
- int textPosition () const
- qreal width () const
[править] Подробное описание
The QTextInlineObject class represents an inline object in a QTextLayout.
This class is only used if the text layout is used to lay out parts of a QTextDocument.
The inline object has various attributes that can be set, for example using, setWidth(), setAscent(), and setDescent(). The rectangle it occupies is given by rect(), and its direction by isRightToLeft(). Its position in the text layout is given by at(), and its format is given by format().
[править] Описание функций-членов
[править] QTextInlineObject::QTextInlineObject ( int i, QTextEngine * e )
Creates a new inline object for the item at position i in the text engine e.
[править] qreal QTextInlineObject::ascent () const
Returns the inline object's ascent.
See also setAscent(), descent(), width(), and rect().
[править] qreal QTextInlineObject::descent () const
Returns the inline object's descent.
See also setDescent(), ascent(), width(), and rect().
[править] QTextFormat QTextInlineObject::format () const
Returns format of the inline object within the text layout.
[править] int QTextInlineObject::formatIndex () const
Returns an integer describing the format of the inline object within the text layout.
[править] qreal QTextInlineObject::height () const
Returns the inline object's total height. This is equal to ascent() + descent() + 1.
See also ascent(), descent(), width(), and rect().
[править] bool QTextInlineObject::isValid () const
Returns true if this inline object is valid; otherwise returns false.
[править] QRectF QTextInlineObject::rect () const
Returns the inline object's rectangle.
See also ascent(), descent(), and width().
[править] void QTextInlineObject::setAscent ( qreal a )
Sets the inline object's ascent to a.
See also ascent(), setDescent(), width(), and rect().
[править] void QTextInlineObject::setDescent ( qreal d )
Sets the inline object's decent to d.
See also descent(), setAscent(), width(), and rect().
[править] void QTextInlineObject::setWidth ( qreal w )
Sets the inline object's width to w.
See also width(), ascent(), descent(), and rect().
[править] Qt::LayoutDirection QTextInlineObject::textDirection () const
Returns if the object should be laid out right-to-left or left-to-right.
[править] int QTextInlineObject::textPosition () const
The position of the inline object within the text layout.
[править] qreal QTextInlineObject::width () const
Returns the inline object's width.
See also setWidth(), ascent(), descent(), and rect().
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|