]>
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; \
106 void Add(T lItem, size_t nInsert = 1); \
107 void Add(T lItem, CMPFUNC fnCompare); \
108 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
109 void Remove(T lItem); \
110 void RemoveAt(size_t uiIndex, size_t nRemove = 1); \
112 void Sort(CMPFUNC fnCompare); \
116 void Grow(size_t nIncrement = 0); \
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); } \
171 void Add(T Item, size_t nInsert = 1) \
172 { base::Add(Item, nInsert); } \
173 void Insert(T Item, size_t uiIndex, size_t nInsert = 1) \
174 { base::Insert(Item, uiIndex, nInsert) ; } \
176 void RemoveAt(size_t uiIndex, size_t nRemove = 1) \
177 { base::RemoveAt(uiIndex, nRemove); } \
178 void Remove(T Item) \
179 { int iIndex = Index(Item); \
180 wxCHECK2_MSG( iIndex != wxNOT_FOUND, return, \
182 base::RemoveAt((size_t)iIndex); } \
184 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC)fCmp); } \
187 // ----------------------------------------------------------------------------
188 // _WX_DEFINE_SORTED_TYPEARRAY: sorted array for simple data types
189 // cannot handle types with size greater than pointer because of sorting
190 // ----------------------------------------------------------------------------
192 #define _WX_DEFINE_SORTED_TYPEARRAY(T, name, base, defcomp, classexp) \
193 wxCOMPILE_TIME_ASSERT2(sizeof(T) <= sizeof(void *), \
194 TypeTooBigToBeStoredInSorted##base, \
196 typedef int (CMPFUNC_CONV *SCMPFUNC##T)(T pItem1, T pItem2); \
197 classexp name : public base \
200 name(SCMPFUNC##T fn defcomp) { m_fnCompare = fn; } \
202 name& operator=(const name& src) \
203 { base* temp = (base*) this; \
204 (*temp) = ((const base&)src); \
205 m_fnCompare = src.m_fnCompare; \
208 T& operator[](size_t uiIndex) const \
209 { return (T&)(base::Item(uiIndex)); } \
210 T& Item(size_t uiIndex) const \
211 { return (T&)(base::Item(uiIndex)); } \
213 { return (T&)(base::Item(Count() - 1)); } \
215 int Index(T Item) const \
216 { return base::Index(Item, (CMPFUNC)m_fnCompare); } \
218 size_t IndexForInsert(T Item) const \
219 { return base::IndexForInsert(Item, (CMPFUNC)m_fnCompare); } \
221 void AddAt(T item, size_t index) \
222 { base::Insert(item, index); } \
225 { base::Add(Item, (CMPFUNC)m_fnCompare); } \
227 void RemoveAt(size_t uiIndex, size_t nRemove = 1) \
228 { base::RemoveAt(uiIndex, nRemove); } \
229 void Remove(T Item) \
230 { int iIndex = Index(Item); \
231 wxCHECK2_MSG( iIndex != wxNOT_FOUND, return, \
232 _WX_ERROR_REMOVE ); \
233 base::RemoveAt((size_t)iIndex); } \
236 SCMPFUNC##T m_fnCompare; \
239 // ----------------------------------------------------------------------------
240 // _WX_DECLARE_OBJARRAY: an array for pointers to type T with owning semantics
241 // ----------------------------------------------------------------------------
243 #define _WX_DECLARE_OBJARRAY(T, name, base, classexp) \
244 typedef int (CMPFUNC_CONV *CMPFUNC##T)(T **pItem1, T **pItem2); \
245 classexp name : public base \
247 typedef int (CMPFUNC_CONV *CMPFUNC##base)(void **pItem1, void **pItem2); \
250 name(const name& src); \
251 name& operator=(const name& src); \
255 T& operator[](size_t uiIndex) const \
256 { return *(T*)base::Item(uiIndex); } \
257 T& Item(size_t uiIndex) const \
258 { return *(T*)base::Item(uiIndex); } \
260 { return *(T*)(base::Item(Count() - 1)); } \
262 int Index(const T& Item, bool bFromEnd = FALSE) const; \
264 void Add(const T& Item, size_t nInsert = 1); \
265 void Add(const T* pItem) \
266 { base::Add((T*)pItem); } \
268 void Insert(const T& Item, size_t uiIndex, size_t nInsert = 1); \
269 void Insert(const T* pItem, size_t uiIndex) \
270 { base::Insert((T*)pItem, uiIndex); } \
272 void Empty() { DoEmpty(); base::Empty(); } \
273 void Clear() { DoEmpty(); base::Clear(); } \
275 T* Detach(size_t uiIndex) \
276 { T* p = (T*)base::Item(uiIndex); \
277 base::RemoveAt(uiIndex); return p; } \
278 void RemoveAt(size_t uiIndex, size_t nRemove = 1); \
280 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC##base)fCmp); } \
284 void DoCopy(const name& src); \
287 // ============================================================================
288 // The public macros for declaration and definition of the dynamic arrays
289 // ============================================================================
291 // Please note that for each macro WX_FOO_ARRAY we also have
292 // WX_FOO_EXPORTED_ARRAY and WX_FOO_USER_EXPORTED_ARRAY which are exactly the
293 // same except that they use an additional __declspec(dllexport) or equivalent
294 // under Windows if needed.
296 // The first (just EXPORTED) macros do it if wxWindows was compiled as a DLL
297 // and so must be used used inside the library. The second kind (USER_EXPORTED)
298 // allow the user code to do it when it wants. This is needed if you have a dll
299 // that wants to export a wxArray daubed with your own import/export goo.
301 // Finally, you can define the macro below as something special to modify the
302 // arrays defined by a simple WX_FOO_ARRAY as well. By default is is empty.
303 #define wxARRAY_DEFAULT_EXPORT
305 // ----------------------------------------------------------------------------
306 // WX_DECLARE_BASEARRAY(T, name) declare an array class named "name" containing
307 // the elements of type T
308 // ----------------------------------------------------------------------------
310 #define WX_DECLARE_BASEARRAY(T, name) \
311 WX_DECLARE_USER_EXPORTED_BASEARRAY(T, name, wxARRAY_DEFAULT_EXPORT)
313 #define WX_DECLARE_EXPORTED_BASEARRAY(T, name) \
314 WX_DECLARE_USER_EXPORTED_BASEARRAY(T, name, WXDLLEXPORT)
316 #define WX_DECLARE_USER_EXPORTED_BASEARRAY(T, name, expmode) \
317 typedef T _wxArray##name; \
318 _WX_DECLARE_BASEARRAY(_wxArray##name, name, class expmode)
320 // ----------------------------------------------------------------------------
321 // WX_DEFINE_TYPEARRAY(T, name, base) define an array class named "name" deriving
322 // from class "base" containing the elements of type T
324 // Note that the class defined has only inline function and doesn't take any
325 // space at all so there is no size penalty for defining multiple array classes
326 // ----------------------------------------------------------------------------
328 #define WX_DEFINE_TYPEARRAY(T, name, base) \
329 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, base, wxARRAY_DEFAULT_EXPORT)
331 #define WX_DEFINE_EXPORTED_TYPEARRAY(T, name, base) \
332 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, base, WXDLLEXPORT)
334 #define WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, base, expmode) \
335 typedef T _wxArray##name; \
336 _WX_DEFINE_TYPEARRAY(_wxArray##name, name, base, class expmode)
338 // ----------------------------------------------------------------------------
339 // WX_DEFINE_SORTED_TYPEARRAY: this is the same as the previous macro, but it
340 // defines a sorted array.
343 // 1) it must be given a COMPARE function in ctor which takes 2 items of type
344 // T* and should return -1, 0 or +1 if the first one is less/greater
345 // than/equal to the second one.
346 // 2) the Add() method inserts the item in such was that the array is always
347 // sorted (it uses the COMPARE function)
348 // 3) it has no Sort() method because it's always sorted
349 // 4) Index() method is much faster (the sorted arrays use binary search
350 // instead of linear one), but Add() is slower.
351 // 5) there is no Insert() method because you can't insert an item into the
352 // given position in a sorted array but there is IndexForInsert()/AddAt()
353 // pair which may be used to optimize a common operation of "insert only if
356 // Note that you have to specify the comparison function when creating the
357 // objects of this array type. If, as in 99% of cases, the comparison function
358 // is the same for all objects of a class, WX_DEFINE_SORTED_TYPEARRAY_CMP below
359 // is more convenient.
361 // Summary: use this class when the speed of Index() function is important, use
362 // the normal arrays otherwise.
363 // ----------------------------------------------------------------------------
365 #define wxARRAY_EMPTY_CMP
367 #define WX_DEFINE_SORTED_TYPEARRAY(T, name, base) \
368 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, base, \
369 wxARRAY_DEFAULT_EXPORT)
371 #define WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, base) \
372 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, base, WXDLLEXPORT)
374 #define WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, base, expmode) \
375 typedef T _wxArray##name; \
376 _WX_DEFINE_SORTED_TYPEARRAY(_wxArray##name, name, base, \
377 wxARRAY_EMPTY_CMP, class expmode)
379 // ----------------------------------------------------------------------------
380 // WX_DEFINE_SORTED_TYPEARRAY_CMP: exactly the same as above but the comparison
381 // function is provided by this macro and the objects of this class have a
382 // default constructor which just uses it.
384 // The arguments are: the element type, the comparison function and the array
387 // NB: this is, of course, how WX_DEFINE_SORTED_TYPEARRAY() should have worked
388 // from the very beginning - unfortunately I didn't think about this earlier
389 // ----------------------------------------------------------------------------
391 #define WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, base) \
392 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base, \
393 wxARRAY_DEFAULT_EXPORT)
395 #define WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base) \
396 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base, \
399 #define WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, base, \
401 typedef T _wxArray##name; \
402 _WX_DEFINE_SORTED_TYPEARRAY(_wxArray##name, name, base, = cmpfunc, \
405 // ----------------------------------------------------------------------------
406 // WX_DECLARE_OBJARRAY(T, name): this macro generates a new array class
407 // named "name" which owns the objects of type T it contains, i.e. it will
408 // delete them when it is destroyed.
410 // An element is of type T*, but arguments of type T& are taken (see below!)
411 // and T& is returned.
413 // Don't use this for simple types such as "int" or "long"!
415 // Note on Add/Insert functions:
416 // 1) function(T*) gives the object to the array, i.e. it will delete the
417 // object when it's removed or in the array's dtor
418 // 2) function(T&) will create a copy of the object and work with it
421 // 1) Remove() will delete the object after removing it from the array
422 // 2) Detach() just removes the object from the array (returning pointer to it)
424 // NB1: Base type T should have an accessible copy ctor if Add(T&) is used
425 // NB2: Never ever cast a array to it's base type: as dtor is not virtual
426 // and so you risk having at least the memory leaks and probably worse
428 // Some functions of this class are not inline, so it takes some space to
429 // define new class from this template even if you don't use it - which is not
430 // the case for the simple (non-object) array classes
432 // To use an objarray class you must
433 // #include "dynarray.h"
434 // WX_DECLARE_OBJARRAY(element_type, list_class_name)
435 // #include "arrimpl.cpp"
436 // WX_DEFINE_OBJARRAY(list_class_name) // name must be the same as above!
438 // This is necessary because at the moment of DEFINE_OBJARRAY class parsing the
439 // element_type must be fully defined (i.e. forward declaration is not
440 // enough), while WX_DECLARE_OBJARRAY may be done anywhere. The separation of
441 // two allows to break cicrcular dependencies with classes which have member
442 // variables of objarray type.
443 // ----------------------------------------------------------------------------
445 #define WX_DECLARE_OBJARRAY(T, name) \
446 WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name, wxARRAY_DEFAULT_EXPORT)
448 #define WX_DECLARE_EXPORTED_OBJARRAY(T, name) \
449 WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name, WXDLLEXPORT)
451 #define WX_DECLARE_USER_EXPORTED_OBJARRAY(T, name, expmode) \
452 typedef T _wxObjArray##name; \
453 _WX_DECLARE_OBJARRAY(_wxObjArray##name, name, wxArrayPtrVoid, class expmode)
455 // WX_DEFINE_OBJARRAY is going to be redefined when arrimpl.cpp is included,
456 // try to provoke a human-understandable error if it used incorrectly.
458 // there is no real need for 3 different macros in the DEFINE case but do it
459 // anyhow for consistency
460 #define WX_DEFINE_OBJARRAY(name) DidYouIncludeArrimplCpp
461 #define WX_DEFINE_EXPORTED_OBJARRAY(name) WX_DEFINE_OBJARRAY(name)
462 #define WX_DEFINE_USER_EXPORTED_OBJARRAY(name) WX_DEFINE_OBJARRAY(name)
464 // ----------------------------------------------------------------------------
465 // Some commonly used predefined base arrays
466 // ----------------------------------------------------------------------------
468 WX_DECLARE_EXPORTED_BASEARRAY(const void *, wxBaseArrayPtrVoid
);
469 WX_DECLARE_EXPORTED_BASEARRAY(short, wxBaseArrayShort
);
470 WX_DECLARE_EXPORTED_BASEARRAY(int, wxBaseArrayInt
);
471 WX_DECLARE_EXPORTED_BASEARRAY(long, wxBaseArrayLong
);
472 WX_DECLARE_EXPORTED_BASEARRAY(double, wxBaseArrayDouble
);
474 // ----------------------------------------------------------------------------
475 // Convenience macros to define arrays from base arrays
476 // ----------------------------------------------------------------------------
478 #define WX_DEFINE_ARRAY(T, name) \
479 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
480 #define WX_DEFINE_EXPORTED_ARRAY(T, name) \
481 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
482 #define WX_DEFINE_USER_EXPORTED_ARRAY(T, name, expmode) \
483 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid, expmode)
485 #define WX_DEFINE_ARRAY_SHORT(T, name) \
486 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayShort)
487 #define WX_DEFINE_EXPORTED_ARRAY_SHORT(T, name) \
488 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort)
489 #define WX_DEFINE_USER_EXPORTED_ARRAY_SHORT(T, name, expmode) \
490 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort, expmode)
492 #define WX_DEFINE_ARRAY_INT(T, name) \
493 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayInt)
494 #define WX_DEFINE_EXPORTED_ARRAY_INT(T, name) \
495 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt)
496 #define WX_DEFINE_USER_EXPORTED_ARRAY_INT(T, name, expmode) \
497 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt, expmode)
499 #define WX_DEFINE_ARRAY_LONG(T, name) \
500 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayLong)
501 #define WX_DEFINE_EXPORTED_ARRAY_LONG(T, name) \
502 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong)
503 #define WX_DEFINE_USER_EXPORTED_ARRAY_LONG(T, name, expmode) \
504 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong, expmode)
506 #define WX_DEFINE_ARRAY_DOUBLE(T, name) \
507 WX_DEFINE_TYPEARRAY(T, name, wxBaseArrayDouble)
508 #define WX_DEFINE_EXPORTED_ARRAY_DOUBLE(T, name) \
509 WX_DEFINE_EXPORTED_TYPEARRAY(T, name, wxBaseArrayDouble)
510 #define WX_DEFINE_USER_EXPORTED_ARRAY_DOUBLE(T, name, expmode) \
511 WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayDouble, expmode)
513 // ----------------------------------------------------------------------------
514 // Convenience macros to define sorted arrays from base arrays
515 // ----------------------------------------------------------------------------
517 #define WX_DEFINE_SORTED_ARRAY(T, name) \
518 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
519 #define WX_DEFINE_SORTED_EXPORTED_ARRAY(T, name) \
520 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid)
521 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(T, name, expmode) \
522 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayPtrVoid, expmode)
524 #define WX_DEFINE_SORTED_ARRAY_SHORT(T, name) \
525 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayShort)
526 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_SHORT(T, name) \
527 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort)
528 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_SHORT(T, name, expmode) \
529 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayShort, expmode)
531 #define WX_DEFINE_SORTED_ARRAY_INT(T, name) \
532 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayInt)
533 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_INT(T, name) \
534 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt)
535 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_INT(T, name, expmode) \
536 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayInt, expmode)
538 #define WX_DEFINE_SORTED_ARRAY_LONG(T, name) \
539 WX_DEFINE_SORTED_TYPEARRAY(T, name, wxBaseArrayLong)
540 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_LONG(T, name) \
541 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong)
542 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_LONG(T, name, expmode) \
543 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayLong, expmode)
545 // ----------------------------------------------------------------------------
546 // Convenience macros to define sorted arrays from base arrays
547 // ----------------------------------------------------------------------------
549 #define WX_DEFINE_SORTED_ARRAY_CMP(T, cmpfunc, name) \
550 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayPtrVoid)
551 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP(T, cmpfunc, name) \
552 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayPtrVoid)
553 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP(T, cmpfunc, \
555 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
556 wxBaseArrayPtrVoid, expmode)
558 #define WX_DEFINE_SORTED_ARRAY_CMP_SHORT(T, cmpfunc, name) \
559 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayShort)
560 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP_SHORT(T, cmpfunc, name) \
561 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayShort)
562 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP_SHORT(T, cmpfunc, \
564 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
565 wxBaseArrayShort, expmode)
567 #define WX_DEFINE_SORTED_ARRAY_CMP_INT(T, cmpfunc, name) \
568 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayInt)
569 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP_INT(T, cmpfunc, name) \
570 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayInt)
571 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP_INT(T, cmpfunc, \
573 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
574 wxBaseArrayInt, expmode)
576 #define WX_DEFINE_SORTED_ARRAY_CMP_LONG(T, cmpfunc, name) \
577 WX_DEFINE_SORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayLong)
578 #define WX_DEFINE_SORTED_EXPORTED_ARRAY_CMP_LONG(T, cmpfunc, name) \
579 WX_DEFINE_SORTED_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, wxBaseArrayLong)
580 #define WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_CMP_LONG(T, cmpfunc, \
582 WX_DEFINE_SORTED_USER_EXPORTED_TYPEARRAY_CMP(T, cmpfunc, name, \
583 wxBaseArrayLong, expmode)
585 // ----------------------------------------------------------------------------
586 // Some commonly used predefined arrays
587 // ----------------------------------------------------------------------------
589 WX_DEFINE_EXPORTED_ARRAY_SHORT (short, wxArrayShort
);
590 WX_DEFINE_EXPORTED_ARRAY_INT (int, wxArrayInt
);
591 WX_DEFINE_EXPORTED_ARRAY_LONG (long, wxArrayLong
);
592 WX_DEFINE_EXPORTED_ARRAY (void *, wxArrayPtrVoid
);
594 // -----------------------------------------------------------------------------
595 // convenience macros
596 // -----------------------------------------------------------------------------
598 // append all element of one array to another one
599 #define WX_APPEND_ARRAY(array, other) \
601 size_t count = (other).Count(); \
602 for ( size_t n = 0; n < count; n++ ) \
604 (array).Add((other)[n]); \
608 // delete all array elements
610 // NB: the class declaration of the array elements must be visible from the
611 // place where you use this macro, otherwise the proper destructor may not
612 // be called (a decent compiler should give a warning about it, but don't
614 #define WX_CLEAR_ARRAY(array) \
616 size_t count = (array).Count(); \
617 for ( size_t n = 0; n < count; n++ ) \
625 #endif // _DYNARRAY_H