diff options
Diffstat (limited to 'doc/html/qdomnode.html')
-rw-r--r-- | doc/html/qdomnode.html | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/html/qdomnode.html b/doc/html/qdomnode.html index cfb31d8f1..176fa04d0 100644 --- a/doc/html/qdomnode.html +++ b/doc/html/qdomnode.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQDomNode class is the base class for all the nodes in a DOM tree. <a href="#details">More...</a> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> -<p><tt>#include <<a href="qdom-h.html">qdom.h</a>></tt> +<p><tt>#include <<a href="qdom-h.html">ntqdom.h</a>></tt> <p>Inherited by <a href="qdomdocumenttype.html">TQDomDocumentType</a>, <a href="qdomdocument.html">TQDomDocument</a>, <a href="qdomdocumentfragment.html">TQDomDocumentFragment</a>, <a href="qdomcharacterdata.html">TQDomCharacterData</a>, <a href="qdomattr.html">TQDomAttr</a>, <a href="qdomelement.html">TQDomElement</a>, <a href="qdomnotation.html">TQDomNotation</a>, <a href="qdomentity.html">TQDomEntity</a>, <a href="qdomentityreference.html">TQDomEntityReference</a>, and <a href="qdomprocessinginstruction.html">TQDomProcessingInstruction</a>. <p><a href="qdomnode-members.html">List of all member functions.</a> <h2>Public Members</h2> @@ -426,7 +426,7 @@ TQProcessingInstruction with <a href="#toProcessingInstruction">toProcessingInst <p> <p>See also <a href="#toProcessingInstruction">toProcessingInstruction</a>(). <p>Reimplemented in <a href="qdomprocessinginstruction.html#isProcessingInstruction">TQDomProcessingInstruction</a>. -<h3 class=fn>bool <a name="isSupported"></a>TQDomNode::isSupported ( const <a href="qstring.html">TQString</a> & feature, const <a href="qstring.html">TQString</a> & version ) const<tt> [virtual]</tt> +<h3 class=fn>bool <a name="isSupported"></a>TQDomNode::isSupported ( const <a href="ntqstring.html">TQString</a> & feature, const <a href="ntqstring.html">TQString</a> & version ) const<tt> [virtual]</tt> </h3> Returns TRUE if the DOM implementation implements the feature <em>feature</em> and this feature is supported by this node in the version <em>version</em>; otherwise returns FALSE. @@ -447,26 +447,26 @@ Returns the last child of the node. If there is no child node, a returned node will also change the node in the document tree. <p> <p>See also <a href="#firstChild">firstChild</a>() and <a href="#childNodes">childNodes</a>(). -<h3 class=fn><a href="qstring.html">TQString</a> <a name="localName"></a>TQDomNode::localName () const<tt> [virtual]</tt> +<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="localName"></a>TQDomNode::localName () const<tt> [virtual]</tt> </h3> If the node uses namespaces, this function returns the local name -of the node; otherwise it returns <a href="qstring.html#TQString-null">TQString::null</a>. +of the node; otherwise it returns <a href="ntqstring.html#TQString-null">TQString::null</a>. <p> Only nodes of type <a href="#NodeType-enum">ElementNode</a> or <a href="#NodeType-enum">AttributeNode</a> can have namespaces. A namespace must have been specified at creation time; it is not possible to add a namespace afterwards. <p> <p>See also <a href="#prefix">prefix</a>(), <a href="#namespaceURI">namespaceURI</a>(), <a href="qdomdocument.html#createElementNS">TQDomDocument::createElementNS</a>(), and <a href="qdomdocument.html#createAttributeNS">TQDomDocument::createAttributeNS</a>(). -<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="namedItem"></a>TQDomNode::namedItem ( const <a href="qstring.html">TQString</a> & name ) const +<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="namedItem"></a>TQDomNode::namedItem ( const <a href="ntqstring.html">TQString</a> & name ) const </h3> Returns the first direct child node for which <a href="#nodeName">nodeName</a>() equals <em>name</em>. <p> If no such direct child exists, a <a href="#isNull">null node</a> is returned. <p> <p>See also <a href="#nodeName">nodeName</a>(). -<h3 class=fn><a href="qstring.html">TQString</a> <a name="namespaceURI"></a>TQDomNode::namespaceURI () const<tt> [virtual]</tt> +<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="namespaceURI"></a>TQDomNode::namespaceURI () const<tt> [virtual]</tt> </h3> -Returns the namespace URI of this node or <a href="qstring.html#TQString-null">TQString::null</a> if the +Returns the namespace URI of this node or <a href="ntqstring.html#TQString-null">TQString::null</a> if the node has no namespace URI. <p> Only nodes of type <a href="#NodeType-enum">ElementNode</a> or <a href="#NodeType-enum">AttributeNode</a> can have @@ -490,7 +490,7 @@ return the node representing the <h2> tag. <p> <p>See also <a href="#previousSibling">previousSibling</a>(). <p>Example: <a href="outliner-example.html#x1910">xml/outliner/outlinetree.cpp</a>. -<h3 class=fn><a href="qstring.html">TQString</a> <a name="nodeName"></a>TQDomNode::nodeName () const<tt> [virtual]</tt> +<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="nodeName"></a>TQDomNode::nodeName () const<tt> [virtual]</tt> </h3> Returns the name of the node. <p> The meaning of the name depends on the subclass: @@ -518,7 +518,7 @@ Returns the type of the node. <p> <p>See also <a href="#toAttr">toAttr</a>(), <a href="#toCDATASection">toCDATASection</a>(), <a href="#toDocumentFragment">toDocumentFragment</a>(), <a href="#toDocument">toDocument</a>(), <a href="#toDocumentType">toDocumentType</a>(), <a href="#toElement">toElement</a>(), <a href="#toEntityReference">toEntityReference</a>(), <a href="#toText">toText</a>(), <a href="#toEntity">toEntity</a>(), <a href="#toNotation">toNotation</a>(), <a href="#toProcessingInstruction">toProcessingInstruction</a>(), <a href="#toCharacterData">toCharacterData</a>(), and <a href="#toComment">toComment</a>(). <p>Reimplemented in <a href="qdomdocumenttype.html#nodeType">TQDomDocumentType</a>, <a href="qdomdocument.html#nodeType">TQDomDocument</a>, <a href="qdomdocumentfragment.html#nodeType">TQDomDocumentFragment</a>, <a href="qdomcharacterdata.html#nodeType">TQDomCharacterData</a>, <a href="qdomattr.html#nodeType">TQDomAttr</a>, <a href="qdomelement.html#nodeType">TQDomElement</a>, <a href="qdomnotation.html#nodeType">TQDomNotation</a>, <a href="qdomentity.html#nodeType">TQDomEntity</a>, <a href="qdomentityreference.html#nodeType">TQDomEntityReference</a>, and <a href="qdomprocessinginstruction.html#nodeType">TQDomProcessingInstruction</a>. -<h3 class=fn><a href="qstring.html">TQString</a> <a name="nodeValue"></a>TQDomNode::nodeValue () const<tt> [virtual]</tt> +<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="nodeValue"></a>TQDomNode::nodeValue () const<tt> [virtual]</tt> </h3> Returns the value of the node. <p> The meaning of the value depends on the subclass: @@ -531,7 +531,7 @@ Returns the value of the node. <tr bgcolor="#f0f0f0"> <td valign="top">TQDomText <td valign="top">The text </table></center> <p> All the other subclasses do not have a node value and will return -<a href="qstring.html#TQString-null">TQString::null</a>. +<a href="ntqstring.html#TQString-null">TQString::null</a>. <p> <p>See also <a href="#setNodeValue">setNodeValue</a>() and <a href="#nodeName">nodeName</a>(). <p>Example: <a href="outliner-example.html#x1912">xml/outliner/outlinetree.cpp</a>. @@ -568,9 +568,9 @@ Returns the document to which this node belongs. Returns the parent node. If this node has no parent, a null node is returned (i.e. a node for which <a href="#isNull">isNull</a>() returns TRUE). -<h3 class=fn><a href="qstring.html">TQString</a> <a name="prefix"></a>TQDomNode::prefix () const<tt> [virtual]</tt> +<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="prefix"></a>TQDomNode::prefix () const<tt> [virtual]</tt> </h3> -Returns the namespace prefix of the node or <a href="qstring.html#TQString-null">TQString::null</a> if the +Returns the namespace prefix of the node or <a href="ntqstring.html#TQString-null">TQString::null</a> if the node has no namespace prefix. <p> Only nodes of type <a href="#NodeType-enum">ElementNode</a> or <a href="#NodeType-enum">AttributeNode</a> can have @@ -620,18 +620,18 @@ replaced by all of the children of the fragment. <p> Returns a new reference to <em>oldChild</em> on success or a <a href="#isNull">null node</a> an failure. <p> <p>See also <a href="#insertBefore">insertBefore</a>(), <a href="#insertAfter">insertAfter</a>(), <a href="#removeChild">removeChild</a>(), and <a href="#appendChild">appendChild</a>(). -<h3 class=fn>void <a name="save"></a>TQDomNode::save ( <a href="qtextstream.html">TQTextStream</a> & str, int indent ) const +<h3 class=fn>void <a name="save"></a>TQDomNode::save ( <a href="ntqtextstream.html">TQTextStream</a> & str, int indent ) const </h3> Writes the XML representation of the node and all its children to the stream <em>str</em>. This function uses <em>indent</em> as the amount of space to indent the node. -<h3 class=fn>void <a name="setNodeValue"></a>TQDomNode::setNodeValue ( const <a href="qstring.html">TQString</a> & v )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setNodeValue"></a>TQDomNode::setNodeValue ( const <a href="ntqstring.html">TQString</a> & v )<tt> [virtual]</tt> </h3> Sets the node's value to <em>v</em>. <p> <p>See also <a href="#nodeValue">nodeValue</a>(). -<h3 class=fn>void <a name="setPrefix"></a>TQDomNode::setPrefix ( const <a href="qstring.html">TQString</a> & pre )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setPrefix"></a>TQDomNode::setPrefix ( const <a href="ntqstring.html">TQString</a> & pre )<tt> [virtual]</tt> </h3> If the node has a namespace prefix, this function changes the namespace prefix of the node to <em>pre</em>. Otherwise this function @@ -722,7 +722,7 @@ the returned object will be <a href="#isNull">null</a>. <p> <p>See also <a href="#isText">isText</a>(). <hr><h2>Related Functions</h2> -<h3 class=fn><a href="qtextstream.html">TQTextStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="qtextstream.html">TQTextStream</a> & str, const <a href="qdomnode.html">TQDomNode</a> & node ) +<h3 class=fn><a href="ntqtextstream.html">TQTextStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqtextstream.html">TQTextStream</a> & str, const <a href="qdomnode.html">TQDomNode</a> & node ) </h3> <p> Writes the XML representation of the node <em>node</em> and all its |