qt5base-lts/tests/manual/qglyphruns
Eskil Abrahamsen Blomfeldt 1fe7144a07 Introduce QGlyphRun::stringIndexes()
This introduces a way to trace each entry in the glyph index
array to a specific index in the original text passed to
QTextLayout, as well as a convenience function to access
the original string from the QGlyphRun.

The index information is stored in the logClusters array internally
in Qt, but it contains the inverse information: For each
character in the output string, it contains an index into the
glyph array. In order to get the string indexes for each glyph,
which makes a lot more sense in the context of the QGlyphRun
API, we need to do a little search to construct the data.

To avoid adding unnecessary allocations, we make the new APIs
opt-in. If you do not specify anything, you will only get the
glyph indexes and glyph positions as before. However, you
can now specify exactly which parts of the layout to extract
using an optional flags parameter.

This also adds a manual test which can be very handy to
visualize QTextLayouts and how they are split into QGlyphRuns.

Fixes: QTBUG-103932
Change-Id: Ie4288fff338b9482aba0aba29fc7e1e59fa60900
Reviewed-by: Lars Knoll <lars@knoll.priv.no>
2022-09-29 18:06:40 +02:00
..
CMakeLists.txt Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
controller.cpp Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
controller.h Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
controller.ui Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
glyphruninspector.cpp Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
glyphruninspector.h Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
main.cpp Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
singleglyphrun.cpp Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
singleglyphrun.h Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
singleglyphrun.ui Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
view.cpp Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00
view.h Introduce QGlyphRun::stringIndexes() 2022-09-29 18:06:40 +02:00