diff options
Diffstat (limited to 'doc/xml-sax-features-walkthrough.doc')
-rw-r--r-- | doc/xml-sax-features-walkthrough.doc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/xml-sax-features-walkthrough.doc b/doc/xml-sax-features-walkthrough.doc index 06f929309..f09aeb763 100644 --- a/doc/xml-sax-features-walkthrough.doc +++ b/doc/xml-sax-features-walkthrough.doc @@ -4,7 +4,7 @@ ** ** Copyright (C) 2005-2008 Trolltech ASA. All rights reserved. ** -** This file is part of the Qt GUI Toolkit. +** This file is part of the TQt GUI Toolkit. ** ** This file may be used under the terms of the GNU General ** Public License versions 2.0 or 3.0 as published by the Free @@ -13,7 +13,7 @@ ** Alternatively you may (at your option) use any later version ** of the GNU General Public License if such license has been ** publicly approved by Trolltech ASA (or its successors, if any) -** and the KDE Free Qt Foundation. +** and the KDE Free TQt Foundation. ** ** Please review the following information to ensure GNU General ** Public Licensing requirements will be met: @@ -40,7 +40,7 @@ \ingroup step-by-step-examples -\title Walkthrough: Using SAX2 features with the Qt XML classes +\title Walkthrough: Using SAX2 features with the TQt XML classes This document assumes that you are familiar with \link xml.html#namespaces namespaces \endlink in XML and the concept of a \link xml.html#sax2 SAX2 @@ -48,13 +48,13 @@ parser \endlink. If features of SAX2 readers are new to you please read \link xml.html#sax2Features the feature section \endlink of the SAX2 document. -As a novice to the Qt XML classes it is advisable to have a look at the +As a novice to the TQt XML classes it is advisable to have a look at the \link xml-sax-walkthrough.html tiny SAX2 parser walkthrough \endlink before reading on. This walkthrough covers two topics: First of all it shows how to -set SAX2 features and secondly how to integrate the Qt XML functionality -into a Qt GUI application. +set SAX2 features and secondly how to integrate the TQt XML functionality +into a TQt GUI application. The resulting application allows you to compare the output of the reader depending on how the two features @@ -82,7 +82,7 @@ structureparser.cpp. \endlink \printline main \printuntil QApplication -As usual we then create a Qt application object and hand command line arguments +As usual we then create a TQt application object and hand command line arguments over to it. \printline xmlFile( @@ -103,7 +103,7 @@ and thus influence how the XML data are read. \printline container Now let's think about presenting the output: As described in the -\link xml.html#sax2Features Qt SAX2 documentation \endlink +\link xml.html#sax2Features TQt SAX2 documentation \endlink there are three valid combinations of \e http://xml.org/sax/features/namespace-prefixes and \e http://xml.org/sax/features/namespaces: TRUE/TRUE, TRUE/FALSE and @@ -192,7 +192,7 @@ denoting the reader settings that belong to the above listview. \printline app.setMainWidget \printuntil } -Same procedure as with every Qt GUI program: the grid serves as the +Same procedure as with every TQt GUI program: the grid serves as the main widget of our application and is shown. After that we enter the GUI's event loop. |