diff options
author | Timothy Pearson <[email protected]> | 2011-07-10 15:24:15 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-07-10 15:24:15 -0500 |
commit | bd0f3345a938b35ce6a12f6150373b0955b8dd12 (patch) | |
tree | 7a520322212d48ebcb9fbe1087e7fca28b76185c /doc/html/qxmlreader.html | |
download | qt3-bd0f3345a938b35ce6a12f6150373b0955b8dd12.tar.gz qt3-bd0f3345a938b35ce6a12f6150373b0955b8dd12.zip |
Add Qt3 development HEAD version
Diffstat (limited to 'doc/html/qxmlreader.html')
-rw-r--r-- | doc/html/qxmlreader.html | 247 |
1 files changed, 247 insertions, 0 deletions
diff --git a/doc/html/qxmlreader.html b/doc/html/qxmlreader.html new file mode 100644 index 0000000..288b78f --- /dev/null +++ b/doc/html/qxmlreader.html @@ -0,0 +1,247 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/xml/qxml.cpp:2348 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>QXmlReader Class</title> +<style type="text/css"><!-- +fn { margin-left: 1cm; text-indent: -1cm; } +a:link { color: #004faf; text-decoration: none } +a:visited { color: #672967; text-decoration: none } +body { background: #ffffff; color: black; } +--></style> +</head> +<body> + +<table border="0" cellpadding="0" cellspacing="0" width="100%"> +<tr bgcolor="#E5E5E5"> +<td valign=center> + <a href="index.html"> +<font color="#004faf">Home</font></a> + | <a href="classes.html"> +<font color="#004faf">All Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped Classes</font></a> + | <a href="functions.html"> +<font color="#004faf">Functions</font></a> +</td> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>QXmlReader Class Reference<br><small>[<a href="xml.html">XML module</a>]</small></h1> + +<p>The QXmlReader class provides an interface for XML readers (i.e. +parsers). +<a href="#details">More...</a> +<p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when Qt is built with thread support.</p> +<p><tt>#include <<a href="qxml-h.html">qxml.h</a>></tt> +<p>Inherited by <a href="qxmlsimplereader.html">QXmlSimpleReader</a>. +<p><a href="qxmlreader-members.html">List of all member functions.</a> +<h2>Public Members</h2> +<ul> +<li class=fn>virtual bool <a href="#feature"><b>feature</b></a> ( const QString & name, bool * ok = 0 ) const = 0</li> +<li class=fn>virtual void <a href="#setFeature"><b>setFeature</b></a> ( const QString & name, bool value ) = 0</li> +<li class=fn>virtual bool <a href="#hasFeature"><b>hasFeature</b></a> ( const QString & name ) const = 0</li> +<li class=fn>virtual void * <a href="#property"><b>property</b></a> ( const QString & name, bool * ok = 0 ) const = 0</li> +<li class=fn>virtual void <a href="#setProperty"><b>setProperty</b></a> ( const QString & name, void * value ) = 0</li> +<li class=fn>virtual bool <a href="#hasProperty"><b>hasProperty</b></a> ( const QString & name ) const = 0</li> +<li class=fn>virtual void <a href="#setEntityResolver"><b>setEntityResolver</b></a> ( QXmlEntityResolver * handler ) = 0</li> +<li class=fn>virtual QXmlEntityResolver * <a href="#entityResolver"><b>entityResolver</b></a> () const = 0</li> +<li class=fn>virtual void <a href="#setDTDHandler"><b>setDTDHandler</b></a> ( QXmlDTDHandler * handler ) = 0</li> +<li class=fn>virtual QXmlDTDHandler * <a href="#DTDHandler"><b>DTDHandler</b></a> () const = 0</li> +<li class=fn>virtual void <a href="#setContentHandler"><b>setContentHandler</b></a> ( QXmlContentHandler * handler ) = 0</li> +<li class=fn>virtual QXmlContentHandler * <a href="#contentHandler"><b>contentHandler</b></a> () const = 0</li> +<li class=fn>virtual void <a href="#setErrorHandler"><b>setErrorHandler</b></a> ( QXmlErrorHandler * handler ) = 0</li> +<li class=fn>virtual QXmlErrorHandler * <a href="#errorHandler"><b>errorHandler</b></a> () const = 0</li> +<li class=fn>virtual void <a href="#setLexicalHandler"><b>setLexicalHandler</b></a> ( QXmlLexicalHandler * handler ) = 0</li> +<li class=fn>virtual QXmlLexicalHandler * <a href="#lexicalHandler"><b>lexicalHandler</b></a> () const = 0</li> +<li class=fn>virtual void <a href="#setDeclHandler"><b>setDeclHandler</b></a> ( QXmlDeclHandler * handler ) = 0</li> +<li class=fn>virtual QXmlDeclHandler * <a href="#declHandler"><b>declHandler</b></a> () const = 0</li> +<li class=fn>virtual bool parse ( const QXmlInputSource & input ) = 0 <em>(obsolete)</em></li> +<li class=fn>virtual bool <a href="#parse"><b>parse</b></a> ( const QXmlInputSource * input ) = 0</li> +</ul> +<hr><a name="details"></a><h2>Detailed Description</h2> + + + +The QXmlReader class provides an interface for XML readers (i.e. +parsers). + +<p> + +<p> This abstract class provides an interface for all of Qt's XML +readers. Currently there is only one implementation of a reader +included in Qt's XML module: <a href="qxmlsimplereader.html">QXmlSimpleReader</a>. In future releases +there might be more readers with different properties available +(e.g. a validating parser). +<p> The design of the XML classes follows the <a href="http://www.saxproject.org/">SAX2 Java interface</a>, with +the names adapted to fit Qt naming conventions. It should be very +easy for anybody who has worked with SAX2 to get started with the +Qt XML classes. +<p> All readers use the class <a href="qxmlinputsource.html">QXmlInputSource</a> to read the input +document. Since you are normally interested in particular content +in the XML document, the reader reports the content through +special handler classes (<a href="qxmldtdhandler.html">QXmlDTDHandler</a>, <a href="qxmldeclhandler.html">QXmlDeclHandler</a>, +<a href="qxmlcontenthandler.html">QXmlContentHandler</a>, <a href="qxmlentityresolver.html">QXmlEntityResolver</a>, <a href="qxmlerrorhandler.html">QXmlErrorHandler</a> and +<a href="qxmllexicalhandler.html">QXmlLexicalHandler</a>), which you must subclass, if you want to +process the contents. +<p> Since the handler classes only describe interfaces you must +implement all the functions. We provide the <a href="qxmldefaulthandler.html">QXmlDefaultHandler</a> +class to make this easier: it implements a default behaviour (do +nothing) for all functions, so you can subclass it and just +implement the functions you are interested in. +<p> Features and properties of the reader can be set with <a href="#setFeature">setFeature</a>() +and <a href="#setProperty">setProperty</a>() respectively. You can set the reader to use your +own subclasses with <a href="#setEntityResolver">setEntityResolver</a>(), <a href="#setDTDHandler">setDTDHandler</a>(), +<a href="#setContentHandler">setContentHandler</a>(), <a href="#setErrorHandler">setErrorHandler</a>(), <a href="#setLexicalHandler">setLexicalHandler</a>() and +<a href="#setDeclHandler">setDeclHandler</a>(). The parse itself is started with a call to +<a href="#parse">parse</a>(). +<p> <p>See also <a href="qxmlsimplereader.html">QXmlSimpleReader</a> and <a href="xml-tools.html">XML</a>. + +<hr><h2>Member Function Documentation</h2> +<h3 class=fn><a href="qxmldtdhandler.html">QXmlDTDHandler</a> * <a name="DTDHandler"></a>QXmlReader::DTDHandler () const<tt> [pure virtual]</tt> +</h3> + +<p> Returns the DTD handler or 0 if none was set. +<p> <p>See also <a href="#setDTDHandler">setDTDHandler</a>(). + +<h3 class=fn><a href="qxmlcontenthandler.html">QXmlContentHandler</a> * <a name="contentHandler"></a>QXmlReader::contentHandler () const<tt> [pure virtual]</tt> +</h3> + +<p> Returns the content handler or 0 if none was set. +<p> <p>See also <a href="#setContentHandler">setContentHandler</a>(). + +<h3 class=fn><a href="qxmldeclhandler.html">QXmlDeclHandler</a> * <a name="declHandler"></a>QXmlReader::declHandler () const<tt> [pure virtual]</tt> +</h3> + +<p> Returns the declaration handler or 0 if none was set. +<p> <p>See also <a href="#setDeclHandler">setDeclHandler</a>(). + +<h3 class=fn><a href="qxmlentityresolver.html">QXmlEntityResolver</a> * <a name="entityResolver"></a>QXmlReader::entityResolver () const<tt> [pure virtual]</tt> +</h3> + +<p> Returns the entity resolver or 0 if none was set. +<p> <p>See also <a href="#setEntityResolver">setEntityResolver</a>(). + +<h3 class=fn><a href="qxmlerrorhandler.html">QXmlErrorHandler</a> * <a name="errorHandler"></a>QXmlReader::errorHandler () const<tt> [pure virtual]</tt> +</h3> + +<p> Returns the error handler or 0 if none is set. +<p> <p>See also <a href="#setErrorHandler">setErrorHandler</a>(). + +<h3 class=fn>bool <a name="feature"></a>QXmlReader::feature ( const <a href="qstring.html">QString</a> & name, bool * ok = 0 ) const<tt> [pure virtual]</tt> +</h3> + +<p> If the reader has the feature called <em>name</em>, the feature's value +is returned. If no such feature exists the return value is +undefined. +<p> If <em>ok</em> is not 0: <em>*ok</em> is set to TRUE if the reader has the +feature called <em>name</em>; otherwise <em>*ok</em> is set to FALSE. +<p> <p>See also <a href="#setFeature">setFeature</a>() and <a href="#hasFeature">hasFeature</a>(). + +<h3 class=fn>bool <a name="hasFeature"></a>QXmlReader::hasFeature ( const <a href="qstring.html">QString</a> & name ) const<tt> [pure virtual]</tt> +</h3> + +<p> Returns <tt>TRUE</tt> if the reader has the feature called <em>name</em>; +otherwise returns FALSE. +<p> <p>See also <a href="#feature">feature</a>() and <a href="#setFeature">setFeature</a>(). + +<h3 class=fn>bool <a name="hasProperty"></a>QXmlReader::hasProperty ( const <a href="qstring.html">QString</a> & name ) const<tt> [pure virtual]</tt> +</h3> + +<p> Returns TRUE if the reader has the property <em>name</em>; otherwise +returns FALSE. +<p> <p>See also <a href="#property">property</a>() and <a href="#setProperty">setProperty</a>(). + +<h3 class=fn><a href="qxmllexicalhandler.html">QXmlLexicalHandler</a> * <a name="lexicalHandler"></a>QXmlReader::lexicalHandler () const<tt> [pure virtual]</tt> +</h3> + +<p> Returns the lexical handler or 0 if none was set. +<p> <p>See also <a href="#setLexicalHandler">setLexicalHandler</a>(). + +<h3 class=fn>bool <a name="parse"></a>QXmlReader::parse ( const <a href="qxmlinputsource.html">QXmlInputSource</a> * input )<tt> [pure virtual]</tt> +</h3> + +<p> Reads an XML document from <em>input</em> and parses it. Returns TRUE if +the parsing was successful; otherwise returns FALSE. + +<p>Example: <a href="xml-sax-walkthrough.html#x2139">xml/tagreader/tagreader.cpp</a>. +<h3 class=fn>bool <a name="parse-2"></a>QXmlReader::parse ( const <a href="qxmlinputsource.html">QXmlInputSource</a> & input )<tt> [pure virtual]</tt> +</h3> + +<p> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. +<p> +<h3 class=fn>void * <a name="property"></a>QXmlReader::property ( const <a href="qstring.html">QString</a> & name, bool * ok = 0 ) const<tt> [pure virtual]</tt> +</h3> + +<p> If the reader has the property <em>name</em>, this function returns the +value of the property; otherwise the return value is undefined. +<p> If <em>ok</em> is not 0: if the reader has the <em>name</em> property <em>*ok</em> +is set to TRUE; otherwise <em>*ok</em> is set to FALSE. +<p> <p>See also <a href="#setProperty">setProperty</a>() and <a href="#hasProperty">hasProperty</a>(). + +<h3 class=fn>void <a name="setContentHandler"></a>QXmlReader::setContentHandler ( <a href="qxmlcontenthandler.html">QXmlContentHandler</a> * handler )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the content handler to <em>handler</em>. +<p> <p>See also <a href="#contentHandler">contentHandler</a>(). + +<p>Example: <a href="xml-sax-walkthrough.html#x2140">xml/tagreader/tagreader.cpp</a>. +<h3 class=fn>void <a name="setDTDHandler"></a>QXmlReader::setDTDHandler ( <a href="qxmldtdhandler.html">QXmlDTDHandler</a> * handler )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the DTD handler to <em>handler</em>. +<p> <p>See also <a href="#DTDHandler">DTDHandler</a>(). + +<h3 class=fn>void <a name="setDeclHandler"></a>QXmlReader::setDeclHandler ( <a href="qxmldeclhandler.html">QXmlDeclHandler</a> * handler )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the declaration handler to <em>handler</em>. +<p> <p>See also <a href="#declHandler">declHandler</a>(). + +<h3 class=fn>void <a name="setEntityResolver"></a>QXmlReader::setEntityResolver ( <a href="qxmlentityresolver.html">QXmlEntityResolver</a> * handler )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the entity resolver to <em>handler</em>. +<p> <p>See also <a href="#entityResolver">entityResolver</a>(). + +<h3 class=fn>void <a name="setErrorHandler"></a>QXmlReader::setErrorHandler ( <a href="qxmlerrorhandler.html">QXmlErrorHandler</a> * handler )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the error handler to <em>handler</em>. Clears the error handler if +<em>handler</em> is 0. +<p> <p>See also <a href="#errorHandler">errorHandler</a>(). + +<h3 class=fn>void <a name="setFeature"></a>QXmlReader::setFeature ( const <a href="qstring.html">QString</a> & name, bool value )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the feature called <em>name</em> to the given <em>value</em>. If the +reader doesn't have the feature nothing happens. +<p> <p>See also <a href="#feature">feature</a>() and <a href="#hasFeature">hasFeature</a>(). + +<p>Reimplemented in <a href="qxmlsimplereader.html#setFeature">QXmlSimpleReader</a>. +<h3 class=fn>void <a name="setLexicalHandler"></a>QXmlReader::setLexicalHandler ( <a href="qxmllexicalhandler.html">QXmlLexicalHandler</a> * handler )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the lexical handler to <em>handler</em>. +<p> <p>See also <a href="#lexicalHandler">lexicalHandler</a>(). + +<h3 class=fn>void <a name="setProperty"></a>QXmlReader::setProperty ( const <a href="qstring.html">QString</a> & name, void * value )<tt> [pure virtual]</tt> +</h3> + +<p> Sets the property <em>name</em> to <em>value</em>. If the reader doesn't have +the property nothing happens. +<p> <p>See also <a href="#property">property</a>() and <a href="#hasProperty">hasProperty</a>(). + +<!-- eof --> +<hr><p> +This file is part of the <a href="index.html">Qt toolkit</a>. +Copyright © 1995-2007 +<a href="http://www.trolltech.com/">Trolltech</a>. All Rights Reserved.<p><address><hr><div align=center> +<table width=100% cellspacing=0 border=0><tr> +<td>Copyright © 2007 +<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> +<td align=right><div align=right>Qt 3.3.8</div> +</table></div></address></body> +</html> |