QtBase  v6.3.1
Public Types | Public Member Functions | Friends | List of all members
QTextLine Class Reference

The QTextLine class represents a line of text inside a QTextLayout. \inmodule QtGui. More...

#include <qtextlayout.h>

Public Types

enum  Edge { Leading , Trailing }
 
enum  CursorPosition { CursorBetweenCharacters , CursorOnCharacter }
 

Public Member Functions

 QTextLine ()
 
bool isValid () const
 
QRectF rect () const
 
qreal x () const
 
qreal y () const
 
qreal width () const
 
qreal ascent () const
 
qreal descent () const
 
qreal height () const
 
qreal leading () const
 
void setLeadingIncluded (bool included)
 
bool leadingIncluded () const
 
qreal naturalTextWidth () const
 
qreal horizontalAdvance () const
 
QRectF naturalTextRect () const
 
qreal cursorToX (int *cursorPos, Edge edge=Leading) const
 
qreal cursorToX (int cursorPos, Edge edge=Leading) const
 
int xToCursor (qreal x, CursorPosition=CursorBetweenCharacters) const
 
void setLineWidth (qreal width)
 
void setNumColumns (int columns)
 
void setNumColumns (int columns, qreal alignmentWidth)
 
void setPosition (const QPointF &pos)
 
QPointF position () const
 
int textStart () const
 
int textLength () const
 
int lineNumber () const
 
void draw (QPainter *painter, const QPointF &position) const
 
QList< QGlyphRunglyphRuns (int from=-1, int length=-1) const
 

Friends

class QTextLayout
 
class QTextFragment
 

Detailed Description

The QTextLine class represents a line of text inside a QTextLayout. \inmodule QtGui.

\reentrant

A text line is usually created by QTextLayout::createLine().

After being created, the line can be filled using the setLineWidth() or setNumColumns() functions. A line has a number of attributes including the rectangle it occupies, rect(), its coordinates, x() and y(), its textLength(), width() and naturalTextWidth(), and its ascent() and descent() relative to the text. The position of the cursor in terms of the line is available from cursorToX() and its inverse from xToCursor(). A line can be moved with setPosition().

Definition at line 207 of file qtextlayout.h.

Member Enumeration Documentation

◆ CursorPosition

\value CursorBetweenCharacters \value CursorOnCharacter

Enumerator
CursorBetweenCharacters 
CursorOnCharacter 

Definition at line 233 of file qtextlayout.h.

◆ Edge

\value Leading \value Trailing

Enumerator
Leading 
Trailing 

Definition at line 229 of file qtextlayout.h.

Constructor & Destructor Documentation

◆ QTextLine()

QTextLine::QTextLine ( )
inline

Creates an invalid line.

Definition at line 210 of file qtextlayout.h.

Member Function Documentation

◆ ascent()

qreal QTextLine::ascent ( ) const

Returns the line's ascent.

See also
descent(), height()

Definition at line 1466 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ cursorToX() [1/2]

qreal QTextLine::cursorToX ( int *  cursorPos,
Edge  edge = Leading 
) const

Converts the cursor position cursorPos to the corresponding x position inside the line, taking account of the edge.

If cursorPos is not a valid cursor position, the nearest valid cursor position will be used instead, and cursorPos will be modified to point to this valid cursor position.

See also
xToCursor()

Definition at line 2748 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ cursorToX() [2/2]

int QTextLine::cursorToX ( int  cursorPos,
Edge  edge = Leading 
) const
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Definition at line 240 of file qtextlayout.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ descent()

qreal QTextLine::descent ( ) const

Returns the line's descent.

See also
ascent(), height()

Definition at line 1476 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ draw()

void QTextLine::draw ( QPainter painter,
const QPointF position 
) const

Draws a line on the given painter at the specified position.

Definition at line 2502 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ glyphRuns()

QList< QGlyphRun > QTextLine::glyphRuns ( int  from = -1,
int  length = -1 
) const

Returns the glyph indexes and positions for all glyphs in this QTextLine for characters in the range defined by from and length. The from index is relative to the beginning of the text in the containing QTextLayout, and the range must be within the range of QTextLine as given by functions textStart() and textLength().

If from is negative, it will default to textStart(), and if length is negative it will default to the return value of textLength().

Since
5.0
See also
QTextLayout::glyphRuns()

Definition at line 2313 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ height()

qreal QTextLine::height ( ) const

Returns the line's height. This is equal to ascent() + descent() if leading is not included. If leading is included, this equals to ascent() + descent() + leading().

See also
ascent(), descent(), leading(), setLeadingIncluded()

Definition at line 1488 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ horizontalAdvance()

qreal QTextLine::horizontalAdvance ( ) const
Since
4.7 Returns the horizontal advance of the text. The advance of the text is the distance from its position to the next position at which text would naturally be drawn.

By adding the advance to the position of the text line and using this as the position of a second text line, you will be able to position the two lines side-by-side without gaps in-between.

Definition at line 1560 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ isValid()

bool QTextLine::isValid ( ) const
inline

Returns true if this text line is valid; otherwise returns false.

Definition at line 211 of file qtextlayout.h.

Here is the caller graph for this function:

◆ leading()

qreal QTextLine::leading ( ) const
Since
4.6

Returns the line's leading.

See also
ascent(), descent(), height()

Definition at line 1500 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ leadingIncluded()

bool QTextLine::leadingIncluded ( ) const
Since
4.6

Returns true if positive leading is included into the line's height; otherwise returns false.

By default, leading is not included.

See also
setLeadingIncluded()

Definition at line 1535 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ lineNumber()

int QTextLine::lineNumber ( ) const
inline

Returns the position of the line in the text engine.

Definition at line 253 of file qtextlayout.h.

Here is the caller graph for this function:

◆ naturalTextRect()

QRectF QTextLine::naturalTextRect ( ) const

Returns the rectangle covered by the line.

Definition at line 1418 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ naturalTextWidth()

qreal QTextLine::naturalTextWidth ( ) const

Returns the width of the line that is occupied by text. This is always <= to width(), and is the minimum width that could be used by layout() without changing the line break position.

Definition at line 1545 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ position()

QPointF QTextLine::position ( ) const

Returns the line's position relative to the text layout's position.

Definition at line 2159 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ rect()

QRectF QTextLine::rect ( ) const

Returns the line's bounding rectangle.

See also
x(), y(), textLength(), width()

Definition at line 1409 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ setLeadingIncluded()

void QTextLine::setLeadingIncluded ( bool  included)
Since
4.6

Includes positive leading into the line's height if included is true; otherwise does not include leading.

By default, leading is not included.

Note that negative leading is ignored, it must be handled in the code using the text lines by letting the lines overlap.

See also
leadingIncluded()

Definition at line 1519 of file qtextlayout.cpp.

◆ setLineWidth()

void QTextLine::setLineWidth ( qreal  width)

Lays out the line with the given width. The line is filled from its starting position with as many characters as will fit into the line. In case the text cannot be split at the end of the line, it will be filled with additional characters to the next whitespace or end of the text.

Definition at line 1572 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setNumColumns() [1/2]

void QTextLine::setNumColumns ( int  numColumns)

Lays out the line. The line is filled from its starting position with as many characters as are specified by numColumns. In case the text cannot be split until numColumns characters, the line will be filled with as many characters to the next whitespace or end of the text.

Definition at line 1603 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setNumColumns() [2/2]

void QTextLine::setNumColumns ( int  numColumns,
qreal  alignmentWidth 
)

Lays out the line. The line is filled from its starting position with as many characters as are specified by numColumns. In case the text cannot be split until numColumns characters, the line will be filled with as many characters to the next whitespace or end of the text. The provided alignmentWidth is used as reference width for alignment.

Definition at line 1620 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ setPosition()

void QTextLine::setPosition ( const QPointF pos)

Moves the line to position pos.

Definition at line 2150 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ textLength()

int QTextLine::textLength ( ) const

Returns the length of the text in the line.

See also
naturalTextWidth()

Definition at line 2185 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ textStart()

int QTextLine::textStart ( ) const

Returns the start of the line from the beginning of the string passed to the QTextLayout.

Definition at line 2175 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ width()

qreal QTextLine::width ( ) const

Returns the line's width as specified by the layout() function.

See also
naturalTextWidth(), x(), y(), textLength(), rect()

Definition at line 1455 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ x()

qreal QTextLine::x ( ) const

Returns the line's x position.

See also
rect(), y(), textLength(), width()

Definition at line 1435 of file qtextlayout.cpp.

Here is the call graph for this function:

◆ xToCursor()

int QTextLine::xToCursor ( qreal  x,
CursorPosition  cpos = CursorBetweenCharacters 
) const

Converts the x-coordinate x, to the nearest matching cursor position, depending on the cursor position type, cpos. Note that result cursor position includes possible preedit area text.

See also
cursorToX()

Definition at line 2910 of file qtextlayout.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ y()

qreal QTextLine::y ( ) const

Returns the line's y position.

See also
x(), rect(), textLength(), width()

Definition at line 1445 of file qtextlayout.cpp.

Here is the call graph for this function:

Friends And Related Function Documentation

◆ QTextFragment

friend class QTextFragment
friend

Definition at line 268 of file qtextlayout.h.

◆ QTextLayout

friend class QTextLayout
friend

Definition at line 267 of file qtextlayout.h.


The documentation for this class was generated from the following files: