The QList class is a template class that provides doubly linked lists. More...
#include <qlist.h>
Inherits QGList.
Inherited by QStrList.
QList is implemented as both a template and a macro class. Define a template instance QList<X> to create a list that operates on pointers to X, or X*.
Example:
#include <qlist.h> #include <qstring.h> #include <stdio.h> class Employee { public: Employee( const char *name, int salary ) { n=name; s=salary; } const char *name() const { return n; } int salary() const { return s; } private: QString n; int s; }; void main() { QList<Employee> list; // list of pointers to Employee list.setAutoDelete( TRUE ); // delete items when they are removed list.append( new Employee("Bill", 50000) ); list.append( new Employee("Steve",80000) ); list.append( new Employee("Ron", 60000) ); Employee *emp; for ( emp=list.first(); emp != 0; emp=list.next() ) printf( "%s earns %d\n", emp->name(), emp->salary() ); }
Program output:
Bill earns 50000 Steve earns 80000 Ron earns 60000
A list can also be instantiated through a macro expansion, but this is necessary only for compilers that do not support templates. See the collection classes documentation for a general discussion on template-based versus macro-based collections.
The list class is indexable and has a current index and a current item. The first item corresponds to index 0. The current index is -1 if the current item is null.
QList has several member functions for traversing the list, but using a QListIterator can be more practical. Multiple list iterators may traverse the same list, independent of each other and independent of the current list item.
In the example above, we make the call setAutoDelete(TRUE). Enabling auto-deletion tells the list to delete items that are removed from the list. The default is to not delete items when they are removed, but that would cause a memory leak in our example since we have no other references to the list items.
List items are stored as void*
in an internal QLNode, which also
holds pointers to the next and previous list items. The functions
currentNode(), removeNode() and takeNode() operate directly on the
QLNode, but they should be used with care.
When inserting an item into a list, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the list copy all of the item's data (known as a deep copy) when an item is inserted. insert(), inSort() and append() call the virtual function QCollection::newItem() for the item to be inserted. Inherit a list and reimplement it if you want deep copies.
When removing an item from a list, the virtual function QCollection::deleteItem() is called. QList's default implementation is to delete the item if auto-deletion is enabled.
The virtual function QGList::compareItems() can be reimplemented to compare two list items. This function is called from all list functions that need to compare list items, for instance remove(const type*). If you only want to deal with pointers, there are functions that compare pointers instead, for instance removeRef(const type*). These functions are somewhat faster than those that call compareItems().
The QStrList class in qstrlist.h is a list of char*.
QStrList is
a good example of a list that reimplements newItem(), deleteItem() and
compareItems()
See also: QListIterator and Collection Classes
Examples: grapher/grapher.cpp
Constructs an empty list.
Constructs a copy of list.
Each item in list is appended to this list. Only the pointers are copied (shallow copy).
Removes all items from the list and destroys the list.
All list iterators that access this list will be reset.
See also: setAutoDelete().
Inserts the item at the end of the list.
The inserted item becomes the current list item.
The item must not be a null pointer.
See also: insert() and current().
Examples: grapher/grapher.cpp
Returns the index of the current list item. The returned value is -1 if the current item is null.
See also: current().
Returns a pointer to the item at position index in the list, or null if the index is out of range.
Sets the current list item to this item if index is valid.
The valid range is 0 .. (count() - 1)
inclusive.
This function is very efficient. It starts scanning from the first item, last item or current item, whichever is closest to index.
See also: current().
[virtual]
Removes all items from the list.
The removed items are deleted if auto-deletion is enabled.
All list iterators that access this list will be reset.
See also: remove(), take() and setAutoDelete().
Reimplemented from QCollection.
Counts and returns the number of occurrences of item in the list.
The compareItems() function is called when looking for the item in the list. If compareItems() is not reimplemented, it is more efficient to call containsRef().
Does not affect the current list item.
See also: containsRef() and compareItems().
Counts and returns the number of occurrences of item in the list.
Calling this function is must faster than contains(), because contains() compares item with each list item using compareItems(). This function only compares the pointers.
Does not affect the current list item.
See also: contains().
[virtual]
Returns the number of items in the list.
See also: isEmpty().
Examples: grapher/grapher.cpp
Reimplemented from QCollection.
Returns a pointer to the current list item. The current item may be null (implies that the current index is -1).
See also: at().
Returns a pointer to the current list node.
The node can be kept and removed later using removeNode(). The advantage is that the item can be removed directly without searching the list.
Warning: Do not call this function unless you are an expert.
See also: removeNode(), takeNode() and current().
Finds the first occurrence of item in the list.
If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to null, the current index to -1 and returns -1.
The compareItems() function is called when searching for the item in the list. If compareItems() is not reimplemented, it is more efficient to call findRef().
See also: findNext(), findRef(), compareItems() and current().
Finds the next occurrence of item in the list, starting from the current list item.
If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to null, the current index to -1 and returns -1.
The compareItems() function is called when searching for the item in the list. If compareItems() is not reimplemented, it is more efficient to call findNextRef().
See also: find(), findNextRef(), compareItems() and current().
Finds the next occurrence of item in the list, starting from the current list item.
If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to null, the current index to -1 and returns -1.
Calling this function is must faster than findNext(), because findNext() compares item with each list item using compareItems(). This function only compares the pointers.
See also: findRef(), findNext() and current().
Finds the first occurrence of item in the list.
If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to null, the current index to -1 and returns -1.
Calling this function is must faster than find(), because find() compares item with each list item using compareItems(). This function only compares the pointers.
See also: findNextRef(), find() and current().
Returns a pointer to the first item in the list and makes this the current list item, or null if the list is empty.
See also: getFirst(), last(), next(), prev() and current().
Examples: grapher/grapher.cpp showimg/showimg.cpp
Returns a pointer to the first item in the list, or null if the list is empty.
Does not affect the current list item.
See also: first() and getLast().
Returns a pointer to the last item in the list, or null if the list is empty.
Does not affect the current list item.
See also: last() and getFirst().
Inserts the item at its sorted position in the list.
The sort order depends on the virtual QGList::compareItems() function. All items must be inserted with inSort() to maintain the sorting order.
The inserted item becomes the current list item.
The item must not be a null pointer.
See also: insert(), compareItems() and current().
Inserts the item at the position index in the list.
Returns TRUE if successful, or FALSE if index is out of range.
The valid range is 0 .. count()
inclusive.
The item is appended if index == count().
The inserted item becomes the current list item.
The item must not be a null pointer.
See also: append() and current().
Returns TRUE if the list is empty, i.e. count() == 0. Returns FALSE otherwise.
See also: count().
Returns a pointer to the last item in the list and makes this the current list item, or null if the list is empty.
See also: getLast(), first(), next(), prev() and current().
Returns a pointer to the item succeeding the current item. Returns null if the current items is null or equal to the last item.
Makes the succeeding item current. If the current item before this function call was the last item, the current item will be set to null. If the current item was null, this function does nothing.
See also: first(), last(), prev() and current().
Examples: grapher/grapher.cpp showimg/showimg.cpp
Assigns list to this list and returns a reference to this list.
This list is first cleared, then each item in list is appended to this list. Only the pointers are copied (shallow copy), unless newItem() has been reimplemented().
Returns a pointer to the item preceding the current item. Returns null if the current items is null or equal to the first item.
Makes the preceding item current. If the current item before this function call was the first item, the current item will be set to null. If the current item was null, this function does nothing.
See also: first(), last(), next() and current().
Removes the current list item.
Returns TRUE if successful, or FALSE if the current item is null.
The removed item is deleted if auto-deletion is enabled.
The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the new current item.
See also: take(), clear(), setAutoDelete(), current() and removeRef().
Removes the first occurence of item from the list.
Returns TRUE if successful, or FALSE if the item could not be found in the list.
The removed item is deleted if auto-deletion is enabled.
The compareItems() function is called when searching for the item in the list. If compareItems() is not reimplemented, it is more efficient to call removeRef().
The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the new current item.
See also: removeRef(), take(), clear(), setAutoDelete(), compareItems() and current().
Removes the item at position index in the list.
Returns TRUE if successful, or FALSE if index is out of range.
The valid range is 0 .. (count() - 1)
inclusive.
The removed item is deleted if auto-deletion is enabled.
The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the new current item.
See also: take(), clear(), setAutoDelete(), current() and removeRef().
Removes the first item from the list. Returns TRUE if successful, or FALSE if the list is empty.
The removed item is deleted if auto-deletion is enabled.
The first item in the list becomes the new current list item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the new current item.
See also: removeLast(), setAutoDelete(), current() and remove().
Removes the last item from the list. Returns TRUE if successful, or FALSE if the list is empty.
The removed item is deleted if auto-deletion is enabled.
The last item in the list becomes the new current list item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the new current item.
See also: removeFirst(), setAutoDelete() and current().
Removes the node from the list.
This node must exist in the list, otherwise the program may crash.
The removed item is deleted if auto-deletion is enabled.
The first item in the list will become the new current list item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the item succeeding this item, or the preceding item if the removed item was the last item.
Warning: Do not call this function unless you are an expert.
See also: takeNode(), currentNode(), remove() and removeRef().
Removes the first occurence of item from the list.
Returns TRUE if successful, or FALSE if the item cannot be found in the list.
The removed item is deleted if auto-deletion is enabled.
The list is scanned until the pointer item is found. It is removed if it is found.
Equivalent to:
if ( list.findRef(item) != -1 ) list.remove();
The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. The current item is set to null if the list becomes empty.
All list iterators that refer to the removed item will be set to point to the new current item.
See also: remove(), clear(), setAutoDelete() and current().
Takes the current item out of the list without deleting it (even if auto-deletion is enabled). Returns a pointer to the item taken out of the list, or null if the current item is null.
The item after the taken item becomes the new current list item if the taken item is not the last item in the list. If the last item is taken, the new last item becomes the current item. The current item is set to null if the list becomes empty.
All list iterators that refer to the taken item will be set to point to the new current item.
See also: remove(), clear() and current().
Takes the item at position index out of the list without deleting it (even if auto-deletion is enabled).
Returns a pointer to the item taken out of the list, or null if
the index is out of range.
The valid range is 0 .. (count() - 1)
inclusive.
The item after the taken item becomes the new current list item if the taken item is not the last item in the list. If the last item is taken, the new last item becomes the current item. The current item is set to null if the list becomes empty.
All list iterators that refer to the taken item will be set to point to the new current item.
See also: remove(), clear() and current().
Takes the node out of the list without deleting its item (even if auto-deletion is enabled). Returns a pointer to the item taken out of the list.
This node must exist in the list, otherwise the program may crash.
The first item in the list becomes the new current list item.
All list iterators that refer to the taken item will be set to point to the item succeeding this item, or the preceding item if the taken item was the last item.
Warning: Do not call this function unless you are an expert.
See also: removeNode() and currentNode().
Stores all list items in the vector vec.
The vector must be have the same item type, otherwise the result will be undefined.
Search the documentation, FAQ, qt-interest archive and more (uses
www.troll.no):
This file is part of the Qt toolkit, copyright © 1995-98 Troll Tech, all rights reserved.
It was generated from the following files:
Copyright © 1998 Troll Tech | Trademarks | Qt version 1.42
|