qt5base-lts/examples/xml
Friedemann Kleint 3a553507a1 Brush up the DOM bookmarks example
- Use modern string literals (use QStringLiteral instead of
  QLatin1StringView for strings that go into the DOM API).
- Use mime types in the file dialog handling
- Streamline code
- Remove mentions of SAX
- Use per class includes
- Do not use QObject::tr()
- Use the configure system instead of QT_NO... defines
- Fix some doc text typos

Complements 3dd3268ded.

Pick-to: 6.6 6.5
Task-number: QTBUG-111974
Change-Id: If0dc7b61e729d0a71f37743efc9b82e285d3f451
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
2023-06-13 01:51:10 +02:00
..
dombookmarks Brush up the DOM bookmarks example 2023-06-13 01:51:10 +02:00
CMakeLists.txt Move streambookmarks example into corelibe/serialization 2023-03-31 13:26:42 +02:00
README Do not mention Qt XML's SAX API anymore in examples/xml/README 2020-04-24 09:47:41 +02:00
xml.pro Move streambookmarks example into corelibe/serialization 2023-03-31 13:26:42 +02:00

XML parsing and handling is supported through DOM compliant APIs.

For reading or writing XML documents iteratively we recommend
using Qt Core's QXmlStreamReader and QXmlStreamWriter classes.

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