qt5base-lts/examples/xml
Friedemann Kleint 8d71fae080 Polish the XML bookmarks examples
- Use Qt 5 connect syntax.
- Streamline code, remove unused members.
- Add a context menu for copying and opening the URLs.
- Add const to XML code.
- In the XML code, show the use of QStringLiteral in static inline
  functions to create strings versus QLatin1String in comparison
  overloads to avoid allocating strings from const char * literals.

Change-Id: Ib5e62ca188e271ffe01996dff3c9ea8e0b60739a
Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
2017-02-17 05:55:19 +00:00
..
dombookmarks Polish the XML bookmarks examples 2017-02-17 05:55:19 +00:00
htmlinfo Merge remote-tracking branch 'origin/5.6' into 5.7 2016-04-07 10:47:20 +02:00
rsslisting Unify license header usage. 2016-03-29 10:20:03 +00:00
saxbookmarks Polish the XML bookmarks examples 2017-02-17 05:55:19 +00:00
streambookmarks Polish the XML bookmarks examples 2017-02-17 05:55:19 +00:00
xmlstreamlint QXmlStream{Reader,Writer} don't need QtXml 2017-01-31 17:54:35 +00:00
README Remove references to demos from docs. 2011-07-05 19:57:54 +02:00
xml.pro Check for network module when building according examples 2013-02-21 07:27:25 +01:00

XML parsing and handling is supported through SAX and DOM compliant APIs.

Qt's SAX compliant classes allow you to parse XML incrementally; the DOM
classes enable more complex document-level operations to be performed on
XML files.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.