diff options
Diffstat (limited to 'doc/html/qlistviewitemiterator.html')
-rw-r--r-- | doc/html/qlistviewitemiterator.html | 226 |
1 files changed, 226 insertions, 0 deletions
diff --git a/doc/html/qlistviewitemiterator.html b/doc/html/qlistviewitemiterator.html new file mode 100644 index 0000000..2a3efc5 --- /dev/null +++ b/doc/html/qlistviewitemiterator.html @@ -0,0 +1,226 @@ +<!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/src/widgets/qlistview.cpp:7335 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>QListViewItemIterator Class</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 Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped 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>QListViewItemIterator Class Reference</h1> + +<p>The QListViewItemIterator class provides an iterator for collections of QListViewItems. +<a href="#details">More...</a> +<p><tt>#include <<a href="qlistview-h.html">qlistview.h</a>></tt> +<p><a href="qlistviewitemiterator-members.html">List of all member functions.</a> +<h2>Public Members</h2> +<ul> +<li class=fn>enum <a href="#IteratorFlag-enum"><b>IteratorFlag</b></a> { Visible = 0x00000001, Invisible = 0x00000002, Selected = 0x00000004, Unselected = 0x00000008, Selectable = 0x00000010, NotSelectable = 0x00000020, DragEnabled = 0x00000040, DragDisabled = 0x00000080, DropEnabled = 0x00000100, DropDisabled = 0x00000200, Expandable = 0x00000400, NotExpandable = 0x00000800, Checked = 0x00001000, NotChecked = 0x00002000 }</li> +<li class=fn><a href="#QListViewItemIterator"><b>QListViewItemIterator</b></a> ()</li> +<li class=fn><a href="#QListViewItemIterator-2"><b>QListViewItemIterator</b></a> ( QListViewItem * item )</li> +<li class=fn><a href="#QListViewItemIterator-3"><b>QListViewItemIterator</b></a> ( QListViewItem * item, int iteratorFlags )</li> +<li class=fn><a href="#QListViewItemIterator-4"><b>QListViewItemIterator</b></a> ( const QListViewItemIterator & it )</li> +<li class=fn><a href="#QListViewItemIterator-5"><b>QListViewItemIterator</b></a> ( QListView * lv )</li> +<li class=fn><a href="#QListViewItemIterator-6"><b>QListViewItemIterator</b></a> ( QListView * lv, int iteratorFlags )</li> +<li class=fn>QListViewItemIterator & <a href="#operator-eq"><b>operator=</b></a> ( const QListViewItemIterator & it )</li> +<li class=fn><a href="#~QListViewItemIterator"><b>~QListViewItemIterator</b></a> ()</li> +<li class=fn>QListViewItemIterator & <a href="#operator++"><b>operator++</b></a> ()</li> +<li class=fn>const QListViewItemIterator <a href="#operator++-2"><b>operator++</b></a> ( int )</li> +<li class=fn>QListViewItemIterator & <a href="#operator+-eq"><b>operator+=</b></a> ( int j )</li> +<li class=fn>QListViewItemIterator & <a href="#operator--"><b>operator--</b></a> ()</li> +<li class=fn>const QListViewItemIterator <a href="#operator---2"><b>operator--</b></a> ( int )</li> +<li class=fn>QListViewItemIterator & <a href="#operator--eq"><b>operator-=</b></a> ( int j )</li> +<li class=fn>QListViewItem * <a href="#operator*"><b>operator*</b></a> ()</li> +<li class=fn>QListViewItem * <a href="#current"><b>current</b></a> () const</li> +</ul> +<hr><a name="details"></a><h2>Detailed Description</h2> + + +The QListViewItemIterator class provides an iterator for collections of QListViewItems. +<p> +<p> Construct an instance of a QListViewItemIterator, with either a +<a href="qlistview.html">QListView</a>* or a <a href="qlistviewitem.html">QListViewItem</a>* as argument, to operate on the tree +of QListViewItems, starting from the argument. +<p> A QListViewItemIterator iterates over all the items from its +starting point. This means that it always makes the first child of +the current item the new current item. If there is no child, the +next sibling becomes the new current item; and if there is no next +sibling, the next sibling of the parent becomes current. +<p> The following example creates a list of all the items that have +been selected by the user, storing pointers to the items in a +QPtrList: +<pre> + <a href="qptrlist.html">QPtrList</a><QListViewItem> lst; + QListViewItemIterator it( myListView ); + while ( it.<a href="#current">current</a>() ) { + if ( it.<a href="#current">current</a>()->isSelected() ) + lst.<a href="qptrlist.html#append">append</a>( it.<a href="#current">current</a>() ); + ++it; + } + </pre> + +<p> An alternative approach is to use an <a href="#IteratorFlag-enum">IteratorFlag</a>: +<pre> + <a href="qptrlist.html">QPtrList</a><QListViewItem> lst; + QListViewItemIterator it( myListView, QListViewItemIterator::<a href="#IteratorFlag-enum">Selected</a> ); + while ( it.<a href="#current">current</a>() ) { + lst.<a href="qptrlist.html#append">append</a>( it.<a href="#current">current</a>() ); + ++it; + } + </pre> + +<p> A QListViewItemIterator provides a convenient and easy way to +traverse a hierarchical <a href="qlistview.html">QListView</a>. +<p> Multiple QListViewItemIterators can operate on the tree of +QListViewItems. A QListView knows about all iterators operating on +its QListViewItems. So when a <a href="qlistviewitem.html">QListViewItem</a> gets removed all +iterators that point to this item are updated and point to the +following item if possible, otherwise to a valid item before the +current one or to 0. Note however that deleting the parent item of +an item that an iterator points to is not safe. +<p> <p>See also <a href="qlistview.html">QListView</a>, <a href="qlistviewitem.html">QListViewItem</a>, and <a href="advanced.html">Advanced Widgets</a>. + +<hr><h2>Member Type Documentation</h2> +<h3 class=fn><a name="IteratorFlag-enum"></a>QListViewItemIterator::IteratorFlag</h3> + +<p> These flags can be passed to a QListViewItemIterator constructor +(OR-ed together if more than one is used), so that the iterator +will only iterate over items that match the given flags. +<ul> +<li><tt>QListViewItemIterator::Visible</tt> +<li><tt>QListViewItemIterator::Invisible</tt> +<li><tt>QListViewItemIterator::Selected</tt> +<li><tt>QListViewItemIterator::Unselected</tt> +<li><tt>QListViewItemIterator::Selectable</tt> +<li><tt>QListViewItemIterator::NotSelectable</tt> +<li><tt>QListViewItemIterator::DragEnabled</tt> +<li><tt>QListViewItemIterator::DragDisabled</tt> +<li><tt>QListViewItemIterator::DropEnabled</tt> +<li><tt>QListViewItemIterator::DropDisabled</tt> +<li><tt>QListViewItemIterator::Expandable</tt> +<li><tt>QListViewItemIterator::NotExpandable</tt> +<li><tt>QListViewItemIterator::Checked</tt> +<li><tt>QListViewItemIterator::NotChecked</tt> +</ul> +<hr><h2>Member Function Documentation</h2> +<h3 class=fn><a name="QListViewItemIterator"></a>QListViewItemIterator::QListViewItemIterator () +</h3> +Constructs an empty iterator. + +<h3 class=fn><a name="QListViewItemIterator-2"></a>QListViewItemIterator::QListViewItemIterator ( <a href="qlistviewitem.html">QListViewItem</a> * item ) +</h3> +Constructs an iterator for the <a href="qlistview.html">QListView</a> that contains the <em>item</em>. The current iterator item is set to point to the <em>item</em>. + +<h3 class=fn><a name="QListViewItemIterator-3"></a>QListViewItemIterator::QListViewItemIterator ( <a href="qlistviewitem.html">QListViewItem</a> * item, int iteratorFlags ) +</h3> +Constructs an iterator for the <a href="qlistview.html">QListView</a> that contains the <em>item</em> +using the flags <em>iteratorFlags</em>. The current iterator item is set +to point to <em>item</em> or the next matching item if <em>item</em> doesn't +match the flags. +<p> <p>See also <a href="#IteratorFlag-enum">QListViewItemIterator::IteratorFlag</a>. + +<h3 class=fn><a name="QListViewItemIterator-4"></a>QListViewItemIterator::QListViewItemIterator ( const <a href="qlistviewitemiterator.html">QListViewItemIterator</a> & it ) +</h3> +Constructs an iterator for the same <a href="qlistview.html">QListView</a> as <em>it</em>. The +current iterator item is set to point on the current item of <em>it</em>. + +<h3 class=fn><a name="QListViewItemIterator-5"></a>QListViewItemIterator::QListViewItemIterator ( <a href="qlistview.html">QListView</a> * lv ) +</h3> +Constructs an iterator for the <a href="qlistview.html">QListView</a> <em>lv</em>. The current +iterator item is set to point on the first child (<a href="qlistviewitem.html">QListViewItem</a>) +of <em>lv</em>. + +<h3 class=fn><a name="QListViewItemIterator-6"></a>QListViewItemIterator::QListViewItemIterator ( <a href="qlistview.html">QListView</a> * lv, int iteratorFlags ) +</h3> +Constructs an iterator for the <a href="qlistview.html">QListView</a> <em>lv</em> with the flags <em>iteratorFlags</em>. The current iterator item is set to point on the +first child (<a href="qlistviewitem.html">QListViewItem</a>) of <em>lv</em> that matches the flags. +<p> <p>See also <a href="#IteratorFlag-enum">QListViewItemIterator::IteratorFlag</a>. + +<h3 class=fn><a name="~QListViewItemIterator"></a>QListViewItemIterator::~QListViewItemIterator () +</h3> +Destroys the iterator. + +<h3 class=fn><a href="qlistviewitem.html">QListViewItem</a> * <a name="current"></a>QListViewItemIterator::current () const +</h3> +Returns iterator's current item. + +<p>Examples: <a href="addressbook-example.html#x597">addressbook/centralwidget.cpp</a>, <a href="checklists-example.html#x432">checklists/checklists.cpp</a>, and <a href="dirview-example.html#x1694">dirview/dirview.cpp</a>. +<h3 class=fn><a href="qlistviewitem.html">QListViewItem</a> * <a name="operator*"></a>QListViewItemIterator::operator* () +</h3> +Dereference operator. Returns a reference to the current item. The +same as <a href="#current">current</a>(). + +<h3 class=fn><a href="qlistviewitemiterator.html">QListViewItemIterator</a> & <a name="operator++"></a>QListViewItemIterator::operator++ () +</h3> +Prefix ++. Makes the next item the new current item and returns +it. Returns 0 if the current item is the last item or the +<a href="qlistview.html">QListView</a> is 0. + +<h3 class=fn>const <a href="qlistviewitemiterator.html">QListViewItemIterator</a> <a name="operator++-2"></a>QListViewItemIterator::operator++ ( int ) +</h3> +This is an overloaded member function, provided for convenience. It behaves essentially like the above function. +<p> Postfix ++. Makes the next item the new current item and returns +the item that <em>was</em> the current item. + +<h3 class=fn><a href="qlistviewitemiterator.html">QListViewItemIterator</a> & <a name="operator+-eq"></a>QListViewItemIterator::operator+= ( int j ) +</h3> +Sets the current item to the item <em>j</em> positions after the current +item. If that item is beyond the last item, the current item is +set to 0. Returns the current item. + +<h3 class=fn><a href="qlistviewitemiterator.html">QListViewItemIterator</a> & <a name="operator--"></a>QListViewItemIterator::operator-- () +</h3> +Prefix --. Makes the previous item the new current item and +returns it. Returns 0 if the current item is the first item or the +<a href="qlistview.html">QListView</a> is 0. + +<h3 class=fn>const <a href="qlistviewitemiterator.html">QListViewItemIterator</a> <a name="operator---2"></a>QListViewItemIterator::operator-- ( int ) +</h3> +This is an overloaded member function, provided for convenience. It behaves essentially like the above function. +<p> Postfix --. Makes the previous item the new current item and +returns the item that <em>was</em> the current item. + +<h3 class=fn><a href="qlistviewitemiterator.html">QListViewItemIterator</a> & <a name="operator--eq"></a>QListViewItemIterator::operator-= ( int j ) +</h3> +Sets the current item to the item <em>j</em> positions before the +current item. If that item is before the first item, the current +item is set to 0. Returns the current item. + +<h3 class=fn><a href="qlistviewitemiterator.html">QListViewItemIterator</a> & <a name="operator-eq"></a>QListViewItemIterator::operator= ( const <a href="qlistviewitemiterator.html">QListViewItemIterator</a> & it ) +</h3> +Assignment. Makes a copy of <em>it</em> and returns a reference to its +iterator. + +<!-- eof --> +<hr><p> +This file is part of the <a href="index.html">Qt toolkit</a>. +Copyright © 1995-2007 +<a href="http://www.trolltech.com/">Trolltech</a>. All Rights Reserved.<p><address><hr><div align=center> +<table width=100% cellspacing=0 border=0><tr> +<td>Copyright © 2007 +<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> +<td align=right><div align=right>Qt 3.3.8</div> +</table></div></address></body> +</html> |