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

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

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

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

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

The QDomText class represents text data in the parsed XML document. More...

 #include <QDomText>

Inherits QDomCharacterData.

Inherited by QDomCDATASection.

Note: All the functions in this class are reentrant.

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

  • 10 открытых функций унаследованных от QDomCharacterData
  • 66 открытых функций унаследованных от QDomNode

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

The QDomText class represents text data in the parsed XML document.

You can split the text in a QDomText object over two QDomText objecs with splitText().

For further information about the Document Object Model see Level 1 and Level 2 Core. For a more general introduction of the DOM implementation see the QDomDocument documentation.


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

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

Constructs an empty QDomText object.

To construct a QDomText with content, use QDomDocument::createTextNode().

[править]
QDomText::QDomText ( const QDomText & x )

Constructs a copy of x.

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().

[править]
QDomNode::NodeType QDomText::nodeType () const

Returns TextNode.

[править]
QDomText QDomText::splitText ( int offset )

Splits this DOM text object into two QDomText objects. This object keeps its first offset characters and the second (newly created) object is inserted into the document tree after this object with the remaining characters.

The function returns the newly created object.

See also QDomNode::normalize().

[править]
QDomText & QDomText::operator= ( const QDomText & x )

Assigns x to this DOM text.

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2