Qt 4.8
|
The QGlyphRun class provides direct access to the internal glyphs in a font. More...
#include <qglyphrun.h>
Public Functions | |
void | clear () |
Clears all data in the QGlyphRun object. More... | |
QVector< quint32 > | glyphIndexes () const |
Returns the glyph indexes for this QGlyphRun object. More... | |
bool | operator!= (const QGlyphRun &other) const |
Compares other to this QGlyphRun object. More... | |
QGlyphRun & | operator= (const QGlyphRun &other) |
Assigns other to this QGlyphRun object. More... | |
bool | operator== (const QGlyphRun &other) const |
Compares other to this QGlyphRun object. More... | |
bool | overline () const |
Returns true if this QGlyphRun should be painted with an overline decoration. More... | |
QVector< QPointF > | positions () const |
Returns the position of the edge of the baseline for each glyph in this set of glyph indexes. More... | |
QGlyphRun () | |
Constructs an empty QGlyphRun object. More... | |
QGlyphRun (const QGlyphRun &other) | |
Constructs a QGlyphRun object which is a copy of other. More... | |
QRawFont | rawFont () const |
Returns the font selected for this QGlyphRun object. More... | |
void | setGlyphIndexes (const QVector< quint32 > &glyphIndexes) |
Set the glyph indexes for this QGlyphRun object to glyphIndexes. More... | |
void | setOverline (bool overline) |
Indicates that this QGlyphRun should be painted with an overline decoration if overline is true. More... | |
void | setPositions (const QVector< QPointF > &positions) |
Sets the positions of the edge of the baseline for each glyph in this set of glyph indexes to positions. More... | |
void | setRawData (const quint32 *glyphIndexArray, const QPointF *glyphPositionArray, int size) |
Sets the glyph indexes and positions of this QGlyphRun to use the first size elements in the arrays glyphIndexArray and glyphPositionArray. More... | |
void | setRawFont (const QRawFont &rawFont) |
Sets the font specified by rawFont to be the font used to look up the glyph indexes. More... | |
void | setStrikeOut (bool strikeOut) |
Indicates that this QGlyphRun should be painted with an strike out decoration if strikeOut is true. More... | |
void | setUnderline (bool underline) |
Indicates that this QGlyphRun should be painted with an underline decoration if underline is true. More... | |
bool | strikeOut () const |
Returns true if this QGlyphRun should be painted with a strike out decoration. More... | |
bool | underline () const |
Returns true if this QGlyphRun should be painted with an underline decoration. More... | |
~QGlyphRun () | |
Destroys the QGlyphRun. More... | |
Private Functions | |
void | detach () |
QGlyphRun | operator+ (const QGlyphRun &other) const |
QGlyphRun & | operator+= (const QGlyphRun &other) |
Properties | |
QExplicitlySharedDataPointer< QGlyphRunPrivate > | d |
Friends | |
class | QGlyphRunPrivate |
class | QTextLine |
The QGlyphRun class provides direct access to the internal glyphs in a font.
When Qt displays a string of text encoded in Unicode, it will first convert the Unicode points into a list of glyph indexes and a list of positions based on one or more fonts. The Unicode representation of the text and the QFont object will in this case serve as a convenient abstraction that hides the details of what actually takes place when displaying the text on-screen. For instance, by the time the text actually reaches the screen, it may be represented by a set of fonts in addition to the one specified by the user, e.g. in case the originally selected font did not support all the writing systems contained in the text.
Under certain circumstances, it can be useful as an application developer to have more low-level control over which glyphs in a specific font are drawn to the screen. This could for instance be the case in applications that use an external font engine and text shaper together with Qt. QGlyphRun provides an interface to the raw data needed to get text on the screen. It contains a list of glyph indexes, a position for each glyph and a font.
It is the user's responsibility to ensure that the selected font actually contains the provided glyph indexes.
QTextLayout::glyphRuns() or QTextFragment::glyphRuns() can be used to convert unicode encoded text into a list of QGlyphRun objects, and QPainter::drawGlyphRun() can be used to draw the glyphs.
Definition at line 59 of file qglyphrun.h.
QGlyphRun::QGlyphRun | ( | ) |
Constructs an empty QGlyphRun object.
Definition at line 94 of file qglyphrun.cpp.
QGlyphRun::QGlyphRun | ( | const QGlyphRun & | other | ) |
Constructs a QGlyphRun object which is a copy of other.
Definition at line 101 of file qglyphrun.cpp.
QGlyphRun::~QGlyphRun | ( | ) |
Destroys the QGlyphRun.
Definition at line 109 of file qglyphrun.cpp.
void QGlyphRun::clear | ( | ) |
Clears all data in the QGlyphRun object.
Definition at line 255 of file qglyphrun.cpp.
|
private |
Definition at line 117 of file qglyphrun.cpp.
Referenced by clear(), setGlyphIndexes(), setOverline(), setPositions(), setRawData(), setRawFont(), setStrikeOut(), and setUnderline().
Returns the glyph indexes for this QGlyphRun object.
Definition at line 202 of file qglyphrun.cpp.
Referenced by QTextLine::glyphs(), and setGlyphIndexes().
|
inline |
Compares other to this QGlyphRun object.
Returns true if any of the list of glyph indexes, the list of positions or the font are different, otherwise returns false.
Definition at line 84 of file qglyphrun.h.
bool QGlyphRun::operator== | ( | const QGlyphRun & | other | ) | const |
Compares other to this QGlyphRun object.
Returns true if the list of glyph indexes, the list of positions and the font are all equal, otherwise returns false.
Definition at line 136 of file qglyphrun.cpp.
bool QGlyphRun::overline | ( | ) | const |
Returns true if this QGlyphRun should be painted with an overline decoration.
Definition at line 292 of file qglyphrun.cpp.
Referenced by QPainter::drawGlyphRun(), and setOverline().
Returns the position of the edge of the baseline for each glyph in this set of glyph indexes.
Definition at line 228 of file qglyphrun.cpp.
Referenced by QTextLine::glyphs(), and setPositions().
QRawFont QGlyphRun::rawFont | ( | ) | const |
Returns the font selected for this QGlyphRun object.
Definition at line 180 of file qglyphrun.cpp.
Referenced by QPainter::drawGlyphRun(), QRawFont::fromFont(), and setRawFont().
Set the glyph indexes for this QGlyphRun object to glyphIndexes.
The glyph indexes must be valid for the selected font.
Definition at line 217 of file qglyphrun.cpp.
Referenced by clear(), QTextLine::glyphs(), and QPainterReplayer::process().
void QGlyphRun::setOverline | ( | bool | overline | ) |
Indicates that this QGlyphRun should be painted with an overline decoration if overline is true.
Otherwise the QGlyphRun should be painted with no overline decoration.
Definition at line 303 of file qglyphrun.cpp.
Referenced by QTextLine::glyphs().
Sets the positions of the edge of the baseline for each glyph in this set of glyph indexes to positions.
Definition at line 244 of file qglyphrun.cpp.
Referenced by clear(), QTextLine::glyphs(), and QPainterReplayer::process().
void QGlyphRun::setRawData | ( | const quint32 * | glyphIndexArray, |
const QPointF * | glyphPositionArray, | ||
int | size | ||
) |
Sets the glyph indexes and positions of this QGlyphRun to use the first size elements in the arrays glyphIndexArray and glyphPositionArray.
The data is not copied. The caller must guarantee that the arrays are not deleted as long as this QGlyphRun and any copies of it exists.
Definition at line 275 of file qglyphrun.cpp.
void QGlyphRun::setRawFont | ( | const QRawFont & | rawFont | ) |
Sets the font specified by rawFont to be the font used to look up the glyph indexes.
Definition at line 191 of file qglyphrun.cpp.
Referenced by QTextLine::glyphs(), and QPainterReplayer::process().
void QGlyphRun::setStrikeOut | ( | bool | strikeOut | ) |
Indicates that this QGlyphRun should be painted with an strike out decoration if strikeOut is true.
Otherwise the QGlyphRun should be painted with no strike out decoration.
Definition at line 353 of file qglyphrun.cpp.
Referenced by QTextLine::glyphs().
void QGlyphRun::setUnderline | ( | bool | underline | ) |
Indicates that this QGlyphRun should be painted with an underline decoration if underline is true.
Otherwise the QGlyphRun should be painted with no underline decoration.
Definition at line 328 of file qglyphrun.cpp.
Referenced by QTextLine::glyphs().
bool QGlyphRun::strikeOut | ( | ) | const |
Returns true if this QGlyphRun should be painted with a strike out decoration.
Definition at line 342 of file qglyphrun.cpp.
Referenced by QPainter::drawGlyphRun(), and setStrikeOut().
bool QGlyphRun::underline | ( | ) | const |
Returns true if this QGlyphRun should be painted with an underline decoration.
Definition at line 317 of file qglyphrun.cpp.
Referenced by QPainter::drawGlyphRun(), and setUnderline().
|
friend |
Definition at line 97 of file qglyphrun.h.
Definition at line 98 of file qglyphrun.h.
|
private |
Definition at line 104 of file qglyphrun.h.
Referenced by clear(), detach(), glyphIndexes(), operator=(), operator==(), overline(), positions(), QGlyphRun(), rawFont(), setGlyphIndexes(), setOverline(), setPositions(), setRawData(), setRawFont(), setStrikeOut(), setUnderline(), strikeOut(), and underline().