Doc: Mark new QGlyphRun methods as new in Qt 6.5

Change-Id: I5e977a6c7e5356dcdca245f424abd920403c6a72
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
(cherry picked from commit fbf0c88d04116946c6d9bfd8364a42971874e930)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Kai Köhne 2023-01-10 12:23:45 +01:00 committed by Qt Cherry-pick Bot
parent 0aac98504e
commit 82e2404fd1

View File

@ -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.