]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/dynarray.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: auto-resizable (i.e. dynamic) array support
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
16 #pragma interface "dynarray.h"
22 This header defines the dynamic arrays and object arrays (i.e. arrays which
23 own their elements). Dynamic means that the arrays grow automatically as
26 These macros are ugly (especially if you look in the sources ;-), but they
27 allow us to define "template" classes without actually using templates and so
28 this works with all compilers (and may be also much faster to compile even
29 with a compiler which does support templates). The arrays defined with these
32 Range checking is performed in debug build for both arrays and objarrays but
33 not in release build - so using an invalid index will just lead to a crash
36 Note about memory usage: arrays never shrink automatically (although you may
37 use Shrink() function explicitly), they only grow, so loading 10 millions in
38 an array only to delete them 2 lines below might be a bad idea if the array
39 object is not going to be destroyed soon. However, as it does free memory
40 when destroyed, it is ok if the array is a local variable.
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
48 The initial size by which an array grows when an element is added default
49 value avoids allocate one or two bytes when the array is created which is
52 #define WX_ARRAY_DEFAULT_INITIAL_SIZE (16)
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
59 Callback compare function for quick sort.
61 It must return negative value, 0 or positive value if the first item is
62 less than, equal to or greater than the second one.
66 typedef int (wxCMPFUNC_CONV
*CMPFUNC
)(const void* pItem1
, const void* pItem2
);
69 // ----------------------------------------------------------------------------
70 // Base class managing data having size of type 'long' (not used directly)
72 // NB: for efficiency this often used class has no virtual functions (hence no
73 // virtual table), even dtor is *not* virtual. If used as expected it
74 // won't create any problems because ARRAYs from DEFINE_ARRAY have no dtor
75 // at all, so it's not too important if it's not called (this happens when
76 // you cast "SomeArray *" as "BaseArray *" and then delete it)
77 // ----------------------------------------------------------------------------
79 #define _WX_DECLARE_BASEARRAY(T, name, classexp) \
84 name(const name& array); \
85 name& operator=(const name& src); \
88 void Empty() { m_nCount = 0; } \
90 void Alloc(size_t uiSize); \
93 size_t GetCount() const { return m_nCount; } \
94 bool IsEmpty() const { return m_nCount == 0; } \
95 size_t Count() const { return m_nCount; } \
97 typedef T base_type; \
99 T& Item(size_t uiIndex) const \
100 { wxASSERT( uiIndex < m_nCount ); return m_pItems[uiIndex]; } \
101 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
103 int Index(T lItem, bool bFromEnd = FALSE) const; \
104 int Index(T lItem, CMPFUNC fnCompare) const; \
105 size_t IndexForInsert(T lItem, CMPFUNC fnCompare) const; \
107 void Add(T lItem, CMPFUNC fnCompare); \
108 void Insert(T lItem, size_t uiIndex); \
109 void Remove(T lItem); \
110 void RemoveAt(size_t uiIndex); \
112 void Sort(CMPFUNC fnCompare); \
124 // ============================================================================
125 // The private helper macros containing the core of the array classes
126 // ============================================================================
128 // Implementation notes:
130 // JACS: Salford C++ doesn't like 'var->operator=' syntax, as in:
131 // { ((wxBaseArray *)this)->operator=((const wxBaseArray&)src);
132 // so using a temporary variable instead.
134 // The classes need a (even trivial) ~name() to link under Mac X
136 // _WX_ERROR_REMOVE is needed to resolve the name conflict between the wxT()
137 // macro and T typedef: we can't use wxT() inside WX_DEFINE_ARRAY!
139 #define _WX_ERROR_REMOVE wxT("removing inexisting element in wxArray::Remove")
141 // ----------------------------------------------------------------------------
142 // _WX_DEFINE_TYPEARRAY: array for simple types
143 // ----------------------------------------------------------------------------
145 #define _WX_DEFINE_TYPEARRAY(T, name, base, classexp) \
146 wxCOMPILE_TIME_ASSERT2(sizeof(T) <= sizeof(base::base_type), \
147 TypeTooBigToBeStoredIn##base, \
149 typedef int (CMPFUNC_CONV *CMPFUNC##T)(T *pItem1, T *pItem2); \
150 classexp name : public base \
156 name& operator=(const name& src) \
157 { base* temp = (base*) this; \
158 (*temp) = ((const base&)src); \
161 T& operator[](size_t uiIndex) const \
162 { return (T&)(base::Item(uiIndex)); } \
163 T& Item(size_t uiIndex) const \
164 { return (T&)(base::Item(uiIndex)); } \
166 { return (T&)(base::Item(Count() - 1)); } \
168 int Index(T Item, bool bFromEnd = FALSE) const \
169 { return base::Index(Item, bFromEnd); } \
172 { base::Add(Item); } \
173 void Insert(T Item, size_t uiIndex) \
174 { base::Insert(Item, uiIndex) ; } \
176 void RemoveAt(size_t uiIndex) { base::RemoveAt(uiIndex); } \
177 void Remove(T Item) \
178 { int iIndex = Index(Item); \
179 wxCHECK2_MSG( iIndex != wxNOT_FOUND, return, \
181 base::RemoveAt((size_t)iIndex); } \
183 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC)fCmp); } \
186 // ----------------------------------------------------------------------------
187 // _WX_DEFINE_SORTED_TYPEARRAY: sorted array for simple data types
188 // cannot handle types with size greater than pointer because of sorting
189 // ----------------------------------------------------------------------------
191 #define _WX_DEFINE_SORTED_TYPEARRAY(T, name, base, defcomp, classexp) \
192 wxCOMPILE_TIME_ASSERT2(sizeof(T) <= sizeof(void *), \
193 TypeTooBigToBeStoredInSorted##base, \
195 typedef int (CMPFUNC_CONV *SCMPFUNC##T)(T pItem1, T pItem2); \
196 classexp name : public base \
199 name(SCMPFUNC##T fn defcomp) { m_fnCompare = fn; } \
201 name& operator=(const name& src) \
202 { base* temp = (base*) this; \
203 (*temp) = ((const base&)src); \
204 m_fnCompare = src.m_fnCompare; \
207 T& operator[](size_t uiIndex) const \
208 { return (T&)(base::Item(uiIndex)); } \
209 T& Item(size_t uiIndex) const \
210 { return (T&)(base::Item(uiIndex)); } \
212 { return (T&)(base::Item(Count() - 1)); } \
214 int Index(T Item) const \
215 { return base::Index(Item, (CMPFUNC)m_fnCompare); } \
217 size_t IndexForInsert(T Item) const \
218 { return base::IndexForInsert(Item, (CMPFUNC)m_fnCompare); } \
220 void AddAt(T item, size_t index) \
221 { base::Insert(item, index); } \
224 { base::Add(Item, (CMPFUNC)m_fnCompare); } \
226 void RemoveAt(size_t uiIndex) { base::RemoveAt(uiIndex); } \
227 void Remove(T Item) \
228 { int iIndex = Index(Item); \
229 wxCHECK2_MSG( iIndex != wxNOT_FOUND, return, \
230 _WX_ERROR_REMOVE ); \
231 base::RemoveAt((size_t)iIndex); } \
234 SCMPFUNC##T m_fnCompare; \
237 // ----------------------------------------------------------------------------
238 // _WX_DECLARE_OBJARRAY: an array for pointers to type T with owning semantics
239 // ----------------------------------------------------------------------------
241 #define _WX_DECLARE_OBJARRAY(T, name, base, classexp) \
242 typedef int (CMPFUNC_CONV *CMPFUNC##T)(T **pItem1, T **pItem2); \
243 classexp name : public base \
245 typedef int (CMPFUNC_CONV *CMPFUNC##base)(void **pItem1, void **pItem2); \
248 name(const name& src); \
249 name& operator=(const name& src); \
253 T& operator[](size_t uiIndex) const \
254 { return *(T*)base::Item(uiIndex); } \
255 T& Item(size_t uiIndex) const \
256 { return *(T*)base::Item(uiIndex); } \
258 { return *(T*)(base::Item(Count() - 1)); } \
260 int Index(const T& Item, bool bFromEnd = FALSE) const; \
262 void Add(const T& Item); \
263 void Add(const T* pItem) \
264 { base::Add((T*)pItem); } \
266 void Insert(const T& Item, size_t uiIndex); \
267 void Insert(const T* pItem, size_t uiIndex) \
268 { base::Insert((T*)pItem, uiIndex); } \
270 void Empty() { DoEmpty(); base::Empty(); } \
271 void Clear() { DoEmpty(); base::Clear(); } \
273 T* Detach(size_t uiIndex) \
274 { T* p = (T*)base::Item(uiIndex); \
275 base::RemoveAt(uiIndex); return p; } \
276 void RemoveAt(size_t uiIndex); \
278 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC##base)fCmp); } \
282 void DoCopy(const name& src); \
285 // ============================================================================
286 // The public macros for declaration and definition of the dynamic arrays
287 // ============================================================================
289 // Please note that for each macro WX_FOO_ARRAY we also have
290 // WX_FOO_EXPORTED_ARRAY and WX_FOO_USER_EXPORTED_ARRAY which are exactly the
291 // same except that they use an additional __declspec(dllexport) or equivalent
292 // under Windows if needed.
294 // The first (just EXPORTED) macros do it if wxWindows was compiled as a DLL
295 // and so must be used used inside the library. The second kind (USER_EXPORTED)
296 // allow the user code to do it when it wants. This is needed if you have a dll
297 // that wants to export a wxArray daubed with your own import/export goo.
299 // Finally, you can define the macro below as something special to modify the
300 // arrays defined by a simple WX_FOO_ARRAY as well. By default is is empty.
301 #define wxARRAY_DEFAULT_EXPORT
303 // ----------------------------------------------------------------------------
304 // WX_DECLARE_BASEARRAY(T, name) declare an array class named "name" containing
305 // the elements of type T
306 // ----------------------------------------------------------------------------
308 #define WX_DECLARE_BASEARRAY(T, name) \
309 WX_DECLARE_USER_EXPORTED_BASEARRAY(T, name, wxARRAY_DEFAULT_EXPORT)
311 #define WX_DECLARE_EXPORTED_BASEARRAY(T, name) \
312 WX_DECLARE_USER_EXPORTED_BASEARRAY(T, name, WXDLLEXPORT)
314 #define WX_DECLARE_USER_EXPORTED_BASEARRAY(T, name, expmode) \
315 typedef T _wxArray##name; \
316 _WX_DECLARE_BASEARRAY(_wxArray##name, name, class expmode)
318 // ----------------------------------------------------------------------------
319 // WX_DEFINE_TYPEARRAY(T, name, base) define an array class named "name" deriving
320 // from class "base" containing the elements of type T
322 // Note that the class defined has only inline function and doesn't take any
323 // space at all so there is no size penalty for defining multiple array classes
324 // ----------------------------------------------------------------------------
326 #define WX_DEFINE_TYPEARRAY(T, name, base) \
327 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, base, wxARRAY_DEFAULT_EXPORT)
329 #define WX_DEFINE_EXPORTED_TYPEARRAY(T, name, base) \
330 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, base, WXDLLEXPORT)
332 #define WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, base, expmode) \
333 typedef T _wxArray##name; \
334 _WX_DEFINE_TYPEARRAY(_wxArray##name, name, base, class expmode)
336 // ----------------------------------------------------------------------------
337 // WX_DEFINE_SORTED_TYPEARRAY: this is the same as the previous macro, but it
338 // defines a sorted array.
341 // 1) it must be given a COMPARE function in ctor which takes 2 items of type
342 // T* and should return -1, 0 or +1 if the first one is less/greater
343 // than/equal to the second one.
344 // 2) the Add() method inserts the item in such was that the array is always
345 // sorted (it uses the COMPARE function)
346 // 3) it has no Sort() method because it's always sorted
347 // 4) Index() method is much faster (the sorted arrays use binary search
348 // instead of linear one), but Add() is slower.
349 // 5) there is no Insert() method because you can't insert an item into the
350 // given position in a sorted array but there is IndexForInsert()/AddAt()
351 // pair which may be used to optimize a common operation of "insert only if
354 // Note that you have to specify the comparison function when creating the
355 // objects of this array type. If, as in 99% of cases, the comparison function
356 // is the same for all objects of a class, WX_DEFINE_SORTED_TYPEARRAY_CMP below
357 // is more convenient.
359 // Summary: use this class when the speed of Index() function is important, use
360 // the normal arrays otherwise.
361 // ----------------------------------------------------------------------------
363 #define wxARRAY_EMPTY_CMP
365 #define WX_DEFINE_SORTED_TYPEARRAY(T, name, base) \
366 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, base, \
367 wxARRAY_DEFAULT_EXPORT)
369 #define WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, base) \
370 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, base, WXDLLEXPORT)
372 #define WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, base, expmode) \
373 typedef T _wxArray##name; \
374 _WX_DEFINE_SORTED_TYPEARRAY(_wxArray##name, name, base, \
375 wxARRAY_EMPTY_CMP, class expmode)
377 // ----------------------------------------------------------------------------
378 // WX_DEFINE_SORTED_TYPEARRAY_CMP: exactly the same as above but the comparison
379 // function is provided by this macro and the objects of this class have a
380 // default constructor which just uses it.
382 // The arguments are: the element type, the comparison function and the array
385 // NB: this is, of course, how WX_DEFINE_SORTED_TYPEARRAY() should have worked
386 // from the very beginning - unfortunately I didn't think about this earlier
387 // ----------------------------------------------------------------------------
389 #define WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, base) \
390 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base, \
391 wxARRAY_DEFAULT_EXPORT)
393 #define WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base) \
394 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base, \
397 #define WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base, \
399 typedef T _wxArray##name; \
400 _WX_DEFINE_SORTED_TYPEARRAY(_wxArray##name, name, base, = cmpfunc, \
403 // ----------------------------------------------------------------------------
404 // WX_DECLARE_OBJARRAY(T, name): this macro generates a new array class
405 // named "name" which owns the objects of type T it contains, i.e. it will
406 // delete them when it is destroyed.
408 // An element is of type T*, but arguments of type T& are taken (see below!)
409 // and T& is returned.
411 // Don't use this for simple types such as "int" or "long"!
413 // Note on Add/Insert functions:
414 // 1) function(T*) gives the object to the array, i.e. it will delete the
415 // object when it's removed or in the array's dtor
416 // 2) function(T&) will create a copy of the object and work with it
419 // 1) Remove() will delete the object after removing it from the array
420 // 2) Detach() just removes the object from the array (returning pointer to it)
422 // NB1: Base type T should have an accessible copy ctor if Add(T&) is used
423 // NB2: Never ever cast a array to it's base type: as dtor is not virtual
424 // and so you risk having at least the memory leaks and probably worse
426 // Some functions of this class are not inline, so it takes some space to
427 // define new class from this template even if you don't use it - which is not
428 // the case for the simple (non-object) array classes
430 // To use an objarray class you must
431 // #include "dynarray.h"
432 // WX_DECLARE_OBJARRAY(element_type, list_class_name)
433 // #include "arrimpl.cpp"
434 // WX_DEFINE_OBJARRAY(list_class_name) // name must be the same as above!
436 // This is necessary because at the moment of DEFINE_OBJARRAY class parsing the
437 // element_type must be fully defined (i.e. forward declaration is not
438 // enough), while WX_DECLARE_OBJARRAY may be done anywhere. The separation of
439 // two allows to break cicrcular dependencies with classes which have member
440 // variables of objarray type.
441 // ----------------------------------------------------------------------------
443 #define WX_DECLARE_OBJARRAY(T, name) \
444 WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name, wxARRAY_DEFAULT_EXPORT)
446 #define WX_DECLARE_EXPORTED_OBJARRAY(T, name) \
447 WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name, WXDLLEXPORT)
449 #define WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name, expmode) \
450 typedef T _wxObjArray##name; \
451 _WX_DECLARE_OBJARRAY(_wxObjArray##name, name, wxArrayPtrVoid, class expmode)
453 // WX_DEFINE_OBJARRAY is going to be redefined when arrimpl.cpp is included,
454 // try to provoke a human-understandable error if it used incorrectly.
456 // there is no real need for 3 different macros in the DEFINE case but do it
457 // anyhow for consistency
458 #define WX_DEFINE_OBJARRAY(name) DidYouIncludeArrimplCpp
459 #define WX_DEFINE_EXPORTED_OBJARRAY(name) WX_DEFINE_OBJARRAY(name)
460 #define WX_DEFINE_USER_EXPORTED_OBJARRAY(name) WX_DEFINE_OBJARRAY(name)
462 // ----------------------------------------------------------------------------
463 // Some commonly used predefined base arrays
464 // ----------------------------------------------------------------------------
466 WX_DECLARE_EXPORTED_BASEARRAY(const void *, wxBaseArrayPtrVoid
);
467 WX_DECLARE_EXPORTED_BASEARRAY(short, wxBaseArrayShort
);
468 WX_DECLARE_EXPORTED_BASEARRAY(int, wxBaseArrayInt
);
469 WX_DECLARE_EXPORTED_BASEARRAY(long, wxBaseArrayLong
);
470 WX_DECLARE_EXPORTED_BASEARRAY(double, wxBaseArrayDouble
);
472 // ----------------------------------------------------------------------------
473 // Convenience macros to define arrays from base arrays
474 // ----------------------------------------------------------------------------
476 #define WX_DEFINE_ARRAY(T, name) \
477 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
478 #define WX_DEFINE_EXPORTED_ARRAY(T, name) \
479 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
480 #define WX_DEFINE_USER_EXPORTED_ARRAY(T, name, expmode) \
481 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid, expmode)
483 #define WX_DEFINE_ARRAY_SHORT(T, name) \
484 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayShort)
485 #define WX_DEFINE_EXPORTED_ARRAY_SHORT(T, name) \
486 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort)
487 #define WX_DEFINE_USER_EXPORTED_ARRAY_SHORT(T, name, expmode) \
488 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort, expmode)
490 #define WX_DEFINE_ARRAY_INT(T, name) \
491 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayInt)
492 #define WX_DEFINE_EXPORTED_ARRAY_INT(T, name) \
493 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt)
494 #define WX_DEFINE_USER_EXPORTED_ARRAY_INT(T, name, expmode) \
495 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt, expmode)
497 #define WX_DEFINE_ARRAY_LONG(T, name) \
498 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayLong)
499 #define WX_DEFINE_EXPORTED_ARRAY_LONG(T, name) \
500 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong)
501 #define WX_DEFINE_USER_EXPORTED_ARRAY_LONG(T, name, expmode) \
502 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong, expmode)
504 #define WX_DEFINE_ARRAY_DOUBLE(T, name) \
505 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayDouble)
506 #define WX_DEFINE_EXPORTED_ARRAY_DOUBLE(T, name) \
507 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayDouble)
508 #define WX_DEFINE_USER_EXPORTED_ARRAY_DOUBLE(T, name, expmode) \
509 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayDouble, expmode)
511 // ----------------------------------------------------------------------------
512 // Convenience macros to define sorted arrays from base arrays
513 // ----------------------------------------------------------------------------
515 #define WX_DEFINE_SORTED_ARRAY(T, name) \
516 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
517 #define WX_DEFINE_SORTED_EXPORTED_ARRAY(T, name) \
518 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
519 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(T, name, expmode) \
520 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid, expmode)
522 #define WX_DEFINE_SORTED_ARRAY_SHORT(T, name) \
523 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayShort)
524 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_SHORT(T, name) \
525 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort)
526 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_SHORT(T, name, expmode) \
527 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort, expmode)
529 #define WX_DEFINE_SORTED_ARRAY_INT(T, name) \
530 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayInt)
531 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_INT(T, name) \
532 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt)
533 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_INT(T, name, expmode) \
534 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt, expmode)
536 #define WX_DEFINE_SORTED_ARRAY_LONG(T, name) \
537 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayLong)
538 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_LONG(T, name) \
539 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong)
540 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_LONG(T, name, expmode) \
541 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong, expmode)
543 // ----------------------------------------------------------------------------
544 // Convenience macros to define sorted arrays from base arrays
545 // ----------------------------------------------------------------------------
547 #define WX_DEFINE_SORTED_ARRAY_CMP(T, cmpfunc, name) \
548 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayPtrVoid)
549 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP(T, cmpfunc, name) \
550 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayPtrVoid)
551 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP(T, cmpfunc, \
553 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
554 wxBaseArrayPtrVoid, expmode)
556 #define WX_DEFINE_SORTED_ARRAY_CMP_SHORT(T, cmpfunc, name) \
557 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayShort)
558 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP_SHORT(T, cmpfunc, name) \
559 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayShort)
560 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP_SHORT(T, cmpfunc, \
562 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
563 wxBaseArrayShort, expmode)
565 #define WX_DEFINE_SORTED_ARRAY_CMP_INT(T, cmpfunc, name) \
566 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayInt)
567 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP_INT(T, cmpfunc, name) \
568 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayInt)
569 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP_INT(T, cmpfunc, \
571 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
572 wxBaseArrayInt, expmode)
574 #define WX_DEFINE_SORTED_ARRAY_CMP_LONG(T, cmpfunc, name) \
575 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayLong)
576 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP_LONG(T, cmpfunc, name) \
577 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayLong)
578 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP_LONG(T, cmpfunc, \
580 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
581 wxBaseArrayLong, expmode)
583 // ----------------------------------------------------------------------------
584 // Some commonly used predefined arrays
585 // ----------------------------------------------------------------------------
587 WX_DEFINE_EXPORTED_ARRAY_SHORT (short, wxArrayShort
);
588 WX_DEFINE_EXPORTED_ARRAY_INT (int, wxArrayInt
);
589 WX_DEFINE_EXPORTED_ARRAY_LONG (long, wxArrayLong
);
590 WX_DEFINE_EXPORTED_ARRAY (void *, wxArrayPtrVoid
);
592 // -----------------------------------------------------------------------------
593 // convenience macros
594 // -----------------------------------------------------------------------------
596 // append all element of one array to another one
597 #define WX_APPEND_ARRAY(array, other) \
599 size_t count = (other).Count(); \
600 for ( size_t n = 0; n < count; n++ ) \
602 (array).Add((other)[n]); \
606 // delete all array elements
608 // NB: the class declaration of the array elements must be visible from the
609 // place where you use this macro, otherwise the proper destructor may not
610 // be called (a decent compiler should give a warning about it, but don't
612 #define WX_CLEAR_ARRAY(array) \
614 size_t count = (array).Count(); \
615 for ( size_t n = 0; n < count; n++ ) \
623 #endif // _DYNARRAY_H