diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/tqxmlnamespacesupport.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqxmlnamespacesupport.html')
-rw-r--r-- | doc/html/tqxmlnamespacesupport.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/tqxmlnamespacesupport.html b/doc/html/tqxmlnamespacesupport.html index 0d1aaa40a..d903ab85c 100644 --- a/doc/html/tqxmlnamespacesupport.html +++ b/doc/html/tqxmlnamespacesupport.html @@ -87,7 +87,7 @@ element. After popping the context, all namespace prefix mappings that were previously in force are restored. <p> <p>See also <a href="#pushContext">pushContext</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="prefix"></a>TQXmlNamespaceSupport::prefix ( const <a href="ntqstring.html">TQString</a> & uri ) const +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="prefix"></a>TQXmlNamespaceSupport::prefix ( const <a href="tqstring.html">TQString</a> & uri ) const </h3> Returns one of the prefixes mapped to the namespace URI <em>uri</em>. <p> If more than one prefix is currently mapped to the same URI, this @@ -96,7 +96,7 @@ prefixes, use <a href="#prefixes">prefixes</a>() instead. <p> Note: to check for a default prefix, use the <a href="#uri">uri</a>() function with an argument of "". -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="prefixes"></a>TQXmlNamespaceSupport::prefixes () const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="prefixes"></a>TQXmlNamespaceSupport::prefixes () const </h3> Returns a list of all the prefixes currently declared. <p> If there is a default prefix, this function does not return it in @@ -105,7 +105,7 @@ argument of "". <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqstringlist.html">TQStringList</a> list = myXmlNamespaceSupport.prefixes(); + <a href="tqstringlist.html">TQStringList</a> list = myXmlNamespaceSupport.prefixes(); TQStringList::iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); while ( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); @@ -114,7 +114,7 @@ over a copy, e.g. </pre> -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="prefixes-2"></a>TQXmlNamespaceSupport::prefixes ( const <a href="ntqstring.html">TQString</a> & uri ) const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="prefixes-2"></a>TQXmlNamespaceSupport::prefixes ( const <a href="tqstring.html">TQString</a> & uri ) const </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Returns a list of all prefixes currently declared for the @@ -128,7 +128,7 @@ an argument of "". <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqstringlist.html">TQStringList</a> list = myXmlNamespaceSupport.prefixes( "" ); + <a href="tqstringlist.html">TQStringList</a> list = myXmlNamespaceSupport.prefixes( "" ); TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); @@ -137,7 +137,7 @@ over a copy, e.g. </pre> -<h3 class=fn>void <a name="processName"></a>TQXmlNamespaceSupport::processName ( const <a href="ntqstring.html">TQString</a> & qname, bool isAttribute, <a href="ntqstring.html">TQString</a> & nsuri, <a href="ntqstring.html">TQString</a> & localname ) const +<h3 class=fn>void <a name="processName"></a>TQXmlNamespaceSupport::processName ( const <a href="tqstring.html">TQString</a> & qname, bool isAttribute, <a href="tqstring.html">TQString</a> & nsuri, <a href="tqstring.html">TQString</a> & localname ) const </h3> Processes a raw XML 1.0 name in the current context by removing the prefix and looking it up among the prefixes currently @@ -145,7 +145,7 @@ declared. <p> <em>qname</em> is the raw XML 1.0 name to be processed. <em>isAttribute</em> is TRUE if the name is an attribute name. <p> This function stores the namespace URI in <em>nsuri</em> (which will be -set to <a href="ntqstring.html#TQString-null">TQString::null</a> if the raw name has an undeclared prefix), +set to <a href="tqstring.html#TQString-null">TQString::null</a> if the raw name has an undeclared prefix), and stores the local name (without prefix) in <em>localname</em> (which will be set to TQString::null if no namespace is in use). <p> Note that attribute names are processed differently than element @@ -165,7 +165,7 @@ which declarations were made within this context. </h3> Resets this namespace support object ready for reuse. -<h3 class=fn>void <a name="setPrefix"></a>TQXmlNamespaceSupport::setPrefix ( const <a href="ntqstring.html">TQString</a> & pre, const <a href="ntqstring.html">TQString</a> & uri ) +<h3 class=fn>void <a name="setPrefix"></a>TQXmlNamespaceSupport::setPrefix ( const <a href="tqstring.html">TQString</a> & pre, const <a href="tqstring.html">TQString</a> & uri ) </h3> This function declares a prefix <em>pre</em> in the current namespace context to be the namespace URI <em>uri</em>. The prefix remains in @@ -177,12 +177,12 @@ check for a default prefix, you must look it up explicitly using <a href="#uri">uri</a>(). This asymmetry exists to make it easier to look up prefixes for attribute names, where the default prefix is not allowed. -<h3 class=fn>void <a name="splitName"></a>TQXmlNamespaceSupport::splitName ( const <a href="ntqstring.html">TQString</a> & qname, <a href="ntqstring.html">TQString</a> & prefix, <a href="ntqstring.html">TQString</a> & localname ) const +<h3 class=fn>void <a name="splitName"></a>TQXmlNamespaceSupport::splitName ( const <a href="tqstring.html">TQString</a> & qname, <a href="tqstring.html">TQString</a> & prefix, <a href="tqstring.html">TQString</a> & localname ) const </h3> Splits the name <em>qname</em> at the ':' and returns the prefix in <em>prefix</em> and the local name in <em>localname</em>. <p> <p>See also <a href="#processName">processName</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="uri"></a>TQXmlNamespaceSupport::uri ( const <a href="ntqstring.html">TQString</a> & prefix ) const +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="uri"></a>TQXmlNamespaceSupport::uri ( const <a href="tqstring.html">TQString</a> & prefix ) const </h3> Looks up the prefix <em>prefix</em> in the current context and returns the currently-mapped namespace URI. Use the empty string ("") for |