diff options
author | Kai Köhne <[email protected]> | 2023-01-10 12:23:45 +0100 |
---|---|---|
committer | Kai Köhne <[email protected]> | 2023-01-12 10:05:52 +0100 |
commit | fbf0c88d04116946c6d9bfd8364a42971874e930 (patch) | |
tree | 253cf6c95d34a2133aadf02fcef305c13edfcd98 | |
parent | a478d730f896e89fce83483c8b056b47ae973736 (diff) |
Doc: Mark new QGlyphRun methods as new in Qt 6.5
Pick-to: 6.5
Change-Id: I5e977a6c7e5356dcdca245f424abd920403c6a72
Reviewed-by: Eskil Abrahamsen Blomfeldt <[email protected]>
-rw-r--r-- | src/gui/text/qglyphrun.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/text/qglyphrun.cpp b/src/gui/text/qglyphrun.cpp index 389b7403fdb..4252d9e7f14 100644 --- a/src/gui/text/qglyphrun.cpp +++ b/src/gui/text/qglyphrun.cpp @@ -472,6 +472,8 @@ bool QGlyphRun::isEmpty() const } /*! + \since 6.5 + Returns the string indexes corresponding to each glyph index, if the glyph run has been constructed from a string and string indexes have been requested from the layout. In this case, the length of the returned vector will correspond to the length of glyphIndexes(). In other @@ -498,6 +500,8 @@ QList<qsizetype> QGlyphRun::stringIndexes() const } /*! + \since 6.5 + Sets the list of string indexes corresponding to the glyph indexes to \a stringIndexes See stringIndexes() for more details on the conventions of this list. @@ -511,6 +515,8 @@ void QGlyphRun::setStringIndexes(const QList<qsizetype> &stringIndexes) } /*! + \since 6.5 + Returns the string corresponding to the glyph run, if the glyph run has been created from a string and the string has been requested from the layout. @@ -522,6 +528,8 @@ QString QGlyphRun::sourceString() const } /*! + \since 6.5 + Set the string corresponding to the glyph run to \a sourceString. If set, the indexes returned by stringIndexes() should be indexes into this string. |