Warning

This section contains snippets that were automatically translated from C++ to Python and may contain errors.

Advanced Rich Text Processing#

Handling Large Files#

Qt does not limit the size of files that are used for text processing. In most cases, this will not present a problem. For especially large files, however, you might experience that your application will become unresponsive or that you will run out of memory. The size of the files you can load depends on your hardware and on Qt’s and your own application’s implementation.

If you are faced with this problem, we recommend that you address the following issues:

  • You should consider breaking up large paragraphs into smaller ones as Qt handles small paragraphs better. You could also insert line breaks at regular intervals, which will look the same as one large paragraph in a QTextEdit.

  • You can reduce the amount of blocks in a QTextDocument with maximumBlockCount() . The document is only as large as the number of blocks as far as QTextEdit is concerned.

  • When adding text to a text edit, it is an advantage to add it in an edit block (see example below). The result is that the text edit does not need to build the entire document structure at once.

We give an example of the latter technique from the list. We assume that the text edit is visible.

textEdit.show()
textCursor.beginEditBlock()
for i in range(0, 1000):
    textCursor.insertBlock()
    textCursor.insertText(paragraphText.at(i))

textCursor.endEditBlock()