Qt:Документация 4.3.2/qtextdocument

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QTextDocument Class Reference
[модуль QtGui ]

The QTextDocument class holds formatted text that can be viewed and edited using a QTextEdit. Далее...

 #include <QTextDocument>

Inherits QObject.

[править] Открытые типы

[править] Свойства

  • 1 свойство, унаследованное от QObject

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject

[править] Открытые слоты

  • 1 открытый слот, унаследованный от QObject

[править] Сигналы

  • 1 сигнал, унаследованный от QObject

[править] Защищенные функции

  • 7 защищенных функций, унаследованных от QObject

[править] Дополнительные унаследованные члены

  • 5 статических открытых членов, унаследованных от QObject

[править] Подробное описание

The QTextDocument class holds formatted text that can be viewed and edited using a QTextEdit.

QTextDocument is a container for structured rich text documents, providing support for styled text and various types of document elements, such as lists, tables, frames, and images. They can be created for use in a QTextEdit, or used independently.

Each document element is described by an associated format object. Each format object is treated as a unique object by QTextDocuments, and can be passed to objectForFormat() to obtain the document element that it is applied to.

A QTextDocument can be edited programmatically using a QTextCursor, and its contents can be examined by traversing the document structure. The entire document structure is stored as a hierarchy of document elements beneath the root frame, found with the rootFrame() function. Alternatively, if you just want to iterate over the textual contents of the document you can use begin(), end(), and findBlock() to retrieve text blocks that you can examine and iterate over.

The layout of a document is determined by the documentLayout(); you can create your own QAbstractTextDocumentLayout subclass and set it using setDocumentLayout() if you want to use your own layout logic. The document's title can be obtained by calling the documentTitle() function.

The toPlainText() and toHtml() convenience functions allow you to retrieve the contents of the document as plain text and HTML. The document's text can be searched using the find() functions.

Undo/redo of operations performed on the document can be controlled using the setUndoRedoEnabled() function. The undo/redo system can be controlled by an editor widget through the undo() and redo() slots; the document also provides contentsChanged(), undoAvailable(), and redoAvailable() signals that inform connected editor widgets about the state of the undo/redo system.

See also QTextCursor, QTextEdit, and Rich Text Processing.


[править] Описание типов

[править]
enum QTextDocument::FindFlag
flags QTextDocument::FindFlags

This enum describes the options available to QTextDocument's find function. The options can be OR-red together from the following list:


Константа Значение Описание
QTextDocument::FindBackward 0x00001 Search backwards instead of forwards.
QTextDocument::FindCaseSensitively 0x00002 By default find works case insensitive. Specifying this option changes the behaviour to a case sensitive find operation.
QTextDocument::FindWholeWords 0x00004 Makes find match only complete words.

The FindFlags type is a typedef for QFlags<FindFlag>. It stores an OR combination of FindFlag values.

[править]
enum QTextDocument::MetaInformation

This enum describes the different types of meta information that can be added to a document.


Константа Значение Описание
QTextDocument::DocumentTitle 0 The title of the document.

See also metaInformation() and setMetaInformation().

[править]
enum QTextDocument::ResourceType

This enum describes the types of resources that can be loaded by QTextDocument's loadResource() function.


Константа Значение Описание
QTextDocument::HtmlResource 1 The resource contains HTML.
QTextDocument::ImageResource 2 The resource contains image data. Currently supported data types are QVariant::Pixmap and QVariant::Image. If the corresponding variant is of type QVariant::ByteArray then Qt attempts to load the image using QImage::loadFromData. QVariant::Icon is currently not supported. The icon needs to be converted to one of the supported types first, for example using QIcon::pixmap.
QTextDocument::StyleSheetResource 3 The resource contains CSS.
QTextDocument::UserResource 100 The first available value for user defined resource types.

See also loadResource().


[править] Описание cвойств

[править]
blockCount : const int

Returns the number of text blocks in the document.

The value of this property is undefined in documents with tables or frames.

Это свойство было введено в Qt 4.2.

Функции доступа:

  • int blockCount () const

[править]
defaultFont : QFont

This property holds the default font used to display the document's text.

Функции доступа:

  • QFont defaultFont () const
  • void setDefaultFont ( const QFont & font )

[править]
defaultStyleSheet : QString

The default style sheet is applied to all newly HTML formatted text that is inserted into the document, for example using setHtml() or QTextCursor::insertHtml().

The style sheet needs to be compliant to CSS 2.1 syntax.

Note: Changing the default style sheet does not have any effect to the existing content of the document.

Это свойство было введено в Qt 4.2.

Функции доступа:

  • QString defaultStyleSheet () const
  • void setDefaultStyleSheet ( const QString & sheet )

See also Supported HTML Subset.

[править]
defaultTextOption : QTextOption

This property holds the default text option will be set on all QTextLayouts in the document.

When QTextBlocks are created, the defaultTextOption is set on their QTextLayout. This allows setting global properties for the document such as the default word wrap mode.

Функции доступа:

  • QTextOption defaultTextOption () const
  • void setDefaultTextOption ( const QTextOption & option )

[править]
maximumBlockCount : int

This property holds specifies the limit for blocks in the document.

Specifies the maximum number of blocks the document may have. If there are more blocks in the document that specified with this property blocks are removed from the beginning of the document.

A negative or zero value specifies that the document may contain an unlimited amount of blocks.

The default value is 0.

Note that setting this property will apply the limit immediately to the document contents.

Setting this property also disables the undo redo history.

This property is undefined in documents with tables or frames.

Это свойство было введено в Qt 4.2.

Функции доступа:

  • int maximumBlockCount () const
  • void setMaximumBlockCount ( int maximum )

[править]
modified : bool

This property holds whether the document has been modified by the user.

Функции доступа:

  • bool isModified () const
  • void setModified ( bool m = true )

See also modificationChanged().

[править]
pageSize : QSizeF

This property holds the page size that should be used for laying out the document.

Функции доступа:

  • QSizeF pageSize () const
  • void setPageSize ( const QSizeF & size )

See also modificationChanged().

[править]
size : const QSizeF

Returns the actual size of the document. This is equivalent to documentLayout()->documentSize();

The size of the document can be changed either by setting a text width or setting an entire page size.

Note that the width is always >= pageSize().width().

Это свойство было введено в Qt 4.2.

Функции доступа:

  • QSizeF size () const

See also setTextWidth(), setPageSize(), and idealWidth().

[править]
textWidth : qreal

The text width specifies the preferred width for text in the document. If the text (or content in general) is wider than the specified with it is broken into multiple lines and grows vertically. If the text cannot be broken into multiple lines to fit into the specified text width it will be larger and the size() and the idealWidth() property will reflect that.

If the text width is set to -1 then the text will not be broken into multiple lines unless it is enforced through an explicit line break or a new paragraph.

The default value is -1.

Setting the text width will also set the page height to -1, causing the document to grow or shrink vertically in a continuous way. If you want the document layout to break the text into multiple pages then you have to set the pageSize property instead.

Это свойство было введено в Qt 4.2.

Функции доступа:

  • qreal textWidth () const
  • void setTextWidth ( qreal width )

See also size(), idealWidth(), and pageSize().

[править]
undoRedoEnabled : bool

This property holds whether undo/redo are enabled for this document.

This defaults to true. If disabled, the undo stack is cleared and no items will be added to it.

Функции доступа:

  • bool isUndoRedoEnabled () const
  • void setUndoRedoEnabled ( bool enable )

[править]
useDesignMetrics : bool

Это свойство было введено в Qt 4.1.

Функции доступа:

  • bool useDesignMetrics () const
  • void setUseDesignMetrics ( bool b )

[править] Описание функций-членов

[править]
QTextDocument::QTextDocument ( QObject * parent = 0 )

Constructs an empty QTextDocument with the given parent.

[править]
QTextDocument::QTextDocument ( const QString & text, QObject * parent = 0 )

Constructs a QTextDocument containing the plain (unformatted) text specified, and with the given parent.

[править]
QTextDocument::~QTextDocument ()

Destroys the document.

[править]
void QTextDocument::addResource ( int type, const QUrl & name, const QVariant & resource )

Adds the resource resource to the resource cache, using type and name as identifiers. type should be a value from QTextDocument::ResourceType.

[править]
void QTextDocument::adjustSize ()

Adjusts the document to a reasonable size.

Эта функция была введена в Qt 4.2.

See also idealWidth(), textWidth, and size.

[править]
QVector< QTextFormat> QTextDocument::allFormats () const

Returns a vector of text formats for all the formats used in the document.

[править]
QTextBlock QTextDocument::begin () const

Returns the document's first text block.

[править]
void QTextDocument::blockCountChanged ( int newBlockCount ) [signal]

This signal is emitted when the total number of text blocks in the document changes. The value passed in newBlockCount is the new total.

Эта функция была введена в Qt 4.3.

[править]
void QTextDocument::clear () [virtual]

Clears the document.

[править]
QTextDocument * QTextDocument::clone ( QObject * parent = 0 ) const

Creates a new QTextDocument that is a copy of this text document. parent is the parent of the returned text document.

[править]
void QTextDocument::contentsChange ( int position, int charsRemoved, int charsAdded ) [signal]

This signal is emitted whenever the document's content changes; for example, when text is inserted or deleted, or when formatting is applied.

Information is provided about the position of the character in the document where the change occurred, the number of characters removed (charsRemoved), and the number of characters added (charsAdded).

The signal is emitted before the document's layout manager is notified about the change. This hook allows you to implement syntax highlighting for the document.

See also QAbstractTextDocumentLayout::documentChanged() and contentsChanged().

[править]
void QTextDocument::contentsChanged () [signal]

This signal is emitted whenever the document's content changes; for example, when text is inserted or deleted, or when formatting is applied.

See also contentsChange().

[править]
QTextObject * QTextDocument::createObject ( const QTextFormat & format ) [virtual protected]

Creates and returns a new document object (a QTextObject), based on the given format.

QTextObjects will always get created through this method, so you must reimplement it if you use custom text objects inside your document.

[править]
void QTextDocument::cursorPositionChanged ( const QTextCursor & cursor ) [signal]

This signal is emitted whenever the position of a cursor changed due to an editing operation. The cursor that changed is passed in cursor. If you need a signal when the cursor is moved with the arrow keys you can use the cursorPositionChanged() signal in QTextEdit.

[править]
QAbstractTextDocumentLayout * QTextDocument::documentLayout () const

Returns the document layout for this document.

See also setDocumentLayout().

[править]
void QTextDocument::drawContents ( QPainter * p, const QRectF & rect = QRectF() )

Draws the content of the document with painter p, clipped to rect. If rect is a null rectangle (default) then the document is painted unclipped.

Эта функция была введена в Qt 4.2.

[править]
QTextBlock QTextDocument::end () const

This function returns a block to test for the end of the document while iterating over it.

     for (QTextBlock it = doc->begin(); it != doc->end(); it = it.next())
         cout << it.text().toStdString() << endl;

The block returned is invalid and represents the block after the last block in the document.

[править]
QTextCursor QTextDocument::find ( const QString & subString, const QTextCursor & cursor, FindFlags options = 0 ) const

Finds the next occurrence of the string, subString, in the document. The search starts at the position of the given cursor, and proceeds forwards through the document unless specified otherwise in the search options. The options control the type of search performed.

Returns a cursor with the match selected if subString was found; otherwise returns a null cursor.

If the given cursor has a selection, the search begins after the selection; otherwise it begins at the cursor's position.

By default the search is case-sensitive, and can match text anywhere in the document.

[править]
QTextCursor QTextDocument::find ( const QRegExp & expr, const QTextCursor & cursor, FindFlags options = 0 ) const

Эта перегруженная функция предоставлена для удобства.

Finds the next occurrence, matching the regular expression, expr, in the document. The search starts at the position of the given cursor, and proceeds forwards through the document unless specified otherwise in the search options. The options control the type of search performed. The FindCaseSensitively option is ignored for this overload, use QRegExp::caseSensitivity instead.

Returns a cursor with the match selected if a match was found; otherwise returns a null cursor.

If the given cursor has a selection, the search begins after the selection; otherwise it begins at the cursor's position.

By default the search is case-sensitive, and can match text anywhere in the document.

[править]
QTextCursor QTextDocument::find ( const QString & subString, int position = 0, FindFlags options = 0 ) const

Эта перегруженная функция предоставлена для удобства.

Finds the next occurrence of the string, subString, in the document. The search starts at the given position, and proceeds forwards through the document unless specified otherwise in the search options. The options control the type of search performed.

Returns a cursor with the match selected if subString was found; otherwise returns a null cursor.

If the position is 0 (the default) the search begins from the beginning of the document; otherwise it begins at the specified position.

[править]
QTextCursor QTextDocument::find ( const QRegExp & expr, int position = 0, FindFlags options = 0 ) const

Эта перегруженная функция предоставлена для удобства.

Finds the next occurrence, matching the regular expression, expr, in the document. The search starts at the given position, and proceeds forwards through the document unless specified otherwise in the search options. The options control the type of search performed. The FindCaseSensitively option is ignored for this overload, use QRegExp::caseSensitivity instead.

Returns a cursor with the match selected if a match was found; otherwise returns a null cursor.

If the position is 0 (the default) the search begins from the beginning of the document; otherwise it begins at the specified position.

[править]
QTextBlock QTextDocument::findBlock ( int pos ) const

Returns the text block that contains the pos-th character.

[править]
qreal QTextDocument::idealWidth () const

Returns the ideal width of the text document. The ideal width is the actually used width of the document without optional alignments taken into account. It is always <= size().width().

Эта функция была введена в Qt 4.2.

See also adjustSize() and textWidth.

[править]
bool QTextDocument::isEmpty () const

Returns true if the document is empty; otherwise returns false.

[править]
bool QTextDocument::isRedoAvailable () const

Returns true if redo is available; otherwise returns false.

[править]
bool QTextDocument::isUndoAvailable () const

Returns true if undo is available; otherwise returns false.

[править]
QVariant QTextDocument::loadResource ( int type, const QUrl & name ) [virtual protected]

Loads data of the specified type from the resource with the given name.

This function is called by the rich text engine to request data that isn't directly stored by QTextDocument, but still associated with it. For example, images are referenced indirectly by the name attribute of a QTextImageFormat object.

When called by Qt, type is one of the values of QTextDocument::ResourceType.

If the QTextDocument is a child object of a QTextEdit, QTextBrowser, or a QTextDocument itself then the default implementation tries to retrieve the data from the parent.

[править]
void QTextDocument::markContentsDirty ( int position, int length )

Marks the contents specified by the given position and length as "dirty", informing the document that it needs to be laid out again.

[править]
QString QTextDocument::metaInformation ( MetaInformation info ) const

Returns meta information about the document of the type specified by info.

See also setMetaInformation().

[править]
void QTextDocument::modificationChanged ( bool changed ) [signal]

This signal is emitted whenever the content of the document changes in a way that affects the modification state. If changed is true, the document has been modified; otherwise it is false.

For example, calling setModified(false) on a document and then inserting text causes the signal to get emitted. If you undo that operation, causing the document to return to its original unmodified state, the signal will get emitted again.

[править]
QTextObject * QTextDocument::object ( int objectIndex ) const

Returns the text object associated with the given objectIndex.

[править]
QTextObject * QTextDocument::objectForFormat ( const QTextFormat & f ) const

Returns the text object associated with the format f.

[править]
int QTextDocument::pageCount () const

returns the number of pages in this document.

[править]
void QTextDocument::print ( QPrinter * printer ) const

Prints the document to the given printer. The QPrinter must be set up before being used with this function.

This is only a convenience method to print the whole document to the printer.

If the document is already paginated through a specified height in the pageSize() property it is printed as-is.

If the document is not paginated, like for example a document used in a QTextEdit, then a temporary copy of the document is created and the copy is broken into multiple pages according to the size of the QPrinter's paperRect(). By default a 2 cm margin is set around the document contents. In addition the current page number is printed at the bottom of each page.

Note that QPrinter::Selection is not supported as print range with this function since the selection is a property of QTextCursor. If you have a QTextEdit associated with your QTextDocument then you can use QTextEdit's print() function because QTextEdit has access to the user's selection.

See also QTextEdit::print().

[править]
void QTextDocument::redo ( QTextCursor * cursor )

Redoes the last editing operation on the document if redo is available.

The provided cursor is positioned at the end of the location where the edition operation was redone.

Эта функция была введена в Qt 4.2.

[править]
void QTextDocument::redo () [slot]

Эта перегруженная функция предоставлена для удобства.

Redoes the last editing operation on the document if redo is available.

[править]
void QTextDocument::redoAvailable ( bool available ) [signal]

This signal is emitted whenever redo operations become available (available is true) or unavailable (available is false).

[править]
QVariant QTextDocument::resource ( int type, const QUrl & name ) const

Returns data of the specified type from the resource with the given name.

This function is called by the rich text engine to request data that isn't directly stored by QTextDocument, but still associated with it. For example, images are referenced indirectly by the name attribute of a QTextImageFormat object.

Resources are cached internally in the document. If a resource can not be found in the cache, loadResource is called to try to load the resource. loadResource should then use addResource to add the resource to the cache.

[править]
QTextFrame * QTextDocument::rootFrame () const

Returns the document's root frame.

[править]
void QTextDocument::setDocumentLayout ( QAbstractTextDocumentLayout * layout )

Sets the document to use the given layout. The previous layout is deleted.

Note that when setting a new layout for a QTextEdit you have to create a new QTextDocument first, set the new layout on it and then set the new document on QTextEdit.

See also documentLayout().

[править]
void QTextDocument::setHtml ( const QString & html )

Replaces the entire contents of the document with the given HTML-formatted text in the html string.

The HTML formatting is respected as much as possible; for example, "bold text" will produce text where the first word has a font weight that gives it a bold appearance: "bold text".

Note: It is the responsibility of the caller to make sure that the text is correctly decoded when a QString containing HTML is created and passed to setHtml().

See also setPlainText() and Supported HTML Subset.

[править]
void QTextDocument::setMetaInformation ( MetaInformation info, const QString & string )

Sets the document's meta information of the type specified by info to the given string.

See also metaInformation().

[править]
void QTextDocument::setPlainText ( const QString & text )

Replaces the entire contents of the document with the given plain text.

See also setHtml().

[править]
QString QTextDocument::toHtml ( const QByteArray & encoding = QByteArray() ) const

Returns a string containing an HTML representation of the document.

The encoding parameter specifies the value for the charset attribute in the html header. For example if 'utf-8' is specified then the beginning of the generated html will look like this:

 <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body>...

If no encoding is specified then no such meta information is generated.

If you later on convert the returned html string into a byte array for transmission over a network or when saving to disk you should specify the encoding you're going to use for the conversion to a byte array here.

See also Supported HTML Subset.

[править]
QString QTextDocument::toPlainText () const

Returns the plain text contained in the document. If you want formatting information use a QTextCursor instead.

See also toHtml().

[править]
void QTextDocument::undo ( QTextCursor * cursor )

Undoes the last editing operation on the document if undo is available. The provided cursor is positioned at the end of the location where the edition operation was undone.

See the Qt Undo Framework documentation for details.

Эта функция была введена в Qt 4.2.

See also undoAvailable() and isUndoRedoEnabled().

[править]
void QTextDocument::undo () [slot]

Эта перегруженная функция предоставлена для удобства.

[править]
void QTextDocument::undoAvailable ( bool available ) [signal]

This signal is emitted whenever undo operations become available (available is true) or unavailable (available is false).

See the Qt Undo Framework documentation for details.

See also undo() and isUndoRedoEnabled().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2