Importer fixes: - the first list item after a heading doesn't keep the heading font - the first text fragment after a bullet is the bullet text, not a separate paragraph - detect continuation lines and append to the list item text - detect continuation paragraphs and indent them properly - indent nested list items properly - add a test for QTextMarkdownImporter Writer fixes: - after bullet items, continuation lines and paragraphs are indented - indentation of continuations isn't affected by checkboxes - add extra newlines between list items in "loose" lists - avoid writing triple newlines - enhance the test for QTextMarkdownWriter Change-Id: Ib1dda514832f6dc0cdad177aa9a423a7038ac8c6 Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
4.0 KiB
QTextEdit
The QTextEdit widget is an advanced editor that supports formatted rich text. It can be used to display HTML and other rich document formats. Internally, QTextEdit uses the QTextDocument class to describe both the high-level structure of each document and the low-level formatting of paragraphs.
If you are viewing this document in the textedit example, you can edit this document to explore Qt's rich text editing features. We have included some comments in each of the following sections to encourage you to experiment.
Font and Paragraph Styles
QTextEdit supports bold, italic, and strikethrough font styles, and can
display multicolored text. Font families such as Times New Roman and Courier
can also be used directly. If you place the cursor in a region of styled text,
the controls in the tool bars will change to reflect the current style.
Paragraphs can be formatted so that the text is left-aligned, right-aligned, centered, or fully justified.
Try changing the alignment of some text and resize the editor to see how the text layout changes.
Lists
Different kinds of lists can be included in rich text documents. Standard bullet lists can be nested, using different symbols for each level of the list:
- Disc symbols are typically used for top-level list items.
- Circle symbols can be used to distinguish between items in lower-level
lists.
- Square symbols provide a reasonable alternative to discs and circles.
- Circle symbols can be used to distinguish between items in lower-level
lists.
Ordered lists can be created that can be used for tables of contents. Different characters can be used to enumerate items, and we can use both Roman and Arabic numerals in the same list structure:
- Introduction
- Qt Tools
- Qt Assistant
- Qt Designer
- Form Editor
- Component Architecture
- Qt Linguist
The list will automatically be renumbered if you add or remove items. Try adding new sections to the above list or removing existing item to see the numbers change.
Images
Inline images are treated like ordinary ranges of characters in the text editor, so they flow with the surrounding text. Images can also be selected in the same way as text, making it easy to cut, copy, and paste them.
Try to select this image by clicking and dragging over it with the mouse, or use the text cursor to select it by holding down Shift and using the arrow keys. You can then cut or copy it, and paste it into different parts of this document.
Tables
QTextEdit can arrange and format tables, supporting features such as row and column spans, text formatting within cells, and size constraints for columns.
Development Tools | Programming Techniques | Graphical User Interfaces | |
---|---|---|---|
9:00 - 11:00 | Introduction to Qt | ||
11:00 - 13:00 | Using qmake | Object-oriented Programming | Layouts in Qt |
13:00 - 15:00 | Qt Designer Tutorial | Extreme Programming | Writing Custom Styles |
15:00 - 17:00 | Qt Linguist and Internationalization |
Try adding text to the cells in the table and experiment with the alignment of the paragraphs.
Hyperlinks
QTextEdit is designed to support hyperlinks between documents, and this feature is used extensively in Qt Assistant. Hyperlinks are automatically created when an HTML file is imported into an editor. Since the rich text framework supports hyperlinks natively, they can also be created programatically.
Undo and Redo
Full support for undo and redo operations is built into QTextEdit and the underlying rich text framework. Operations on a document can be packaged together to make editing a more comfortable experience for the user.
Try making changes to this document and press Ctrl+Z
to undo them. You can
always recover the original contents of the document.