![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\reentrant More...
#include <qtextlayout.h>
Public Types | |
enum | Edge { Leading , Trailing } |
\value Leading \value Trailing More... | |
enum | CursorPosition { CursorBetweenCharacters , CursorOnCharacter } |
\value CursorBetweenCharacters \value CursorOnCharacter More... | |
Public Member Functions | |
QTextLine () | |
Creates an invalid line. | |
bool | isValid () const |
Returns true if this text line is valid; otherwise returns false . | |
QRectF | rect () const |
Returns the line's bounding rectangle. | |
qreal | x () const |
Returns the line's x position. | |
qreal | y () const |
Returns the line's y position. | |
qreal | width () const |
Returns the line's width as specified by the layout() function. | |
qreal | ascent () const |
Returns the line's ascent. | |
qreal | descent () const |
Returns the line's descent. | |
qreal | height () const |
Returns the line's height. | |
qreal | leading () const |
void | setLeadingIncluded (bool included) |
bool | leadingIncluded () const |
qreal | naturalTextWidth () const |
Returns the width of the line that is occupied by text. | |
qreal | horizontalAdvance () const |
QRectF | naturalTextRect () const |
Returns the rectangle covered by the line. | |
qreal | 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. | |
qreal | cursorToX (int cursorPos, Edge edge=Leading) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
int | xToCursor (qreal x, CursorPosition=CursorBetweenCharacters) const |
Converts the x-coordinate x, to the nearest matching cursor position, depending on the cursor position type, cpos. | |
void | setLineWidth (qreal width) |
Lays out the line with the given width. | |
void | setNumColumns (int columns) |
Lays out the line. | |
void | setNumColumns (int columns, qreal alignmentWidth) |
Lays out the line. | |
void | setPosition (const QPointF &pos) |
Moves the line to position pos. | |
QPointF | position () const |
Returns the line's position relative to the text layout's position. | |
int | textStart () const |
Returns the start of the line from the beginning of the string passed to the QTextLayout. | |
int | textLength () const |
Returns the length of the text in the line. | |
int | lineNumber () const |
Returns the position of the line in the text engine. | |
void | draw (QPainter *painter, const QPointF &position) const |
Draws a line on the given painter at the specified position. | |
QList< QGlyphRun > | glyphRuns (int from=-1, int length=-1, QTextLayout::GlyphRunRetrievalFlags flags=QTextLayout::DefaultRetrievalFlags) const |
Returns the glyph indexes and positions for all glyphs in this QTextLine for characters in the range defined by from and length. | |
Friends | |
class | QTextLayout |
class | QTextFragment |
\reentrant
The QTextLine class represents a line of text inside a QTextLayout. \inmodule QtGui
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 190 of file qtextlayout.h.
\value CursorBetweenCharacters \value CursorOnCharacter
Enumerator | |
---|---|
CursorBetweenCharacters | |
CursorOnCharacter |
Definition at line 216 of file qtextlayout.h.
enum QTextLine::Edge |
\value Leading \value Trailing
Enumerator | |
---|---|
Leading | |
Trailing |
Definition at line 212 of file qtextlayout.h.
|
inline |
Creates an invalid line.
Definition at line 193 of file qtextlayout.h.
qreal QTextLine::ascent | ( | ) | const |
Returns the line's ascent.
Definition at line 1501 of file qtextlayout.cpp.
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.
Definition at line 2916 of file qtextlayout.cpp.
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 223 of file qtextlayout.h.
qreal QTextLine::descent | ( | ) | const |
Returns the line's descent.
Definition at line 1511 of file qtextlayout.cpp.
Draws a line on the given painter at the specified position.
Definition at line 2641 of file qtextlayout.cpp.
QList< QGlyphRun > QTextLine::glyphRuns | ( | int | from = -1, |
int | length = -1, | ||
QTextLayout::GlyphRunRetrievalFlags | retrievalFlags = QTextLayout::DefaultRetrievalFlags ) 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().
The retrievalFlags specifies which properties of the QGlyphRun will be retrieved from the layout. To minimize allocations and memory consumption, this should be set to include only the properties that you need to access later.
If from is negative, it will default to textStart(), and if length is negative it will default to the return value of textLength().
Definition at line 2434 of file qtextlayout.cpp.
qreal QTextLine::height | ( | ) | const |
qreal QTextLine::horizontalAdvance | ( | ) | const |
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 1595 of file qtextlayout.cpp.
|
inline |
Returns true
if this text line is valid; otherwise returns false
.
Definition at line 194 of file qtextlayout.h.
qreal QTextLine::leading | ( | ) | const |
bool QTextLine::leadingIncluded | ( | ) | const |
Returns true
if positive leading is included into the line's height; otherwise returns false
.
By default, leading is not included.
Definition at line 1570 of file qtextlayout.cpp.
|
inline |
Returns the position of the line in the text engine.
Definition at line 236 of file qtextlayout.h.
QRectF QTextLine::naturalTextRect | ( | ) | const |
Returns the rectangle covered by the line.
Definition at line 1453 of file qtextlayout.cpp.
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 1580 of file qtextlayout.cpp.
QPointF QTextLine::position | ( | ) | const |
Returns the line's position relative to the text layout's position.
Definition at line 2211 of file qtextlayout.cpp.
QRectF QTextLine::rect | ( | ) | const |
Returns the line's bounding rectangle.
Definition at line 1444 of file qtextlayout.cpp.
void QTextLine::setLeadingIncluded | ( | bool | included | ) |
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.
Definition at line 1554 of file qtextlayout.cpp.
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 1607 of file qtextlayout.cpp.
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 1635 of file qtextlayout.cpp.
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 1652 of file qtextlayout.cpp.
Moves the line to position pos.
Definition at line 2202 of file qtextlayout.cpp.
int QTextLine::textLength | ( | ) | const |
Returns the length of the text in the line.
Definition at line 2237 of file qtextlayout.cpp.
int QTextLine::textStart | ( | ) | const |
Returns the start of the line from the beginning of the string passed to the QTextLayout.
Definition at line 2227 of file qtextlayout.cpp.
qreal QTextLine::width | ( | ) | const |
Returns the line's width as specified by the layout() function.
Definition at line 1490 of file qtextlayout.cpp.
qreal QTextLine::x | ( | ) | const |
Returns the line's x position.
Definition at line 1470 of file qtextlayout.cpp.
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.
Definition at line 3078 of file qtextlayout.cpp.
qreal QTextLine::y | ( | ) | const |
Returns the line's y position.
Definition at line 1480 of file qtextlayout.cpp.
|
friend |
Definition at line 258 of file qtextlayout.h.
|
friend |
Definition at line 257 of file qtextlayout.h.