Doc: Mark new QGlyphRun methods as new in Qt 6.5

Pick-to: 6.5
Change-Id: I5e977a6c7e5356dcdca245f424abd920403c6a72
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
bb10
Kai Köhne 2023-01-10 12:23:45 +01:00
parent a478d730f8
commit fbf0c88d04
1 changed files with 8 additions and 0 deletions

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.