1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxList<T> class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 The wxListT class provides linked list functionality. It has been rewritten
14 to be type safe and to provide the full API of the STL std::list container and
15 should be used like it. The exception is that wxListT actually stores
16 pointers and therefore its iterators return pointers and not references
17 to the actual objets in the list (see example below) and @e value_type
18 is defined as @e T*. wxListT destroys an object after removing it only
19 if wxList::DeleteContents has been called.
21 wxListT is not a real template and it requires that you declare and define
22 each wxListT class in your program. This is done with @e WX_DECLARE_LIST
23 and @e WX_DEFINE_LIST macros (see example). We hope that we'll be able
24 to provide a proper template class providing both the STL std::list
25 and the old wxList API in the future.
27 Please refer to the STL std::list documentation for further
28 information on how to use the class. Below we documented both
29 the supported STL and the legacy API that originated from the
30 old wxList class and which can still be used alternatively for
33 Note that if you compile wxWidgets in STL mode (wxUSE_STL defined as 1)
34 then wxListT will actually derive from std::list and just add a legacy
35 compatibility layer for the old wxList class.
51 wxListT(size_t count
, T
* elements
[]);
55 Destroys the list, but does not delete the objects stored in the list
56 unless you called DeleteContents(@true ).
61 Appends the pointer to @a object to the list.
63 wxListT::compatibility_iterator
Append(T
* object
);
66 Clears the list, but does not delete the objects stored in the list
67 unless you called DeleteContents(@true ).
72 If @a destroy is @true, instructs the list to call @e delete
73 on objects stored in the list whenever they are removed.
74 The default is @false.
76 void DeleteContents(bool destroy
);
79 Deletes the given element refered to by @c iter from the list,
80 returning @true if successful.
82 bool DeleteNode(const compatibility_iterator
& iter
);
85 Finds the given @a object and removes it from the list, returning
86 @true if successful. The application must delete the actual object
89 bool DeleteObject(T
* object
);
92 Removes element refered to be @c iter.
94 void Erase(const compatibility_iterator
& iter
);
97 Returns the iterator refering to @a object or @NULL if none found.
99 wxListT::compatibility_iterator
Find(T
* object
) const;
102 Returns the number of elements in the list.
104 size_t GetCount() const;
107 Returns the first iterator in the list (@NULL if the list is empty).
109 wxListT::compatibility_iterator
GetFirst() const;
112 Returns the last iterator in the list (@NULL if the list is empty).
114 wxListT::compatibility_iterator
GetLast() const;
117 Returns the index of @a obj within the list or @c wxNOT_FOUND if
118 @a obj is not found in the list.
120 int IndexOf(T
* obj
) const;
124 Inserts the object before the object refered to be @e iter.
126 wxListT::compatibility_iterator
Insert(T
* object
);
127 wxListT::compatibility_iterator
Insert(size_t position
,
129 wxListT::compatibility_iterator
Insert(compatibility_iterator iter
,
134 Returns @true if the list is empty, @false otherwise.
136 bool IsEmpty() const;
139 Returns the iterator refering to the object at the given
140 @c index in the list.
142 wxListT::compatibility_iterator
Item(size_t index
) const;
145 @b NB: This function is deprecated, use wxList::Find instead.
147 wxListT::compatibility_iterator
Member(T
* object
) const;
150 @b NB: This function is deprecated, use @ref wxList::itemfunc Item instead.
151 Returns the @e nth node in the list, indexing from zero (@NULL if the list is
153 or the nth node could not be found).
155 wxListT::compatibility_iterator
Nth(int n
) const;
158 @b NB: This function is deprecated, use wxList::GetCount instead.
159 Returns the number of elements in the list.
164 Allows the sorting of arbitrary lists by giving a function to compare
165 two list elements. We use the system @b qsort function for the actual
168 void Sort(wxSortCompareFunction compfunc
);
174 void assign(const_iterator first
, const const_iterator
& last
);
175 void assign(size_type n
);
180 Returns the last item of the list.
182 reference
back() const;
183 const_reference
back() const;
188 Returns a (const) iterator pointing to the beginning of the list.
190 iterator
begin() const;
191 const_iterator
begin() const;
195 Removes all items from the list.
200 Returns @e @true if the list is empty.
206 Returns a (const) iterator pointing at the end of the list.
208 iterator
end() const;
209 const_iterator
end() const;
214 Erases the items from @a first to @e last.
216 iterator
erase(const iterator
& it
);
217 iterator
erase(const iterator
& first
,
218 const iterator
& last
);
223 Returns the first item in the list.
225 reference
front() const;
226 const_reference
front() const;
231 Inserts an item (or several) at the given position.
233 iterator
insert(const iterator
& it
);
234 void insert(const iterator
& it
, size_type n
);
235 void insert(const iterator
& it
, const_iterator first
,
236 const const_iterator
& last
);
240 Returns the largest possible size of the list.
242 size_type
max_size() const;
245 Removes the last item from the list.
250 Removes the first item from the list.
256 Adds an item to end of the list.
262 Adds an item to the front of the list.
268 Returns a (const) reverse iterator pointing to the beginning of the
271 reverse_iterator
rbegin() const;
272 const_reverse_iterator
rbegin() const;
276 Removes an item from the list.
278 void remove(const_reference v
);
282 Returns a (const) reverse iterator pointing to the end of the
285 reverse_iterator
rend() const;
286 const_reverse_iterator
rend() const;
291 Resizes the list. If the the list is enlarges items with
292 the value @e v are appended to the list.
294 void resize(size_type n
);
302 Returns the size of the list.
304 size_type
size() const;
312 wxNodeBase is the node structure used in linked lists (see
313 wxList) and derived classes. You should never use wxNodeBase
314 class directly, however, because it works with untyped (@c void *) data and
315 this is unsafe. Use wxNodeBase-derived classes which are automatically defined
316 by WX_DECLARE_LIST and WX_DEFINE_LIST macros instead as described in
317 wxList documentation (see example there). Also note that
318 although there is a class called wxNode, it is defined for backwards
319 compatibility only and usage of this class is strongly deprecated.
321 In the documentation below, the type @c T should be thought of as a
322 "template'' parameter: this is the type of data stored in the linked list or,
323 in other words, the first argument of WX_DECLARE_LIST macro. Also, wxNode is
324 written as wxNodeT even though it isn't really a template class -- but it
325 helps to think of it as if it were.
337 Retrieves the client data pointer associated with the node.
342 Retrieves the next node or @NULL if this node is the last one.
344 wxNodeT
* GetNext() const;
347 Retrieves the previous node or @NULL if this node is the first one in the list.
349 wxNodeT
* GetPrevious();
352 Returns the zero-based index of this node within the list. The return value
353 will be @c wxNOT_FOUND if the node has not been added to a list yet.
358 Sets the data associated with the node (usually the pointer will have been
359 set when the node was created).
361 void SetData(T
* data
);