summaryrefslogtreecommitdiffstats
path: root/doc/qobjectlist.doc
blob: 88f376643b13b54161a818fca04c4c251d079087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*!
    \class QObjectList qobjectlist.h
    \brief The QObjectList class is a QPtrList of QObjects.

    \ingroup collection
    \ingroup tools

    A QObjectList is a \link qptrlist.html
    QPtrList\<QObject\>\endlink. The list can be traversed using
    inherited functions, e.g. getFirst(), next(), etc., or using a
    QObjectListIterator iterator.

    See \l QObject::queryList() for an example of use.

    \sa QObjectListIterator QObject 
*/

/*!
    \fn QObjectList::QObjectList()

    Constructs an empty QObject list.
*/

/*!
    \fn QObjectList::QObjectList( const QObjectList &list )

    Constructs a copy of \a list.

    Each item in \a list is \link append() appended\endlink to this
    list. Only the pointers are copied (shallow copy).
*/

/*!
    \fn QObjectList::~QObjectList()

    Removes all the object pointers from the list and destroys the
    list.

    All list iterators that access this list will be reset.

    \sa setAutoDelete()
*/

/*!
    \fn QObjectList &QObjectList::operator=(const QObjectList &list)

    Assigns \a list to this list and returns a reference to this list.

    This list is first cleared and then each item in \a list is \link
    append() appended\endlink to this list. Only the pointers are
    copied (shallow copy) unless newItem() has been reimplemented().
*/


/*!
    \class QObjectListIterator qobjectlist.h
    \brief The QObjectListIterator class provides an iterator for
    QObjectLists.

    \ingroup collection
    \ingroup tools

    A QObjectListIterator iterator is a \link qptrlistiterator.html
    QPtrListIterator\<QObject\>\endlink.

    See \l QObject::queryList() for an example of use.

    \sa QObjectList
*/

/*!
    \fn QObjectListIterator::QObjectListIterator( const QObjectList &list )

    Constructs an iterator for \a list. The current iterator item is
    set to point on the first item in the \a list.
*/

/*!
    \fn QObjectListIterator& QObjectListIterator::operator=( const QObjectListIterator &it )

    Assignment. Makes a copy of the iterator \a it and returns a
    reference to this iterator.
*/