Eneboo - Documentación para desarrolladores
Clases | 'defines' | Funciones
Referencia del Archivo src/qt/include/qdom.h
#include "qstring.h"

Ir al código fuente de este archivo.

Clases

class  QDomImplementation
 The QDomImplementation class provides information about the features of the DOM implementation.XMLThis class describes the features that are supported by the DOM implementation. Currently the XML subset of DOM Level 1 and DOM Level 2 Core are supported. Más...
class  QDomNode
 The QDomNode class is the base class for all the nodes in a DOM tree.XMLMany functions in the DOM return a QDomNode. Más...
class  QDomNodeList
 The QDomNodeList class is a list of QDomNode objects.XMLLists can be obtained by QDomDocument::elementsByTagName() and QDomNode::childNodes(). The Document Object Model (DOM) requires these lists to be "live": whenever you change the underlying document, the contents of the list will get updated. Más...
class  QDomDocumentType
 The QDomDocumentType class is the representation of the DTD in the document tree.XMLThe QDomDocumentType class allows read-only access to some of the data structures in the DTD: it can return a map of all entities() and notations(). In addition the function name() returns the name of the document type as specified in the <!DOCTYPE name> tag. This class also provides the publicId(), systemId() and internalSubset() functions. Más...
class  QDomDocument
 The QDomDocument class represents an XML document.XMLThe QDomDocument class represents the entire XML document. Conceptually, it is the root of the document tree, and provides the primary access to the document's data. Más...
class  QDomNamedNodeMap
 The QDomNamedNodeMap class contains a collection of nodes that can be accessed by name.XMLNote that QDomNamedNodeMap does not inherit from QDomNodeList. QDomNamedNodeMaps do not provide any specific node ordering. Although nodes in a QDomNamedNodeMap may be accessed by an ordinal index, this is simply to allow a convenient enumeration of the contents of a QDomNamedNodeMap, and does not imply that the DOM specifies an ordering of the nodes. Más...
class  QDomDocumentFragment
 The QDomDocumentFragment class is a tree of QDomNodes which is not usually a complete QDomDocument.XMLIf you want to do complex tree operations it is useful to have a lightweight class to store nodes and their relations. QDomDocumentFragment stores a subtree of a document which does not necessarily represent a well-formed XML document. Más...
class  QDomCharacterData
 The QDomCharacterData class represents a generic string in the DOM.XMLCharacter data as used in XML specifies a generic data string. More specialized versions of this class are QDomText, QDomComment and QDomCDATASection. Más...
class  QDomAttr
 The QDomAttr class represents one attribute of a QDomElement.XMLFor example, the following piece of XML produces an element with no children, but two attributes: Más...
class  QDomElement
 The QDomElement class represents one element in the DOM tree.XMLElements have a tagName() and zero or more attributes associated with them. The tag name can be changed with setTagName(). Más...
class  QDomText
 The QDomText class represents text data in the parsed XML document.XMLYou can split the text in a QDomText object over two QDomText objecs with splitText(). Más...
class  QDomComment
 The QDomComment class represents an XML comment.XMLA comment in the parsed XML such as this: Más...
class  QDomCDATASection
 The QDomCDATASection class represents an XML CDATA section.XMLCDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA section is the "]]&gt;" string that terminates the CDATA section. CDATA sections cannot be nested. Their primary purpose is for including material such as XML fragments, without needing to escape all the delimiters. Más...
class  QDomNotation
 The QDomNotation class represents an XML notation.XMLA notation either declares, by name, the format of an unparsed entity (see section 4.7 of the XML 1.0 specification), or is used for formal declaration of processing instruction targets (see section 2.6 of the XML 1.0 specification). Más...
class  QDomEntity
 The QDomEntity class represents an XML entity.XMLThis class represents an entity in an XML document, either parsed or unparsed. Note that this models the entity itself not the entity declaration. Más...
class  QDomEntityReference
 The QDomEntityReference class represents an XML entity reference.XMLA QDomEntityReference object may be inserted into the DOM tree when an entity reference is in the source document, or when the user wishes to insert an entity reference. Más...
class  QDomProcessingInstruction
 The QDomProcessingInstruction class represents an XML processing instruction.XMLProcessing instructions are used in XML to keep processor-specific information in the text of the document. Más...

'defines'

#define QM_EXPORT_DOM

Documentación de los 'defines'

#define QM_EXPORT_DOM

Documentación de las funciones

QM_EXPORT_DOM QTextStream& operator<< ( QTextStream ,
const QDomNode  
) [related]
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'