How to count and measure the lines in a QTextDocument?
-
In one of my project, I created a QTextDocument which owns a text I need to draw. The text is a word wrapped HTML formatted text, and it should be drawn in a rectangle area, for which I know the width. Its content will also never exceed a paragraph.
The text document is created as follow:
// create and configure the text document to measure QTextDocument textDoc; textDoc.setHtml(text); textDoc.setDocumentMargin(m_TextMargin); textDoc.setDefaultFont(m_Font); textDoc.setDefaultTextOption(m_TextOption); textDoc.setTextWidth(m_Background.GetMessageWidth(size().width()));
and here is a sample text I want to draw:
Ceci est un texte <img src=\"Resources/1f601.svg\" width=\"24\" height=\"24\"> avec <img src=\"Resources/1f970.svg\" width=\"24\" height=\"24\"> une <img src=\"Resources/1f914.svg\" width=\"24\" height=\"24\"> dizaine <img src=\"Resources/1f469-1f3fe.svg\" width=\"24\" height=\"24\"> de <img src=\"Resources/1f3a8.svg\" width=\"24\" height=\"24\"> mots. Pour voir comment la vue réagit.
The images are SVG images get from the qml resources.
In order to perform several operations while the text is drawn, I need to know how many lines will be drawn, after the word wrapping is applied, and the height of any line in the word wrapped text.
I tried to search in the functions provided by the text document, as well as those provided in QTextBLock, QTextFragment and QTextCursor. I tried several approaches like iterate through the chars with a cursor and count the lines, or count each fragments in a block. Unfortunately none of them worked: All the functions always count 1 line, or just fail.
Here are some code sample I already tried, without success:
// FAILS - always return 1 int lineCount = textDoc.lineCount() .... // FAILS - always return 1 int lineCount = textDoc.blockCount() .... // FAILS - return the whole text height, not a particular line height at index int lineHeight = int(textDoc.documentLayout()->blockBoundingRect(textDoc.findBlockByNumber(lineNb)).height()); .... // get the paragraph (there is only 1 paragraph in the item text document QTextBlock textBlock = textDoc.findBlockByLineNumber(lineNb); int blockCount = 0; for (QTextBlock::iterator it = textBlock.begin(); it != textBlock.end(); ++it) { // FAILS - fragments aren't divided by line, e.g an image will generate a fragment QString blockText = it.fragment().text(); ++blockCount; } return blockCount; .... QTextCursor cursor(&textDoc); int lineCount = 0; cursor.movePosition(QTextCursor::Start); // FAILS - movePosition() always return false while (cursor.movePosition(QTextCursor::Down)) ++lineCount;
I cannot figure out what I'm doing wrong, and why all my approaches fail.
So my questions are:
- How can I count the lines contained in my word wrapped document
- How can I measure the height of a line in my word wrapped document
- Are the text document function failing because of the html format? If yes, how should I do to reach my objectives in a such context?
NOTE I know how to measure the whole text height. However, as each line height may be different, I cannot just divide the whole text height by the lines, so this is not an acceptable solution for me.
-
@jeanmilost said:
I seriously suspect a limitation of the QTextDocument class, which become completely broken when a html text is used
There's nothing wrong with QTextDocument. Your example has only one line so naturally things like
textDoc.lineCount()
ortextDoc.blockCount()
will return 1.Text document is kinda virtual representation of the document. It doesn't do line breaking for example. This is done by the text layout. You can get currently used layout via QTextDocument::documentLayout(). QTextDocument has a private implementation of that layout interface.
So, what you want is not the line count of the document but the line count the layout generates when a block is drawn. You can get that with
textBlock.layout()->lineCount()
. Before you do that calltextDoc.documentlayout()
to ensures layout is created. -
@jeanmilost
I believe you need to make use ofQTextLine
, https://doc.qt.io/qt-5/qtextline.html, for what you want. Does https://stackoverflow.com/questions/47038001/get-wrapped-lines-of-qtextedit point you to the approach? (I hope this is good for your HTML, not just plain text...) -
@JonB Thank you for the answer, however I get the exact same result as in all my other approaches. I explicitly tried the splitByLines() function provided in the accepted answer on Stack Overflow, and I get ... 0 lines a result. I debugged the function, all works fine until the line count is get from the text block layout. As for my previous tries the result is always 0, even if the text is clearly split in several lines.
I seriously suspect a limitation of the QTextDocument class, which become completely broken when a html text is used. Am I the only one which is facing a such issue?
-
@jeanmilost said:
I seriously suspect a limitation of the QTextDocument class, which become completely broken when a html text is used
There's nothing wrong with QTextDocument. Your example has only one line so naturally things like
textDoc.lineCount()
ortextDoc.blockCount()
will return 1.Text document is kinda virtual representation of the document. It doesn't do line breaking for example. This is done by the text layout. You can get currently used layout via QTextDocument::documentLayout(). QTextDocument has a private implementation of that layout interface.
So, what you want is not the line count of the document but the line count the layout generates when a block is drawn. You can get that with
textBlock.layout()->lineCount()
. Before you do that calltextDoc.documentlayout()
to ensures layout is created. -
@Chris-Kawa Thank you very much, this worked and was exactly what I needed to resolve my issue. Thank you also for the explanations, clear and precise.