]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/dynarray.h
wxDataViewCtrl::IsExpanded should work now under OS X, as well
[wxWidgets.git] / interface / wx / dynarray.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: dynarray.h
e54c96f1 3// Purpose: interface of wxArray<T>
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
7c913512 10
0c1fe6e9 11 This section describes the so called @e "dynamic arrays". This is a C
23324ae1 12 array-like type safe data structure i.e. the member access time is constant
0c1fe6e9
BP
13 (and not linear according to the number of container elements as for linked
14 lists). However, these arrays are dynamic in the sense that they will
15 automatically allocate more memory if there is not enough of it for adding
16 a new element. They also perform range checking on the index values but in
17 debug mode only, so please be sure to compile your application in debug
18 mode to use it (see @ref overview_debugging for details). So, unlike the
19 arrays in some other languages, attempt to access an element beyond the
20 arrays bound doesn't automatically expand the array but provokes an
21 assertion failure instead in debug build and does nothing (except possibly
22 crashing your program) in the release build.
23
24 The array classes were designed to be reasonably efficient, both in terms
25 of run-time speed and memory consumption and the executable size. The speed
26 of array item access is, of course, constant (independent of the number of
27 elements) making them much more efficient than linked lists (wxList).
28 Adding items to the arrays is also implemented in more or less constant
29 time, but the price is preallocating the memory in advance. In the
30 "memory management" function section, you may find some useful hints about
31 optimizing wxArray memory usage. As for executable size, all wxArray
32 functions are inline, so they do not take @e any space at all.
7c913512 33
23324ae1 34 wxWidgets has three different kinds of array. All of them derive from
0c1fe6e9
BP
35 wxBaseArray class which works with untyped data and can not be used
36 directly. The standard macros WX_DEFINE_ARRAY(), WX_DEFINE_SORTED_ARRAY()
37 and WX_DEFINE_OBJARRAY() are used to define a new class deriving from it.
38 The classes declared will be called in this documentation wxArray,
39 wxSortedArray and wxObjArray but you should keep in mind that no classes
40 with such names actually exist, each time you use one of the
41 WX_DEFINE_XXXARRAY() macros, you define a class with a new name. In fact,
42 these names are "template" names and each usage of one of the macros
43 mentioned above creates a template specialization for the given element
44 type.
45
46 wxArray is suitable for storing integer types and pointers which it does
47 not treat as objects in any way, i.e. the element pointed to by the pointer
48 is not deleted when the element is removed from the array. It should be
49 noted that all of wxArray's functions are inline, so it costs strictly
50 nothing to define as many array types as you want (either in terms of the
51 executable size or the speed) as long as at least one of them is defined
52 and this is always the case because wxArrays are used by wxWidgets
53 internally. This class has one serious limitation: it can only be used for
54 storing integral types (bool, char, short, int, long and their unsigned
55 variants) or pointers (of any kind). An attempt to use with objects of
56 @c sizeof() greater than @c sizeof(long) will provoke a runtime assertion
57 failure, however declaring a wxArray of floats will not (on the machines
58 where @c "sizeof(float) <= sizeof(long)"), yet it will @b not work, please
59 use wxObjArray for storing floats and doubles.
60
61 wxSortedArray is a wxArray variant which should be used when searching in
62 the array is a frequently used operation. It requires you to define an
63 additional function for comparing two elements of the array element type
64 and always stores its items in the sorted order (according to this
65 function). Thus, its Index() function execution time is @c "O(log(N))"
66 instead of @c "O(N)" for the usual arrays but the Add() method is slower:
67 it is @c "O(log(N))" instead of constant time (neglecting time spent in
68 memory allocation routine). However, in a usual situation elements are
69 added to an array much less often than searched inside it, so wxSortedArray
70 may lead to huge performance improvements compared to wxArray. Finally, it
71 should be noticed that, as wxArray, wxSortedArray can be only used for
72 storing integral types or pointers.
73
74 wxObjArray class treats its elements like "objects". It may delete them
75 when they are removed from the array (invoking the correct destructor) and
76 copies them using the objects copy constructor. In order to implement this
77 behaviour the definition of the wxObjArray arrays is split in two parts:
78 first, you should declare the new wxObjArray class using the
79 WX_DECLARE_OBJARRAY() macro and then you must include the file defining the
80 implementation of template type: @<wx/arrimpl.cpp@> and define the array
81 class with the WX_DEFINE_OBJARRAY() macro from a point where the full (as
82 opposed to 'forward') declaration of the array elements class is in scope.
83 As it probably sounds very complicated here is an example:
7c913512 84
23324ae1 85 @code
0c1fe6e9 86 #include <wx/dynarray.h>
7c913512 87
0c1fe6e9
BP
88 // We must forward declare the array because it is used
89 // inside the class declaration.
23324ae1
FM
90 class MyDirectory;
91 class MyFile;
7c913512 92
0c1fe6e9
BP
93 // This defines two new types: ArrayOfDirectories and ArrayOfFiles which
94 // can be now used as shown below.
23324ae1
FM
95 WX_DECLARE_OBJARRAY(MyDirectory, ArrayOfDirectories);
96 WX_DECLARE_OBJARRAY(MyFile, ArrayOfFiles);
7c913512 97
23324ae1
FM
98 class MyDirectory
99 {
0c1fe6e9
BP
100 // ...
101 ArrayOfDirectories m_subdirectories; // All subdirectories
102 ArrayOfFiles m_files; // All files in this directory
23324ae1 103 };
7c913512 104
0c1fe6e9 105 // ...
7c913512 106
0c1fe6e9 107 // Now that we have MyDirectory declaration in scope we may finish the
23324ae1
FM
108 // definition of ArrayOfDirectories -- note that this expands into some C++
109 // code and so should only be compiled once (i.e., don't put this in the
110 // header, but into a source file or you will get linking errors)
0c1fe6e9 111 #include <wx/arrimpl.cpp> // This is a magic incantation which must be done!
23324ae1 112 WX_DEFINE_OBJARRAY(ArrayOfDirectories);
7c913512 113
23324ae1
FM
114 // that's all!
115 @endcode
7c913512 116
0c1fe6e9 117 It is not as elegant as writing this:
7c913512 118
23324ae1 119 @code
0c1fe6e9 120 typedef std::vector<MyDirectory> ArrayOfDirectories;
23324ae1 121 @endcode
7c913512 122
0c1fe6e9
BP
123 But is not that complicated and allows the code to be compiled with any,
124 however dumb, C++ compiler in the world.
7c913512 125
0c1fe6e9
BP
126 Remember to include @<wx/arrimpl.cpp@> just before each
127 WX_DEFINE_OBJARRAY() ocurrence in your code, even if you have several in
128 the same file.
7c913512 129
23324ae1 130 Things are much simpler for wxArray and wxSortedArray however: it is enough
0c1fe6e9 131 just to write:
7c913512 132
23324ae1
FM
133 @code
134 WX_DEFINE_ARRAY_INT(int, ArrayOfInts);
135 WX_DEFINE_SORTED_ARRAY_INT(int, ArrayOfSortedInts);
136 @endcode
7c913512 137
0c1fe6e9
BP
138 There is only one @c DEFINE macro and no need for separate @c DECLARE one.
139 For the arrays of the primitive types, the macros
23324ae1 140 @c WX_DEFINE_ARRAY_CHAR/SHORT/INT/SIZE_T/LONG/DOUBLE should be used
0c1fe6e9
BP
141 depending on the sizeof of the values (notice that storing values of
142 smaller type, e.g. shorts, in an array of larger one, e.g. @c ARRAY_INT,
143 does not work on all architectures!).
144
145
146 @section array_macros Macros for Template Array Definition
147
148 To use an array you must first define the array class. This is done with
149 the help of the macros in this section. The class of array elements must be
150 (at least) forward declared for WX_DEFINE_ARRAY(), WX_DEFINE_SORTED_ARRAY()
151 and WX_DECLARE_OBJARRAY() macros and must be fully declared before you use
152 WX_DEFINE_OBJARRAY() macro.
153
154 - WX_DEFINE_ARRAY()
155 - WX_DEFINE_EXPORTED_ARRAY()
156 - WX_DEFINE_USER_EXPORTED_ARRAY()
157 - WX_DEFINE_SORTED_ARRAY()
158 - WX_DEFINE_SORTED_EXPORTED_ARRAY()
159 - WX_DEFINE_SORTED_USER_EXPORTED_ARRAY()
160 - WX_DECLARE_EXPORTED_OBJARRAY()
161 - WX_DECLARE_USER_EXPORTED_OBJARRAY()
162 - WX_DEFINE_OBJARRAY()
163 - WX_DEFINE_EXPORTED_OBJARRAY()
164 - WX_DEFINE_USER_EXPORTED_OBJARRAY()
165
166 To slightly complicate the matters even further, the operator "->" defined
167 by default for the array iterators by these macros only makes sense if the
168 array element type is not a pointer itself and, although it still works,
169 this provokes warnings from some compilers and to avoid them you should use
170 the @c _PTR versions of the macros above. For example, to define an array
171 of pointers to @c double you should use:
172
173 @code
174 WX_DEFINE_ARRAY_PTR(double *, MyArrayOfDoublePointers);
175 @endcode
176
177 Note that the above macros are generally only useful for wxObject types.
178 There are separate macros for declaring an array of a simple type, such as
179 an int.
180
181 The following simple types are supported:
182 - @c int
183 - @c long
184 - @c size_t
185 - @c double
186
187 To create an array of a simple type, simply append the type you want in
188 CAPS to the array definition.
189
190 For example, you'd use one of the following variants for an integer array:
191
192 - WX_DEFINE_ARRAY_INT()
193 - WX_DEFINE_EXPORTED_ARRAY_INT()
194 - WX_DEFINE_USER_EXPORTED_ARRAY_INT()
195 - WX_DEFINE_SORTED_ARRAY_INT()
196 - WX_DEFINE_SORTED_EXPORTED_ARRAY_INT()
197 - WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_INT()
198
7c913512 199
23324ae1 200 @library{wxbase}
0c1fe6e9 201 @category{containers}
7c913512 202
b1db61e1 203 @see @ref overview_container, wxList<T>, wxVector<T>
23324ae1 204*/
7c913512 205class wxArray<T>
23324ae1
FM
206{
207public:
23324ae1 208 /**
0c1fe6e9
BP
209 @name Constructors and Destructors
210
211 Array classes are 100% C++ objects and as such they have the
212 appropriate copy constructors and assignment operators. Copying wxArray
213 just copies the elements but copying wxObjArray copies the arrays
214 items. However, for memory-efficiency sake, neither of these classes
215 has virtual destructor. It is not very important for wxArray which has
216 trivial destructor anyhow, but it does mean that you should avoid
217 deleting wxObjArray through a wxBaseArray pointer (as you would never
218 use wxBaseArray anyhow it shouldn't be a problem) and that you should
219 not derive your own classes from the array classes.
23324ae1 220 */
0c1fe6e9 221 //@{
23324ae1
FM
222
223 /**
0c1fe6e9 224 Default constructor.
23324ae1 225 */
0c1fe6e9 226 wxArray();
76e9224e 227
23324ae1 228 /**
0c1fe6e9 229 Default constructor initializes an empty array object.
23324ae1 230 */
0c1fe6e9 231 wxObjArray();
76e9224e 232
23324ae1 233 /**
0c1fe6e9
BP
234 There is no default constructor for wxSortedArray classes - you must
235 initialize it with a function to use for item comparison. It is a
236 function which is passed two arguments of type @c T where @c T is the
237 array element type and which should return a negative, zero or positive
238 value according to whether the first element passed to it is less than,
239 equal to or greater than the second one.
23324ae1 240 */
0c1fe6e9 241 wxSortedArray(int (*)(T first, T second)compareFunction);
23324ae1
FM
242
243 /**
0c1fe6e9
BP
244 Performs a shallow array copy (i.e. doesn't copy the objects pointed to
245 even if the source array contains the items of pointer type).
23324ae1 246 */
0c1fe6e9 247 wxArray(const wxArray& array);
76e9224e 248
23324ae1 249 /**
0c1fe6e9
BP
250 Performs a shallow array copy (i.e. doesn't copy the objects pointed to
251 even if the source array contains the items of pointer type).
23324ae1 252 */
0c1fe6e9 253 wxSortedArray(const wxSortedArray& array);
76e9224e 254
0c1fe6e9
BP
255 /**
256 Performs a deep copy (i.e. the array element are copied too).
257 */
258 wxObjArray(const wxObjArray& array);
23324ae1 259
23324ae1 260 /**
0c1fe6e9
BP
261 Performs a shallow array copy (i.e. doesn't copy the objects pointed to
262 even if the source array contains the items of pointer type).
23324ae1 263 */
0c1fe6e9 264 wxArray& operator=(const wxArray& array);
76e9224e 265
0c1fe6e9
BP
266 /**
267 Performs a shallow array copy (i.e. doesn't copy the objects pointed to
268 even if the source array contains the items of pointer type).
269 */
270 wxSortedArray& operator=(const wxSortedArray& array);
76e9224e 271
0c1fe6e9
BP
272 /**
273 Performs a deep copy (i.e. the array element are copied too).
274 */
275 wxObjArray& operator=(const wxObjArray& array);
23324ae1
FM
276
277 /**
0c1fe6e9
BP
278 This destructor does not delete all the items owned by the array, you
279 may use the WX_CLEAR_ARRAY() macro for this.
23324ae1 280 */
0c1fe6e9 281 ~wxArray();
76e9224e 282
0c1fe6e9
BP
283 /**
284 This destructor does not delete all the items owned by the array, you
285 may use the WX_CLEAR_ARRAY() macro for this.
286 */
287 ~wxSortedArray();
76e9224e 288
0c1fe6e9
BP
289 /**
290 This destructor deletes all the items owned by the array.
291 */
292 ~wxObjArray();
293
294 //@}
295
23324ae1
FM
296
297 /**
0c1fe6e9
BP
298 @name Memory Management
299
300 Automatic array memory management is quite trivial: the array starts by
301 preallocating some minimal amount of memory (defined by
302 @c WX_ARRAY_DEFAULT_INITIAL_SIZE) and when further new items exhaust
303 already allocated memory it reallocates it adding 50% of the currently
304 allocated amount, but no more than some maximal number which is defined
305 by the @c ARRAY_MAXSIZE_INCREMENT constant. Of course, this may lead to
306 some memory being wasted (@c ARRAY_MAXSIZE_INCREMENT in the worst case,
307 i.e. 4Kb in the current implementation), so the Shrink() function is
308 provided to deallocate the extra memory. The Alloc() function can also
309 be quite useful if you know in advance how many items you are going to
310 put in the array and will prevent the array code from reallocating the
311 memory more times than needed.
23324ae1 312 */
0c1fe6e9 313 //@{
23324ae1
FM
314
315 /**
0c1fe6e9
BP
316 Preallocates memory for a given number of array elements. It is worth
317 calling when the number of items which are going to be added to the
318 array is known in advance because it will save unneeded memory
319 reallocation. If the array already has enough memory for the given
320 number of items, nothing happens. In any case, the existing contents of
321 the array is not modified.
23324ae1 322 */
0c1fe6e9 323 void Alloc(size_t count);
23324ae1 324
23324ae1 325 /**
0c1fe6e9
BP
326 Frees all memory unused by the array. If the program knows that no new
327 items will be added to the array it may call Shrink() to reduce its
328 memory usage. However, if a new item is added to the array, some extra
329 memory will be allocated again.
23324ae1 330 */
0c1fe6e9
BP
331 void Shrink();
332
23324ae1
FM
333 //@}
334
0c1fe6e9 335
23324ae1 336 /**
0c1fe6e9 337 @name Number of Elements and Simple Item Access
23324ae1 338
0c1fe6e9
BP
339 Functions in this section return the total number of array elements and
340 allow to retrieve them - possibly using just the C array indexing []
341 operator which does exactly the same as the Item() method.
342 */
23324ae1 343 //@{
0c1fe6e9 344
23324ae1 345 /**
0c1fe6e9 346 Return the number of items in the array.
23324ae1 347 */
0c1fe6e9 348 size_t GetCount() const;
23324ae1
FM
349
350 /**
351 Returns @true if the array is empty, @false otherwise.
352 */
328f5751 353 bool IsEmpty() const;
23324ae1
FM
354
355 /**
0c1fe6e9
BP
356 Returns the item at the given position in the array. If @a index is out
357 of bounds, an assert failure is raised in the debug builds but nothing
358 special is done in the release build.
23324ae1 359
0c1fe6e9
BP
360 The returned value is of type "reference to the array element type" for
361 all of the array classes.
23324ae1 362 */
0c1fe6e9 363 T& Item(size_t index) const;
23324ae1
FM
364
365 /**
0c1fe6e9
BP
366 Returns the last element in the array, i.e. is the same as calling
367 "Item(GetCount() - 1)". An assert failure is raised in the debug mode
368 if the array is empty.
3c4f71cc 369
0c1fe6e9
BP
370 The returned value is of type "reference to the array element type" for
371 all of the array classes.
372 */
373 T& Last() const;
3c4f71cc 374
0c1fe6e9 375 //@}
3c4f71cc 376
3c4f71cc 377
0c1fe6e9
BP
378 /**
379 @name Adding Items
380 */
381 //@{
3c4f71cc 382
0c1fe6e9
BP
383 /**
384 Appends the given number of @a copies of the @a item to the array
385 consisting of the elements of type @c T.
3c4f71cc 386
0c1fe6e9 387 This version is used with wxArray.
3c4f71cc 388
0c1fe6e9
BP
389 You may also use WX_APPEND_ARRAY() macro to append all elements of one
390 array to another one but it is more efficient to use the @a copies
391 parameter and modify the elements in place later if you plan to append
392 a lot of items.
393 */
394 void Add(T item, size_t copies = 1);
76e9224e 395
0c1fe6e9
BP
396 /**
397 Appends the @a item to the array consisting of the elements of type
398 @c T.
3c4f71cc 399
0c1fe6e9
BP
400 This version is used with wxSortedArray, returning the index where
401 @a item is stored.
402 */
403 size_t Add(T item);
76e9224e 404
0c1fe6e9
BP
405 /**
406 Appends the @a item to the array consisting of the elements of type
407 @c T.
408
409 This version is used with wxObjArray. The array will take ownership of
4050e98d 410 the @a item, deleting it when the item is deleted from the array. Note
0c1fe6e9
BP
411 that you cannot append more than one pointer as reusing it would lead
412 to deleting it twice (or more) resulting in a crash.
413
414 You may also use WX_APPEND_ARRAY() macro to append all elements of one
415 array to another one but it is more efficient to use the @a copies
416 parameter and modify the elements in place later if you plan to append
417 a lot of items.
418 */
419 void Add(T* item);
76e9224e 420
0c1fe6e9
BP
421 /**
422 Appends the given number of @a copies of the @a item to the array
423 consisting of the elements of type @c T.
3c4f71cc 424
0c1fe6e9
BP
425 This version is used with wxObjArray. The array will make a copy of the
426 item and will not take ownership of the original item.
3c4f71cc 427
0c1fe6e9
BP
428 You may also use WX_APPEND_ARRAY() macro to append all elements of one
429 array to another one but it is more efficient to use the @a copies
430 parameter and modify the elements in place later if you plan to append
431 a lot of items.
432 */
433 void Add(T& item, size_t copies = 1);
3c4f71cc 434
0c1fe6e9
BP
435 /**
436 Inserts the given @a item into the array in the specified @e index
437 position.
3c4f71cc 438
0c1fe6e9
BP
439 Be aware that you will set out the order of the array if you give a
440 wrong position.
3c4f71cc 441
0c1fe6e9
BP
442 This function is useful in conjunction with IndexForInsert() for a
443 common operation of "insert only if not found".
444 */
445 void AddAt(T item, size_t index);
3c4f71cc 446
0c1fe6e9
BP
447 /**
448 Insert the given number of @a copies of the @a item into the array
449 before the existing item @a n - thus, @e Insert(something, 0u) will
450 insert an item in such way that it will become the first array element.
3c4f71cc 451
0c1fe6e9
BP
452 wxSortedArray doesn't have this function because inserting in wrong
453 place would break its sorted condition.
3c4f71cc 454
0c1fe6e9
BP
455 Please see Add() for an explanation of the differences between the
456 overloaded versions of this function.
457 */
458 void Insert(T item, size_t n, size_t copies = 1);
76e9224e 459
0c1fe6e9
BP
460 /**
461 Insert the @a item into the array before the existing item @a n - thus,
462 @e Insert(something, 0u) will insert an item in such way that it will
463 become the first array element.
3c4f71cc 464
0c1fe6e9
BP
465 wxSortedArray doesn't have this function because inserting in wrong
466 place would break its sorted condition.
3c4f71cc 467
0c1fe6e9
BP
468 Please see Add() for an explanation of the differences between the
469 overloaded versions of this function.
470 */
471 void Insert(T* item, size_t n);
76e9224e 472
0c1fe6e9
BP
473 /**
474 Insert the given number of @a copies of the @a item into the array
475 before the existing item @a n - thus, @e Insert(something, 0u) will
476 insert an item in such way that it will become the first array element.
3c4f71cc 477
0c1fe6e9
BP
478 wxSortedArray doesn't have this function because inserting in wrong
479 place would break its sorted condition.
3c4f71cc 480
0c1fe6e9
BP
481 Please see Add() for an explanation of the differences between the
482 overloaded versions of this function.
23324ae1 483 */
0c1fe6e9 484 void Insert(T& item, size_t n, size_t copies = 1);
23324ae1
FM
485
486 /**
0c1fe6e9
BP
487 This function ensures that the number of array elements is at least
488 @a count. If the array has already @a count or more items, nothing is
489 done. Otherwise, @a count - GetCount() elements are added and
490 initialized to the value @a defval.
3c4f71cc 491
0c1fe6e9 492 @see GetCount()
23324ae1 493 */
0c1fe6e9 494 void SetCount(size_t count, T defval = T(0));
23324ae1 495
0c1fe6e9 496 //@}
23324ae1 497
3c4f71cc 498
0c1fe6e9
BP
499 /**
500 @name Removing Items
501 */
502 //@{
3c4f71cc 503
0c1fe6e9
BP
504 /**
505 This function does the same as Empty() and additionally frees the
506 memory allocated to the array.
507 */
508 void Clear();
3c4f71cc 509
0c1fe6e9
BP
510 /**
511 Removes the element from the array, but unlike Remove(), it doesn't
512 delete it. The function returns the pointer to the removed element.
23324ae1 513 */
0c1fe6e9 514 T* Detach(size_t index);
23324ae1 515
0c1fe6e9
BP
516 /**
517 Empties the array. For wxObjArray classes, this destroys all of the
518 array elements. For wxArray and wxSortedArray this does nothing except
519 marking the array of being empty - this function does not free the
520 allocated memory, use Clear() for this.
521 */
522 void Empty();
23324ae1
FM
523
524 /**
0c1fe6e9
BP
525 Removes an element from the array by value: the first item of the array
526 equal to @a item is removed, an assert failure will result from an
23324ae1 527 attempt to remove an item which doesn't exist in the array.
3c4f71cc 528
0c1fe6e9
BP
529 When an element is removed from wxObjArray it is deleted by the array -
530 use Detach() if you don't want this to happen. On the other hand, when
531 an object is removed from a wxArray nothing happens - you should delete
532 it manually if required:
533
534 @code
535 T *item = array[n];
536 delete item;
537 array.Remove(n);
538 @endcode
539
540 See also WX_CLEAR_ARRAY() macro which deletes all elements of a wxArray
541 (supposed to contain pointers).
23324ae1 542 */
7c913512 543 Remove(T item);
23324ae1
FM
544
545 /**
4cc4bfaf 546 Removes @a count elements starting at @a index from the array. When an
23324ae1 547 element is removed from wxObjArray it is deleted by the array - use
0c1fe6e9
BP
548 Detach() if you don't want this to happen. On the other hand, when an
549 object is removed from a wxArray nothing happens - you should delete it
550 manually if required:
551
552 @code
553 T *item = array[n];
554 delete item;
555 array.RemoveAt(n);
556 @endcode
557
558 See also WX_CLEAR_ARRAY() macro which deletes all elements of a wxArray
559 (supposed to contain pointers).
23324ae1 560 */
7c913512 561 RemoveAt(size_t index, size_t count = 1);
23324ae1 562
0c1fe6e9 563 //@}
3c4f71cc 564
3c4f71cc 565
0c1fe6e9
BP
566 /**
567 @name Searching and Sorting
568 */
569 //@{
3c4f71cc 570
0c1fe6e9
BP
571 /**
572 This version of Index() is for wxArray and wxObjArray only.
573
574 Searches the element in the array, starting from either beginning or
575 the end depending on the value of @a searchFromEnd parameter.
576 @c wxNOT_FOUND is returned if the element is not found, otherwise the
577 index of the element is returned.
578
579 @note Even for wxObjArray classes, the operator "==" of the elements in
580 the array is @b not used by this function. It searches exactly
581 the given element in the array and so will only succeed if this
582 element had been previously added to the array, but fail even if
583 another, identical, element is in the array.
23324ae1 584 */
0c1fe6e9
BP
585 int Index(T& item, bool searchFromEnd = false) const;
586 /**
587 This version of Index() is for wxSortedArray only.
23324ae1 588
0c1fe6e9
BP
589 Searches the element in the array, starting from either beginning or
590 the end depending on the value of @a searchFromEnd parameter.
591 @c wxNOT_FOUND is returned if the element is not found, otherwise the
592 index of the element is returned.
593 */
594 const int Index(T& item) const;
23324ae1
FM
595
596 /**
0c1fe6e9
BP
597 Search for a place to insert @a item into the sorted array (binary
598 search). The index returned is just before the first existing item that
599 is greater or equal (according to the compare function) to the given
600 @a item.
3c4f71cc 601
0c1fe6e9
BP
602 You have to do extra work to know if the @a item already exists in
603 array.
3c4f71cc 604
0c1fe6e9
BP
605 This function is useful in conjunction with AddAt() for a common
606 operation of "insert only if not found".
23324ae1 607 */
0c1fe6e9 608 size_t IndexForInsert(T item) const;
23324ae1
FM
609
610 /**
0c1fe6e9
BP
611 The notation @c "CMPFUNCT<T>" should be read as if we had the following
612 declaration:
3c4f71cc 613
0c1fe6e9
BP
614 @code
615 template int CMPFUNC(T *first, T *second);
616 @endcode
23324ae1 617
0c1fe6e9
BP
618 Where @e T is the type of the array elements. I.e. it is a function
619 returning @e int which is passed two arguments of type @e T*.
23324ae1 620
0c1fe6e9
BP
621 Sorts the array using the specified compare function: this function
622 should return a negative, zero or positive value according to whether
623 the first element passed to it is less than, equal to or greater than
624 the second one.
3c4f71cc 625
23324ae1
FM
626 wxSortedArray doesn't have this function because it is always sorted.
627 */
628 void Sort(CMPFUNC<T> compareFunction);
629
23324ae1
FM
630 //@}
631};
e54c96f1 632
6b4a130c
FM
633
634/**
bf505dfc
FM
635 This macro may be used to append all elements of the @a wxArray_arrayToBeAppended
636 array to the @a wxArray_arrayToModify. The two arrays must be of the same type.
6b4a130c 637*/
bf505dfc 638#define WX_APPEND_ARRAY(wxArray_arrayToModify, wxArray_arrayToBeAppended)
6b4a130c
FM
639
640/**
0c1fe6e9
BP
641 This macro may be used to delete all elements of the array before emptying
642 it. It can not be used with wxObjArrays - but they will delete their
643 elements anyway when you call Empty().
6b4a130c 644*/
bf505dfc 645#define WX_CLEAR_ARRAY(wxArray_arrayToBeCleared)
6b4a130c
FM
646
647//@{
648/**
649 This macro declares a new object array class named @a name and containing
0c1fe6e9
BP
650 the elements of type @e T.
651
652 An exported array is used when compiling wxWidgets as a DLL under Windows
653 and the array needs to be visible outside the DLL. An user exported array
6b4a130c 654 needed for exporting an array from a user DLL.
0c1fe6e9 655
6b4a130c
FM
656 Example:
657
0c1fe6e9
BP
658 @code
659 class MyClass;
660 WX_DECLARE_OBJARRAY(MyClass, wxArrayOfMyClass); // note: not "MyClass *"!
661 @endcode
662
663 You must use WX_DEFINE_OBJARRAY() macro to define the array class,
664 otherwise you would get link errors.
6b4a130c 665*/
0c1fe6e9
BP
666#define WX_DECLARE_OBJARRAY(T, name)
667#define WX_DECLARE_EXPORTED_OBJARRAY(T, name)
668#define WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name)
6b4a130c
FM
669//@}
670
671//@{
672/**
673 This macro defines a new array class named @a name and containing the
0c1fe6e9
BP
674 elements of type @a T.
675
676 An exported array is used when compiling wxWidgets as a DLL under Windows
677 and the array needs to be visible outside the DLL. An user exported array
6b4a130c 678 needed for exporting an array from a user DLL.
0c1fe6e9 679
6b4a130c
FM
680 Example:
681
0c1fe6e9
BP
682 @code
683 WX_DEFINE_ARRAY_INT(int, MyArrayInt);
684
685 class MyClass;
686 WX_DEFINE_ARRAY(MyClass *, ArrayOfMyClass);
687 @endcode
688
689 Note that wxWidgets predefines the following standard array classes:
690 @b wxArrayInt, @b wxArrayLong, @b wxArrayShort, @b wxArrayDouble,
691 @b wxArrayPtrVoid.
6b4a130c 692*/
0c1fe6e9
BP
693#define WX_DEFINE_ARRAY(T, name)
694#define WX_DEFINE_EXPORTED_ARRAY(T, name)
695#define WX_DEFINE_USER_EXPORTED_ARRAY(T, name, exportspec)
6b4a130c
FM
696//@}
697
698//@{
699/**
0c1fe6e9
BP
700 This macro defines the methods of the array class @a name not defined by
701 the WX_DECLARE_OBJARRAY() macro. You must include the file
702 @<wx/arrimpl.cpp@> before using this macro and you must have the full
703 declaration of the class of array elements in scope! If you forget to do
704 the first, the error will be caught by the compiler, but, unfortunately,
705 many compilers will not give any warnings if you forget to do the second -
706 but the objects of the class will not be copied correctly and their real
707 destructor will not be called.
708
709 An exported array is used when compiling wxWidgets as a DLL under Windows
710 and the array needs to be visible outside the DLL. An user exported array
711 needed for exporting an array from a user DLL.
712
6b4a130c 713 Example of usage:
0c1fe6e9
BP
714
715 @code
716 // first declare the class!
717 class MyClass
718 {
719 public:
720 MyClass(const MyClass&);
721
722 // ...
723
724 virtual ~MyClass();
725 };
726
727 #include <wx/arrimpl.cpp>
728 WX_DEFINE_OBJARRAY(wxArrayOfMyClass);
729 @endcode
6b4a130c 730*/
0c1fe6e9
BP
731#define WX_DEFINE_OBJARRAY(name)
732#define WX_DEFINE_EXPORTED_OBJARRAY(name)
733#define WX_DEFINE_USER_EXPORTED_OBJARRAY(name)
6b4a130c
FM
734//@}
735
736//@{
737/**
738 This macro defines a new sorted array class named @a name and containing
0c1fe6e9
BP
739 the elements of type @e T.
740
741 An exported array is used when compiling wxWidgets as a DLL under Windows
742 and the array needs to be visible outside the DLL. An user exported array
6b4a130c 743 needed for exporting an array from a user DLL.
0c1fe6e9 744
6b4a130c
FM
745 Example:
746
0c1fe6e9
BP
747 @code
748 WX_DEFINE_SORTED_ARRAY_INT(int, MySortedArrayInt);
749
750 class MyClass;
751 WX_DEFINE_SORTED_ARRAY(MyClass *, ArrayOfMyClass);
752 @endcode
753
754 You will have to initialize the objects of this class by passing a
755 comparison function to the array object constructor like this:
756
757 @code
758 int CompareInts(int n1, int n2)
759 {
760 return n1 - n2;
761 }
762
763 MySortedArrayInt sorted(CompareInts);
764
765 int CompareMyClassObjects(MyClass *item1, MyClass *item2)
766 {
767 // sort the items by their address...
768 return Stricmp(item1->GetAddress(), item2->GetAddress());
769 }
770
771 ArrayOfMyClass another(CompareMyClassObjects);
772 @endcode
6b4a130c 773*/
0c1fe6e9
BP
774#define WX_DEFINE_SORTED_ARRAY(T, name)
775#define WX_DEFINE_SORTED_EXPORTED_ARRAY(T, name)
776#define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(T, name)
6b4a130c
FM
777//@}
778
779/**
bf505dfc
FM
780 This macro may be used to prepend all elements of the @a wxArray_arrayToBePrepended
781 array to the @a wxArray_arrayToModify. The two arrays must be of the same type.
6b4a130c 782*/
bf505dfc 783#define WX_PREPEND_ARRAY(wxArray_arrayToModify, wxArray_arrayToBePrepended)
0c1fe6e9 784