Details
-
Task
-
Resolution: Done
-
P2: Important
-
None
-
None
-
I56dc0c1c4b575dc06360c135098024d0324d3656
Description
Description
Allow more control over the text layouting process in QML.
Give access to every text line through a hook, this gives the opportunity to position and resize a line as it is being laid out.
It is then possible to lay out the text in columns or around other objects.
line.number (read-only) line.x line.y line.width line.height
The behaviour of the text element (wrapping, sizing) should be preserved if possible.
Example code
Text { id: layout text: "..." width: 200 onLineLaidOut: { if (line.number < 5) { line.x = 100 line.width = line.width - 100 } } }
Make sure onLineLaidOut is not emitted if not connected.
Attachments
Issue Links
- resulted in
-
QTBUG-78277 Add an API to get the natural width of each line in a QML Text element
-
- Closed
-