The QDictIterator class provides an iterator for QDict collections.
.PP
QDictIterator is implemented as a template class. Define a template instance QDictIterator<X> to create a dictionary iterator that operates on QDict<X> (dictionary of X*).
.PP
The traversal order is arbitrary; when we speak of the "first"," last" and "next" item we are talking in terms of this arbitrary order.
.PP
Multiple iterators may independently traverse the same dictionary. A QDict knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, QDict updates all iterators that are referring to the removed item to point to the next item in the (arbitrary) traversal order.
.PP
Example:
.PP
.nf
.br
QDict<QLineEdit> fields;
.br
fields.insert( "forename", new QLineEdit( this ) );
.br
fields.insert( "surname", new QLineEdit( this ) );
In the example we insert some pointers to line edits into a dictionary, then iterate over the dictionary printing the strings associated with the line edits.
.PP
See also QDict, Collection Classes, and Non-GUI Classes.
Constructs an iterator for \fIdict\fR. The current iterator item is set to point to the first item in the dictionary, \fIdict\fR. First in this context means first in the arbitrary traversal order.
.SH "QDictIterator::~QDictIterator ()"
Destroys the iterator.
.SH "uint QDictIterator::count () const"
Returns the number of items in the dictionary over which the iterator is operating.
.PP
See also isEmpty().
.SH "type * QDictIterator::current () const"
Returns a pointer to the current iterator item's value.
.SH "QString QDictIterator::currentKey () const"
Returns the current iterator item's key.
.SH "bool QDictIterator::isEmpty () const"
Returns TRUE if the dictionary is empty, i.e. count() == 0; otherwise returns FALSE.
.PP
See also count().
.SH "QDictIterator::operator type * () const"
Cast operator. Returns a pointer to the current iterator item. Same as current().
.SH "type * QDictIterator::operator() ()"
Makes the next item current and returns the original current item.
.PP
If the current iterator item was the last item in the dictionary or if it was 0, 0 is returned.
.SH "type * QDictIterator::operator++ ()"
Prefix ++ makes the next item current and returns the new current item.
.PP
If the current iterator item was the last item in the dictionary or if it was 0, 0 is returned.
.SH "type * QDictIterator::toFirst ()"
Resets the iterator, making the first item the first current item. First in this context means first in the arbitrary traversal order. Returns a pointer to this item.
.PP
If the dictionary is empty it sets the current item to 0 and
returns 0.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qdictiterator.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in