flotrio.blogg.se

Rich text format
Rich text format




rich text format

Implements a plain text layout for QTextDocument Specifies a query for a font used for drawing text Qt provides an extensive collection of classes for parsing, rendering manipulating and editing rich text.Ībstract base class used to implement custom layouts for QTextDocuments Supported HTML Subset lists the HTML tags supported by QTextDocument.Advanced Rich Text Processing examines advanced rich text editing tasks.

rich text format

  • Common Rich Text Editing Tasks examines some common tasks that involve reading or manipulating rich text documents.
  • Document Layouts briefly explains the role of document layouts.
  • The QTextCursor Interface explains how rich text documents can be edited using the cursor-based interface.
  • Rich Text Document Structure outlines the different kinds of elements in a QTextDocument, and describes how they are arranged in a document structure.
  • This document is divided up into chapters for convenient reference: The read-only hierarchical interface is most useful when performing operations such as searching and document export. The main advantage of the cursor-based interface is that the text can be edited using operations that mimic a user's interaction with an editor, without losing the underlying structure of the document.

    rich text format

    The information within a document can be accessed via two complementary interfaces: A cursor-based interface is used for editing, and a read-only hierarchical interface provides a high level overview of the document structure. This enables the developer to create and modify structured rich text documents without having to prepare content in an intermediate markup format. Unlike previous rich text support in Qt, the new classes are centered around the QTextDocument class rather than raw textual information. The Scribe framework provides a set of classes for reading and manipulating structured rich text documents.






    Rich text format