From 1702a6daff27f5d3e6fdac16962d1828df6ca270 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 May 2024 12:36:05 +0900 Subject: Rename nt* dom and xml related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqxmldtdhandler.html | 108 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 doc/html/tqxmldtdhandler.html (limited to 'doc/html/tqxmldtdhandler.html') diff --git a/doc/html/tqxmldtdhandler.html b/doc/html/tqxmldtdhandler.html new file mode 100644 index 000000000..ae1852b6d --- /dev/null +++ b/doc/html/tqxmldtdhandler.html @@ -0,0 +1,108 @@ + + + + + +TQXmlDTDHandler Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

TQXmlDTDHandler Class Reference
[XML module]

+ +

The TQXmlDTDHandler class provides an interface to report +DTD content of XML data. +More... +

All the functions in this class are reentrant when TQt is built with thread support.

+

#include <tqxml.h> +

Inherited by TQXmlDefaultHandler. +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + + +The TQXmlDTDHandler class provides an interface to report +DTD content of XML data. + +

+ +

If an application needs information about notations and unparsed +entities, it can implement this interface and register an instance +with TQXmlReader::setDTDHandler(). +

Note that this interface includes only those DTD events that the +XML recommendation requires processors to report, i.e. notation +and unparsed entity declarations using notationDecl() and +unparsedEntityDecl() respectively. +

See also the Introduction to SAX2. +

See also TQXmlDeclHandler, TQXmlContentHandler, TQXmlEntityResolver, TQXmlErrorHandler, TQXmlLexicalHandler, and XML. + +


Member Function Documentation

+

TQString TQXmlDTDHandler::errorString () [pure virtual] +

+ +

The reader calls this function to get an error string if any of +the handler functions returns FALSE. + +

bool TQXmlDTDHandler::notationDecl ( const TQString & name, const TQString & publicId, const TQString & systemId ) [pure virtual] +

+ +

The reader calls this function when it has parsed a notation +declaration. +

The argument name is the notation name, publicId is the +notation's public identifier and systemId is the notation's +system identifier. +

If this function returns FALSE the reader stops parsing and +reports an error. The reader uses the function errorString() to +get the error message. + +

bool TQXmlDTDHandler::unparsedEntityDecl ( const TQString & name, const TQString & publicId, const TQString & systemId, const TQString & notationName ) [pure virtual] +

+ +

The reader calls this function when it finds an unparsed entity +declaration. +

The argument name is the unparsed entity's name, publicId is +the entity's public identifier, systemId is the entity's system +identifier and notationName is the name of the associated +notation. +

If this function returns FALSE the reader stops parsing and +reports an error. The reader uses the function errorString() to +get the error message. + + +


+This file is part of the TQt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.1