Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

Q3ListViewItemIterator Class Reference

The Q3ListViewItemIterator class provides an iterator for collections of Q3ListViewItems. More...

 #include <Q3ListViewItemIterator>

This class is part of the Qt 3 support library. It is provided to keep old source code working. We strongly advise against using it in new code. See Porting to Qt 4 for more information.

Public Types

enum IteratorFlag { Visible, Invisible, Selected, Unselected, ..., NotChecked }

Public Functions

Q3ListViewItemIterator ()
Q3ListViewItemIterator ( Q3ListViewItem * item )
Q3ListViewItemIterator ( Q3ListViewItem * item, int iteratorFlags )
Q3ListViewItemIterator ( const Q3ListViewItemIterator & it )
Q3ListViewItemIterator ( Q3ListView * lv )
Q3ListViewItemIterator ( Q3ListView * lv, int iteratorFlags )
~Q3ListViewItemIterator ()
Q3ListViewItem * current () const
Q3ListViewItem * operator* ()
Q3ListViewItemIterator & operator++ ()
const Q3ListViewItemIterator operator++ ( int )
Q3ListViewItemIterator & operator+= ( int j )
Q3ListViewItemIterator & operator-- ()
const Q3ListViewItemIterator operator-- ( int )
Q3ListViewItemIterator & operator-= ( int j )
Q3ListViewItemIterator & operator= ( const Q3ListViewItemIterator & it )

Detailed Description

The Q3ListViewItemIterator class provides an iterator for collections of Q3ListViewItems.

Construct an instance of a Q3ListViewItemIterator, with either a Q3ListView* or a Q3ListViewItem* as argument, to operate on the tree of Q3ListViewItems, starting from the argument.

A Q3ListViewItemIterator 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.

The following example creates a list of all the items that have been selected by the user, storing pointers to the items in a QList:

 QList<Q3ListViewItem *> lst;
 Q3ListViewItemIterator it(myListView);
 while (it.current()) {
     if (it.current()->isSelected())
         lst.append(it.current());
     ++it;
 }

An alternative approach is to use an IteratorFlag:

 QList<Q3ListViewItem *> lst;
 Q3ListViewItemIterator it(myListView, Selected);
 while (it.current()) {
     lst.append(it.current());
     ++it;
 }

A Q3ListViewItemIterator provides a convenient and easy way to traverse a hierarchical Q3ListView.

Multiple Q3ListViewItemIterators can operate on the tree of Q3ListViewItems. A Q3ListView knows about all iterators operating on its Q3ListViewItems. So when a Q3ListViewItem 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.

See also Q3ListView and Q3ListViewItem.

Member Type Documentation

enum Q3ListViewItemIterator::IteratorFlag

These flags can be passed to a Q3ListViewItemIterator constructor (OR-ed together if more than one is used), so that the iterator will only iterate over items that match the given flags.

ConstantValue
Q3ListViewItemIterator::Visible0x00000001
Q3ListViewItemIterator::Invisible0x00000002
Q3ListViewItemIterator::Selected0x00000004
Q3ListViewItemIterator::Unselected0x00000008
Q3ListViewItemIterator::Selectable0x00000010
Q3ListViewItemIterator::NotSelectable0x00000020
Q3ListViewItemIterator::DragEnabled0x00000040
Q3ListViewItemIterator::DragDisabled0x00000080
Q3ListViewItemIterator::DropEnabled0x00000100
Q3ListViewItemIterator::DropDisabled0x00000200
Q3ListViewItemIterator::Expandable0x00000400
Q3ListViewItemIterator::NotExpandable0x00000800
Q3ListViewItemIterator::Checked0x00001000
Q3ListViewItemIterator::NotChecked0x00002000

Member Function Documentation

Q3ListViewItemIterator::Q3ListViewItemIterator ()

Constructs an empty iterator.

Q3ListViewItemIterator::Q3ListViewItemIterator ( Q3ListViewItem * item )

Constructs an iterator for the Q3ListView that contains the item. The current iterator item is set to point to the item.

Q3ListViewItemIterator::Q3ListViewItemIterator ( Q3ListViewItem * item, int iteratorFlags )

Constructs an iterator for the Q3ListView that contains the item using the flags iteratorFlags. The current iterator item is set to point to item or the next matching item if item doesn't match the flags.

See also Q3ListViewItemIterator::IteratorFlag.

Q3ListViewItemIterator::Q3ListViewItemIterator ( const Q3ListViewItemIterator & it )

Constructs an iterator for the same Q3ListView as it. The current iterator item is set to point on the current item of it.

Q3ListViewItemIterator::Q3ListViewItemIterator ( Q3ListView * lv )

Constructs an iterator for the Q3ListView lv. The current iterator item is set to point on the first child (Q3ListViewItem) of lv.

Q3ListViewItemIterator::Q3ListViewItemIterator ( Q3ListView * lv, int iteratorFlags )

Constructs an iterator for the Q3ListView lv with the flags iteratorFlags. The current iterator item is set to point on the first child (Q3ListViewItem) of lv that matches the flags.

See also Q3ListViewItemIterator::IteratorFlag.

Q3ListViewItemIterator::~Q3ListViewItemIterator ()

Destroys the iterator.

Q3ListViewItem * Q3ListViewItemIterator::current () const

Returns iterator's current item.

Q3ListViewItem * Q3ListViewItemIterator::operator* ()

Dereference operator. Returns a reference to the current item. The same as current().

Q3ListViewItemIterator & Q3ListViewItemIterator::operator++ ()

Prefix ++. Makes the next item the new current item and returns it. Returns 0 if the current item is the last item or the Q3ListView is 0.

const Q3ListViewItemIterator Q3ListViewItemIterator::operator++ ( int )

This is an overloaded function.

Postfix ++. Makes the next item the new current item and returns the item that was the current item.

Q3ListViewItemIterator & Q3ListViewItemIterator::operator+= ( int j )

Sets the current item to the item j positions after the current item. If that item is beyond the last item, the current item is set to 0. Returns the current item.

Q3ListViewItemIterator & Q3ListViewItemIterator::operator-- ()

Prefix --. Makes the previous item the new current item and returns it. Returns 0 if the current item is the first item or the Q3ListView is 0.

const Q3ListViewItemIterator Q3ListViewItemIterator::operator-- ( int )

This is an overloaded function.

Postfix --. Makes the previous item the new current item and returns the item that was the current item.

Q3ListViewItemIterator & Q3ListViewItemIterator::operator-= ( int j )

Sets the current item to the item j positions before the current item. If that item is before the first item, the current item is set to 0. Returns the current item.

Q3ListViewItemIterator & Q3ListViewItemIterator::operator= ( const Q3ListViewItemIterator & it )

Assignment. Makes a copy of it and returns a reference to its iterator.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année

Le Qt Developer Network au hasard

Logo

Utiliser QML et QtWebKit avec PySide

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.7
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web