]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/arrimpl.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: helper file for implementation of dynamic lists
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1997 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 /*****************************************************************************
13 * Purpose: implements methods of "template" class declared in *
14 * DECLARE_OBJARRAY macro and which couldn't be implemented inline *
15 * (because they need the full definition of type T in scope) *
17 * Usage: 1) #include dynarray.h *
18 * 2) WX_DECLARE_OBJARRAY *
19 * 3) #include arrimpl.cpp *
20 * 4) WX_DEFINE_OBJARRAY *
21 *****************************************************************************/
23 // macro implements remaining (not inline) methods of template list
24 // (it's private to this file)
25 #undef _DEFINE_OBJARRAY
26 #define _DEFINE_OBJARRAY(T, name) \
32 void name::DoCopy(const name& src) \
34 for ( size_t ui = 0; ui < src.Count(); ui++ ) \
38 name& name::operator=(const name& src) \
46 name::name(const name& src) \
53 for ( size_t ui = 0; ui < Count(); ui++ ) \
54 delete (T*)wxBaseArray::Item(ui); \
56 wxBaseArray::Clear(); \
59 void name::Remove(size_t uiIndex) \
61 wxCHECK_RET( uiIndex < Count(), "bad index in " #name "::Remove()" ); \
63 delete (T*)wxBaseArray::Item(uiIndex); \
65 wxBaseArray::Remove(uiIndex); \
68 void name::Add(const T& item) \
70 T* pItem = new T(item); \
71 if ( pItem != NULL ) \
75 void name::Insert(const T& item, size_t uiIndex) \
77 T* pItem = new T(item); \
78 if ( pItem != NULL ) \
79 Insert(pItem, uiIndex); \
82 int name::Index(const T& Item, bool bFromEnd) const \
85 if ( Count() > 0 ) { \
86 size_t ui = Count() - 1; \
88 if ( (T*)wxBaseArray::Item(ui) == &Item ) \
96 for( size_t ui = 0; ui < Count(); ui++ ) { \
97 if( (T*)wxBaseArray::Item(ui) == &Item ) \
102 return wxNOT_FOUND; \
105 // redefine the macro so that now it will generate the class implementation
106 // old value would provoke a compile-time error if this file is not included
107 #undef WX_DEFINE_OBJARRAY
108 #define WX_DEFINE_OBJARRAY(name) _DEFINE_OBJARRAY(_L##name, name)