diff options
Diffstat (limited to 'doc/man/man3/tqxmlnamespacesupport.3qt')
-rw-r--r-- | doc/man/man3/tqxmlnamespacesupport.3qt | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/man/man3/tqxmlnamespacesupport.3qt b/doc/man/man3/tqxmlnamespacesupport.3qt index 30e1a584e..b324ec291 100644 --- a/doc/man/man3/tqxmlnamespacesupport.3qt +++ b/doc/man/man3/tqxmlnamespacesupport.3qt @@ -1,5 +1,5 @@ '\" t -.TH QXmlNamespaceSupport 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQXmlNamespaceSupport 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,19 +7,19 @@ .ad l .nh .SH NAME -QXmlNamespaceSupport \- Helper class for XML readers which want to include namespace support +TQXmlNamespaceSupport \- Helper class for XML readers which want to include namespace support .SH SYNOPSIS All the functions in this class are reentrant when TQt is built with thread support.</p> .PP -\fC#include <ntqxml.h>\fR +\fC#include <tqxml.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQXmlNamespaceSupport\fR ()" +.BI "\fBTQXmlNamespaceSupport\fR ()" .br .ti -1c -.BI "\fB~QXmlNamespaceSupport\fR ()" +.BI "\fB~TQXmlNamespaceSupport\fR ()" .br .ti -1c .BI "void \fBsetPrefix\fR ( const TQString & pre, const TQString & uri )" @@ -53,7 +53,7 @@ All the functions in this class are reentrant when TQt is built with thread supp .br .in -1c .SH DESCRIPTION -The QXmlNamespaceSupport class is a helper class for XML readers which want to include namespace support. +The TQXmlNamespaceSupport class is a helper class for XML readers which want to include namespace support. .PP You can set the prefix for the current namespace with setPrefix(), and get the list of current prefixes (or those for a given URI) with prefixes(). The namespace URI is available from uri(). Use pushContext() to start a new namespace context, and popContext() to return to the previous namespace context. Use splitName() or processName() to split a name into its prefix and local name. .PP @@ -61,23 +61,23 @@ See also the namespace description. .PP See also XML. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QXmlNamespaceSupport::QXmlNamespaceSupport ()" -Constructs a QXmlNamespaceSupport. -.SH "QXmlNamespaceSupport::~QXmlNamespaceSupport ()" -Destroys a QXmlNamespaceSupport. -.SH "void QXmlNamespaceSupport::popContext ()" +.SH "TQXmlNamespaceSupport::TQXmlNamespaceSupport ()" +Constructs a TQXmlNamespaceSupport. +.SH "TQXmlNamespaceSupport::~TQXmlNamespaceSupport ()" +Destroys a TQXmlNamespaceSupport. +.SH "void TQXmlNamespaceSupport::popContext ()" Reverts to the previous namespace context. .PP Normally, you should pop the context at the end of each XML element. After popping the context, all namespace prefix mappings that were previously in force are restored. .PP See also pushContext(). -.SH "TQString QXmlNamespaceSupport::prefix ( const TQString & uri ) const" +.SH "TQString TQXmlNamespaceSupport::prefix ( const TQString & uri ) const" Returns one of the prefixes mapped to the namespace URI \fIuri\fR. .PP If more than one prefix is currently mapped to the same URI, this function makes an arbitrary selection; if you want all of the prefixes, use prefixes() instead. .PP Note: to check for a default prefix, use the uri() function with an argument of "". -.SH "QStringList QXmlNamespaceSupport::prefixes () const" +.SH "QStringList TQXmlNamespaceSupport::prefixes () const" Returns a list of all the prefixes currently declared. .PP If there is a default prefix, this function does not return it in the list; check for the default prefix using uri() with an argument of "". @@ -99,7 +99,7 @@ Note that if you want to iterate over the list, you should iterate over a copy, } .br .fi -.SH "QStringList QXmlNamespaceSupport::prefixes ( const TQString & uri ) const" +.SH "QStringList TQXmlNamespaceSupport::prefixes ( const TQString & uri ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns a list of all prefixes currently declared for the namespace URI \fIuri\fR. @@ -125,7 +125,7 @@ Note that if you want to iterate over the list, you should iterate over a copy, } .br .fi -.SH "void QXmlNamespaceSupport::processName ( const TQString & qname, bool isAttribute, TQString & nsuri, TQString & localname ) const" +.SH "void TQXmlNamespaceSupport::processName ( const TQString & qname, bool isAttribute, TQString & nsuri, TQString & localname ) const" Processes a raw XML 1.0 name in the current context by removing the prefix and looking it up among the prefixes currently declared. .PP \fIqname\fR is the raw XML 1.0 name to be processed. \fIisAttribute\fR is TRUE if the name is an attribute name. @@ -133,29 +133,29 @@ Processes a raw XML 1.0 name in the current context by removing the prefix and l This function stores the namespace URI in \fInsuri\fR (which will be set to TQString::null if the raw name has an undeclared prefix), and stores the local name (without prefix) in \fIlocalname\fR (which will be set to TQString::null if no namespace is in use). .PP Note that attribute names are processed differently than element names: an unprefixed element name gets the default namespace (if any), while an unprefixed element name does not. -.SH "void QXmlNamespaceSupport::pushContext ()" +.SH "void TQXmlNamespaceSupport::pushContext ()" Starts a new namespace context. .PP Normally, you should push a new context at the beginning of each XML element: the new context automatically inherits the declarations of its parent context, and it also keeps track of which declarations were made within this context. .PP See also popContext(). -.SH "void QXmlNamespaceSupport::reset ()" +.SH "void TQXmlNamespaceSupport::reset ()" Resets this namespace support object ready for reuse. -.SH "void QXmlNamespaceSupport::setPrefix ( const TQString & pre, const TQString & uri )" +.SH "void TQXmlNamespaceSupport::setPrefix ( const TQString & pre, const TQString & uri )" This function declares a prefix \fIpre\fR in the current namespace context to be the namespace URI \fIuri\fR. The prefix remains in force until this context is popped, unless it is shadowed in a descendant context. .PP Note that there is an asymmetry in this library. prefix() does not return the default "" prefix, even if you have declared one; to check for a default prefix, you must look it up explicitly using uri(). This asymmetry exists to make it easier to look up prefixes for attribute names, where the default prefix is not allowed. -.SH "void QXmlNamespaceSupport::splitName ( const TQString & qname, TQString & prefix, TQString & localname ) const" +.SH "void TQXmlNamespaceSupport::splitName ( const TQString & qname, TQString & prefix, TQString & localname ) const" Splits the name \fIqname\fR at the ':' and returns the prefix in \fIprefix\fR and the local name in \fIlocalname\fR. .PP See also processName(). -.SH "TQString QXmlNamespaceSupport::uri ( const TQString & prefix ) const" +.SH "TQString TQXmlNamespaceSupport::uri ( const TQString & prefix ) const" Looks up the prefix \fIprefix\fR in the current context and returns the currently-mapped namespace URI. Use the empty string ("") for the default namespace. .SH "SEE ALSO" -.BR http://doc.trolltech.com/qxmlnamespacesupport.html +.BR http://doc.trolltech.com/tqxmlnamespacesupport.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the |