You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/doc/html/outliner-example.html

280 lines
13 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/examples/xml/outliner/outliner.doc:5 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Outliner to show use of DOM</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Outliner to show use of DOM</h1>
<p>
<p> This example presents a small outliner program to show the basic usage of
the <a href="xml.html#dom">DOM classes</a>. The format of the outlines
is the OPML format as described in http://www.opml.org/spec.
<p> This example shows how to load a DOM tree from an XML file and how to
traverse it.
<p> <hr>
<p> Sample XML file (todos.opml):
<p> <pre>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
&lt;opml version="1.0"&gt;
&lt;head&gt;
&lt;title&gt;Todo List&lt;/title&gt;
&lt;dateCreated&gt;Tue, 31 Oct 2000 17:00:17 CET&lt;/dateCreated&gt;
&lt;dateModified&gt;Tue, 31 Oct 2000 17:00:17 CET&lt;/dateModified&gt;
&lt;ownerName&gt;Arthur Dent&lt;/ownerName&gt;
&lt;ownerEmail&gt;info@trolltech.com&lt;/ownerEmail&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;outline text="Background"&gt;
&lt;outline text="This is an example todo list."/&gt;
&lt;/outline&gt;
&lt;outline text="Books to read"&gt;
&lt;outline text="Science Fiction"&gt;
&lt;outline text="Philip K. Dick"&gt;
&lt;outline text="Do Androids Dream of Electical Sheep?"/&gt;
&lt;outline text="The Three Stigmata of Palmer Eldritch"/&gt;
&lt;/outline&gt;
&lt;outline text="Robert A. Heinlein"&gt;
&lt;outline text="Stranger in a Strange Land"/&gt;
&lt;/outline&gt;
&lt;outline text="Isaac Asimov"&gt;
&lt;outline text="Foundation and Empire"/&gt;
&lt;/outline&gt;
&lt;/outline&gt;
&lt;outline text="TQt Books (in English)"&gt;
&lt;outline text="Blanchette &amp;amp; Summerfield: C++ GUI Programming with TQt 3"/&gt;
&lt;outline text="Dalheimer: Programming with TQt"/&gt;
&lt;outline text="Griffith: KDE 2/TQt Programming Bible"/&gt;
&lt;outline text="Hughes: Linux Rapid Application Development"/&gt;
&lt;outline text="Solin: <a href="ntqt.html">TQt</a> Programming in 24 hours"/&gt;
&lt;outline text="Ward: <a href="ntqt.html">TQt</a> 2 Programming for Linux and Windows 2000"/&gt;
&lt;/outline&gt;
&lt;/outline&gt;
&lt;outline text="Shopping list"&gt;
&lt;outline text="General"&gt;
&lt;outline text="Towel"/&gt;
&lt;outline text="Hair dryer"/&gt;
&lt;outline text="Underpants"/&gt;
&lt;/outline&gt;
&lt;outline text="For Sunday"&gt;
&lt;outline text="Beef"/&gt;
&lt;outline text="Rice"/&gt;
&lt;outline text="Carrots"/&gt;
&lt;outline text="Beans"/&gt;
&lt;outline text="Beer"/&gt;
&lt;outline text="Wine"/&gt;
&lt;outline text="Orange juice"/&gt;
&lt;/outline&gt;
&lt;/outline&gt;
&lt;outline text="Write a letter to Ford"&gt;
&lt;/outline&gt;
&lt;/body&gt;
&lt;/opml&gt;
</pre>
<p> <hr>
<p> Header file (outlinetree.h):
<p> <pre>/****************************************************************************
** $Id: qt/outlinetree.h 3.3.8 edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef OUTLINETREE_H
#define OUTLINETREE_H
#include &lt;<a href="qlistview-h.html">ntqlistview.h</a>&gt;
#include &lt;<a href="qdom-h.html">ntqdom.h</a>&gt;
class OutlineTree : public <a href="ntqlistview.html">TQListView</a>
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
OutlineTree( const <a href="ntqstring.html">TQString</a> fileName, TQWidget *parent = 0, const char *name = 0 );
~OutlineTree();
private:
<a href="qdomdocument.html">TQDomDocument</a> domTree;
void getHeaderInformation( const <a href="qdomelement.html">TQDomElement</a> &amp;header );
void buildTree( <a href="qlistviewitem.html">TQListViewItem</a> *parentItem, const <a href="qdomelement.html">TQDomElement</a> &amp;parentElement );
};
#endif // OUTLINETREE_H
</pre>
<p> <hr>
<p> Implementation (outlinetree.cpp):
<p> <pre>/****************************************************************************
** $Id: qt/outlinetree.cpp 3.3.8 edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "outlinetree.h"
#include &lt;<a href="qfile-h.html">ntqfile.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
<a name="f522"></a>OutlineTree::OutlineTree( const <a href="ntqstring.html">TQString</a> fileName, TQWidget *parent, const char *name )
: <a href="ntqlistview.html">TQListView</a>( parent, name )
{
// div. configuration of the list view
<a href="ntqlistview.html#addColumn">addColumn</a>( "Outlines" );
<a href="ntqlistview.html#setSorting">setSorting</a>( -1 );
<a href="ntqlistview.html#setRootIsDecorated">setRootIsDecorated</a>( TRUE );
// read the XML file and create DOM tree
<a href="ntqfile.html">TQFile</a> opmlFile( fileName );
<a name="x1915"></a> if ( !opmlFile.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_ReadOnly</a> ) ) {
<a name="x1917"></a> TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( 0,
<a href="ntqobject.html#tr">tr</a>( "Critical Error" ),
<a href="ntqobject.html#tr">tr</a>( "Cannot open file %1" ).arg( fileName ) );
return;
}
if ( !domTree.setContent( &amp;opmlFile ) ) {
TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( 0,
<a href="ntqobject.html#tr">tr</a>( "Critical Error" ),
<a href="ntqobject.html#tr">tr</a>( "Parsing error for file %1" ).arg( fileName ) );
<a name="x1914"></a> opmlFile.<a href="ntqfile.html#close">close</a>();
return;
}
opmlFile.<a href="ntqfile.html#close">close</a>();
// get the header information from the DOM
<a href="qdomelement.html">TQDomElement</a> root = domTree.documentElement();
<a href="qdomnode.html">TQDomNode</a> node;
<a name="x1907"></a> node = root.<a href="qdomnode.html#firstChild">firstChild</a>();
<a name="x1909"></a> while ( !node.<a href="qdomnode.html#isNull">isNull</a>() ) {
<a name="x1911"></a><a name="x1908"></a> if ( node.<a href="qdomnode.html#isElement">isElement</a>() &amp;&amp; node.<a href="qdomnode.html#nodeName">nodeName</a>() == "head" ) {
<a name="x1913"></a> <a href="qdomelement.html">TQDomElement</a> header = node.<a href="qdomnode.html#toElement">toElement</a>();
getHeaderInformation( header );
break;
}
<a name="x1910"></a> node = node.<a href="qdomnode.html#nextSibling">nextSibling</a>();
}
// create the tree view out of the DOM
node = root.<a href="qdomnode.html#firstChild">firstChild</a>();
while ( !node.<a href="qdomnode.html#isNull">isNull</a>() ) {
if ( node.<a href="qdomnode.html#isElement">isElement</a>() &amp;&amp; node.<a href="qdomnode.html#nodeName">nodeName</a>() == "body" ) {
<a href="qdomelement.html">TQDomElement</a> body = node.<a href="qdomnode.html#toElement">toElement</a>();
buildTree( 0, body );
break;
}
node = node.<a href="qdomnode.html#nextSibling">nextSibling</a>();
}
}
OutlineTree::~OutlineTree()
{
}
void <a name="f523"></a>OutlineTree::getHeaderInformation( const <a href="qdomelement.html">TQDomElement</a> &amp;header )
{
// visit all children of the header element and look if you can make
// something with it
<a href="qdomnode.html">TQDomNode</a> node = header.<a href="qdomnode.html#firstChild">firstChild</a>();
while ( !node.<a href="qdomnode.html#isNull">isNull</a>() ) {
if ( node.<a href="qdomnode.html#isElement">isElement</a>() ) {
// case for the different header entries
if ( node.<a href="qdomnode.html#nodeName">nodeName</a>() == "title" ) {
<a href="qdomtext.html">TQDomText</a> textChild = node.<a href="qdomnode.html#firstChild">firstChild</a>().toText();
if ( !textChild.<a href="qdomnode.html#isNull">isNull</a>() ) {
<a name="x1912"></a> <a href="ntqlistview.html#setColumnText">setColumnText</a>( 0, textChild.<a href="qdomnode.html#nodeValue">nodeValue</a>() );
}
}
}
node = node.<a href="qdomnode.html#nextSibling">nextSibling</a>();
}
}
void <a name="f524"></a>OutlineTree::buildTree( <a href="qlistviewitem.html">TQListViewItem</a> *parentItem, const <a href="qdomelement.html">TQDomElement</a> &amp;parentElement )
{
<a href="qlistviewitem.html">TQListViewItem</a> *thisItem = 0;
<a href="qdomnode.html">TQDomNode</a> node = parentElement.<a href="qdomnode.html#firstChild">firstChild</a>();
while ( !node.<a href="qdomnode.html#isNull">isNull</a>() ) {
if ( node.<a href="qdomnode.html#isElement">isElement</a>() &amp;&amp; node.<a href="qdomnode.html#nodeName">nodeName</a>() == "outline" ) {
// add a new list view item for the outline
if ( parentItem == 0 )
thisItem = new <a href="qlistviewitem.html">TQListViewItem</a>( this, thisItem );
else
thisItem = new <a href="qlistviewitem.html">TQListViewItem</a>( parentItem, thisItem );
<a name="x1916"></a> thisItem-&gt;<a href="qlistviewitem.html#setText">setText</a>( 0, node.<a href="qdomnode.html#toElement">toElement</a>().attribute( "text" ) );
// recursive build of the tree
buildTree( thisItem, node.<a href="qdomnode.html#toElement">toElement</a>() );
}
node = node.<a href="qdomnode.html#nextSibling">nextSibling</a>();
}
}
</pre>
<p> <hr>
<p> Main (main.cpp):
<p> <pre>/****************************************************************************
** $Id: qt/main.cpp 3.3.8 edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include "outlinetree.h"
int main( int argc, char **argv )
{
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
OutlineTree outline( "todos.opml" );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;outline );
<a name="x1920"></a> outline.<a href="ntqwidget.html#show">show</a>();
return a.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>
<p>See also <a href="xml-examples.html">TQt XML Examples</a>.
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>