summaryrefslogtreecommitdiffstats
path: root/examples/xml/outliner
diff options
context:
space:
mode:
Diffstat (limited to 'examples/xml/outliner')
-rw-r--r--examples/xml/outliner/main.cpp22
-rw-r--r--examples/xml/outliner/outliner.doc40
-rw-r--r--examples/xml/outliner/outliner.pro11
-rw-r--r--examples/xml/outliner/outlinetree.cpp103
-rw-r--r--examples/xml/outliner/outlinetree.h30
-rw-r--r--examples/xml/outliner/todos.opml55
6 files changed, 261 insertions, 0 deletions
diff --git a/examples/xml/outliner/main.cpp b/examples/xml/outliner/main.cpp
new file mode 100644
index 0000000..47e3bea
--- /dev/null
+++ b/examples/xml/outliner/main.cpp
@@ -0,0 +1,22 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include <qapplication.h>
+#include "outlinetree.h"
+
+int main( int argc, char **argv )
+{
+ QApplication a( argc, argv );
+
+ OutlineTree outline( "todos.opml" );
+ a.setMainWidget( &outline );
+ outline.show();
+
+ return a.exec();
+}
diff --git a/examples/xml/outliner/outliner.doc b/examples/xml/outliner/outliner.doc
new file mode 100644
index 0000000..c21043d
--- /dev/null
+++ b/examples/xml/outliner/outliner.doc
@@ -0,0 +1,40 @@
+/*
+*/
+
+/*! \page outliner-example.html
+
+ \ingroup xml-examples
+
+ \title Outliner to show use of DOM
+
+ This example presents a small outliner program to show the basic usage of
+ the \link xml.html#dom DOM classes \endlink. The format of the outlines
+ is the OPML format as described in http://www.opml.org/spec.
+
+ This example shows how to load a DOM tree from an XML file and how to
+ traverse it.
+
+ <hr>
+
+ Sample XML file (todos.opml):
+
+ \include xml/outliner/todos.opml
+
+ <hr>
+
+ Header file (outlinetree.h):
+
+ \include xml/outliner/outlinetree.h
+
+ <hr>
+
+ Implementation (outlinetree.cpp):
+
+ \include xml/outliner/outlinetree.cpp
+
+ <hr>
+
+ Main (main.cpp):
+
+ \include xml/outliner/main.cpp
+*/
diff --git a/examples/xml/outliner/outliner.pro b/examples/xml/outliner/outliner.pro
new file mode 100644
index 0000000..1dcdc44
--- /dev/null
+++ b/examples/xml/outliner/outliner.pro
@@ -0,0 +1,11 @@
+TEMPLATE = app
+TARGET = outliner
+
+CONFIG += qt warn_on release
+
+REQUIRES = xml large-config
+
+HEADERS = outlinetree.h
+SOURCES = main.cpp \
+ outlinetree.cpp
+INTERFACES =
diff --git a/examples/xml/outliner/outlinetree.cpp b/examples/xml/outliner/outlinetree.cpp
new file mode 100644
index 0000000..726955b
--- /dev/null
+++ b/examples/xml/outliner/outlinetree.cpp
@@ -0,0 +1,103 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include "outlinetree.h"
+#include <qfile.h>
+#include <qmessagebox.h>
+
+OutlineTree::OutlineTree( const QString fileName, QWidget *parent, const char *name )
+ : QListView( parent, name )
+{
+ // div. configuration of the list view
+ addColumn( "Outlines" );
+ setSorting( -1 );
+ setRootIsDecorated( TRUE );
+
+ // read the XML file and create DOM tree
+ QFile opmlFile( fileName );
+ if ( !opmlFile.open( IO_ReadOnly ) ) {
+ QMessageBox::critical( 0,
+ tr( "Critical Error" ),
+ tr( "Cannot open file %1" ).arg( fileName ) );
+ return;
+ }
+ if ( !domTree.setContent( &opmlFile ) ) {
+ QMessageBox::critical( 0,
+ tr( "Critical Error" ),
+ tr( "Parsing error for file %1" ).arg( fileName ) );
+ opmlFile.close();
+ return;
+ }
+ opmlFile.close();
+
+ // get the header information from the DOM
+ QDomElement root = domTree.documentElement();
+ QDomNode node;
+ node = root.firstChild();
+ while ( !node.isNull() ) {
+ if ( node.isElement() && node.nodeName() == "head" ) {
+ QDomElement header = node.toElement();
+ getHeaderInformation( header );
+ break;
+ }
+ node = node.nextSibling();
+ }
+ // create the tree view out of the DOM
+ node = root.firstChild();
+ while ( !node.isNull() ) {
+ if ( node.isElement() && node.nodeName() == "body" ) {
+ QDomElement body = node.toElement();
+ buildTree( 0, body );
+ break;
+ }
+ node = node.nextSibling();
+ }
+}
+
+OutlineTree::~OutlineTree()
+{
+}
+
+void OutlineTree::getHeaderInformation( const QDomElement &header )
+{
+ // visit all children of the header element and look if you can make
+ // something with it
+ QDomNode node = header.firstChild();
+ while ( !node.isNull() ) {
+ if ( node.isElement() ) {
+ // case for the different header entries
+ if ( node.nodeName() == "title" ) {
+ QDomText textChild = node.firstChild().toText();
+ if ( !textChild.isNull() ) {
+ setColumnText( 0, textChild.nodeValue() );
+ }
+ }
+ }
+ node = node.nextSibling();
+ }
+}
+
+void OutlineTree::buildTree( QListViewItem *parentItem, const QDomElement &parentElement )
+{
+ QListViewItem *thisItem = 0;
+ QDomNode node = parentElement.firstChild();
+ while ( !node.isNull() ) {
+ if ( node.isElement() && node.nodeName() == "outline" ) {
+ // add a new list view item for the outline
+ if ( parentItem == 0 )
+ thisItem = new QListViewItem( this, thisItem );
+ else
+ thisItem = new QListViewItem( parentItem, thisItem );
+ thisItem->setText( 0, node.toElement().attribute( "text" ) );
+ // recursive build of the tree
+ buildTree( thisItem, node.toElement() );
+ }
+ node = node.nextSibling();
+ }
+}
diff --git a/examples/xml/outliner/outlinetree.h b/examples/xml/outliner/outlinetree.h
new file mode 100644
index 0000000..ab2f920
--- /dev/null
+++ b/examples/xml/outliner/outlinetree.h
@@ -0,0 +1,30 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#ifndef OUTLINETREE_H
+#define OUTLINETREE_H
+
+#include <qlistview.h>
+#include <qdom.h>
+
+class OutlineTree : public QListView
+{
+ Q_OBJECT
+
+public:
+ OutlineTree( const QString fileName, QWidget *parent = 0, const char *name = 0 );
+ ~OutlineTree();
+
+private:
+ QDomDocument domTree;
+ void getHeaderInformation( const QDomElement &header );
+ void buildTree( QListViewItem *parentItem, const QDomElement &parentElement );
+};
+
+#endif // OUTLINETREE_H
diff --git a/examples/xml/outliner/todos.opml b/examples/xml/outliner/todos.opml
new file mode 100644
index 0000000..6279390
--- /dev/null
+++ b/examples/xml/outliner/todos.opml
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<opml version="1.0">
+ <head>
+ <title>Todo List</title>
+ <dateCreated>Tue, 31 Oct 2000 17:00:17 CET</dateCreated>
+ <dateModified>Tue, 31 Oct 2000 17:00:17 CET</dateModified>
+ <ownerName>Arthur Dent</ownerName>
+ <ownerEmail>info@trolltech.com</ownerEmail>
+ </head>
+ <body>
+ <outline text="Background">
+ <outline text="This is an example todo list."/>
+ </outline>
+ <outline text="Books to read">
+ <outline text="Science Fiction">
+ <outline text="Philip K. Dick">
+ <outline text="Do Androids Dream of Electical Sheep?"/>
+ <outline text="The Three Stigmata of Palmer Eldritch"/>
+ </outline>
+ <outline text="Robert A. Heinlein">
+ <outline text="Stranger in a Strange Land"/>
+ </outline>
+ <outline text="Isaac Asimov">
+ <outline text="Foundation and Empire"/>
+ </outline>
+ </outline>
+ <outline text="Qt Books (in English)">
+ <outline text="Blanchette &amp; Summerfield: C++ GUI Programming with Qt 3"/>
+ <outline text="Dalheimer: Programming with Qt"/>
+ <outline text="Griffith: KDE 2/Qt Programming Bible"/>
+ <outline text="Hughes: Linux Rapid Application Development"/>
+ <outline text="Solin: Qt Programming in 24 hours"/>
+ <outline text="Ward: Qt 2 Programming for Linux and Windows 2000"/>
+ </outline>
+ </outline>
+ <outline text="Shopping list">
+ <outline text="General">
+ <outline text="Towel"/>
+ <outline text="Hair dryer"/>
+ <outline text="Underpants"/>
+ </outline>
+ <outline text="For Sunday">
+ <outline text="Beef"/>
+ <outline text="Rice"/>
+ <outline text="Carrots"/>
+ <outline text="Beans"/>
+ <outline text="Beer"/>
+ <outline text="Wine"/>
+ <outline text="Orange juice"/>
+ </outline>
+ </outline>
+ <outline text="Write a letter to Ford">
+ </outline>
+ </body>
+</opml>