Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QXmlFormatter Class Reference

The QXmlFormatter class is an implementation of QXmlSerializer for transforming XQuery output into formatted XML. More...

 #include <QXmlFormatter>

Inherits: QXmlSerializer.

Note: All functions in this class are reentrant.

This class was introduced in Qt 4.4.

Public Functions

QXmlFormatter ( const QXmlQuery & query, QIODevice * outputDevice )
int indentationDepth () const
void setIndentationDepth ( int depth )

Reimplemented Public Functions

virtual void atomicValue ( const QVariant & value )
virtual void attribute ( const QXmlName & name, const QStringRef & value )
virtual void characters ( const QStringRef & value )
virtual void comment ( const QString & value )
virtual void endDocument ()
virtual void endElement ()
virtual void endOfSequence ()
virtual void processingInstruction ( const QXmlName & name, const QString & value )
virtual void startDocument ()
virtual void startElement ( const QXmlName & name )
virtual void startOfSequence ()

Detailed Description

The QXmlFormatter class is an implementation of QXmlSerializer for transforming XQuery output into formatted XML.

QXmlFormatter is a subclass of QXmlSerializer that formats the XML output to make it easier for humans to read.

QXmlSerializer outputs XML without adding unnecessary whitespace. In particular, it does not add newlines and indentation. To make the XML output easier to read, QXmlFormatter adds newlines and indentation by adding, removing, and modifying sequence nodes that only consist of whitespace. It also modifies whitespace in other places where it is not significant; e.g., between attributes and in the document prologue.

For example, where the base class QXmlSerializer would output this:

 <a><b/><c/><p>Some Text</p></a>

QXmlFormatter outputs this:

 <a>
    <b/>
    <c/>
    <p>Some Text</p>
 </a>

If you just want to serialize your XML in a human-readable format, use QXmlFormatter as it is. The default indentation level is 4 spaces, but you can set your own indentation value setIndentationDepth().

The newlines and indentation added by QXmlFormatter are suitable for common formats, such as XHTML, SVG, or Docbook, where whitespace is not significant. However, if your XML will be used as input where whitespace is significant, then you must write your own subclass of QXmlSerializer or QAbstractXmlReceiver.

Note that using QXmlFormatter instead of QXmlSerializer will increase computational overhead and document storage size due to the insertion of whitespace.

Note also that the indentation style used by QXmlFormatter remains loosely defined and may change in future versions of Qt. If a specific indentation style is required then either use the base class QXmlSerializer directly, or write your own subclass of QXmlSerializer or QAbstractXmlReceiver. Alternatively, you can subclass QXmlFormatter and reimplement the callbacks there.

 QXmlQuery query;
 query.setQuery("doc('index.html')/html/body/p[1]");

 QXmlFormatter formatter(query, myOutputDevice);
 formatter.setIndentationDepth(2);
 query.evaluateTo(&formatter);

Member Function Documentation

QXmlFormatter::QXmlFormatter ( const QXmlQuery & query, QIODevice * outputDevice )

Constructs a formatter that uses the name pool and message handler in query, and writes the result to outputDevice as formatted XML.

outputDevice is passed directly to QXmlSerializer's constructor.

See also QXmlSerializer.

void QXmlFormatter::atomicValue ( const QVariant & value ) [virtual]

Reimplemented from QAbstractXmlReceiver::atomicValue().

void QXmlFormatter::attribute ( const QXmlName & name, const QStringRef & value ) [virtual]

Reimplemented from QAbstractXmlReceiver::attribute().

void QXmlFormatter::characters ( const QStringRef & value ) [virtual]

Reimplemented from QAbstractXmlReceiver::characters().

void QXmlFormatter::comment ( const QString & value ) [virtual]

Reimplemented from QAbstractXmlReceiver::comment().

void QXmlFormatter::endDocument () [virtual]

Reimplemented from QAbstractXmlReceiver::endDocument().

void QXmlFormatter::endElement () [virtual]

Reimplemented from QAbstractXmlReceiver::endElement().

void QXmlFormatter::endOfSequence () [virtual]

Reimplemented from QAbstractXmlReceiver::endOfSequence().

int QXmlFormatter::indentationDepth () const

Returns the number of spaces QXmlFormatter will output for each indentation level. The default is four.

See also setIndentationDepth().

void QXmlFormatter::processingInstruction ( const QXmlName & name, const QString & value ) [virtual]

Reimplemented from QAbstractXmlReceiver::processingInstruction().

void QXmlFormatter::setIndentationDepth ( int depth )

Sets depth to be the number of spaces QXmlFormatter will output for level of indentation. The default is four.

See also indentationDepth().

void QXmlFormatter::startDocument () [virtual]

Reimplemented from QAbstractXmlReceiver::startDocument().

void QXmlFormatter::startElement ( const QXmlName & name ) [virtual]

Reimplemented from QAbstractXmlReceiver::startElement().

void QXmlFormatter::startOfSequence () [virtual]

Reimplemented from QAbstractXmlReceiver::startOfSequence().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  2. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  3. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  4. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 12
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
Page suivante

Le Qt Developer Network au hasard

Logo

Compiler l'add-in Qt de Visual Studio

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.7
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web