implement wxWindow::DragAcceptFiles() on all platforms
[wxWidgets.git] / include / wx / arrstr.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/arrstr.h
3 // Purpose: wxArrayString class
4 // Author: Mattia Barbon and Vadim Zeitlin
5 // Modified by:
6 // Created: 07/07/03
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_ARRSTR_H
13 #define _WX_ARRSTR_H
14
15 #include "wx/defs.h"
16 #include "wx/string.h"
17
18 // these functions are only used in STL build now but we define them in any
19 // case for compatibility with the existing code outside of the library which
20 // could be using them
21 inline int wxCMPFUNC_CONV wxStringSortAscending(wxString* s1, wxString* s2)
22 {
23 return s1->Cmp(*s2);
24 }
25
26 inline int wxCMPFUNC_CONV wxStringSortDescending(wxString* s1, wxString* s2)
27 {
28 return wxStringSortAscending(s2, s1);
29 }
30
31 #if wxUSE_STL
32
33 #include "wx/dynarray.h"
34
35 typedef int (wxCMPFUNC_CONV *CMPFUNCwxString)(wxString*, wxString*);
36 typedef wxString _wxArraywxBaseArrayStringBase;
37 _WX_DECLARE_BASEARRAY_2(_wxArraywxBaseArrayStringBase, wxBaseArrayStringBase,
38 wxArray_SortFunction<wxString>,
39 class WXDLLIMPEXP_BASE);
40 WX_DEFINE_USER_EXPORTED_TYPEARRAY(wxString, wxArrayStringBase,
41 wxBaseArrayStringBase, WXDLLIMPEXP_BASE);
42 _WX_DEFINE_SORTED_TYPEARRAY_2(wxString, wxSortedArrayStringBase,
43 wxBaseArrayStringBase, = wxStringSortAscending,
44 class WXDLLIMPEXP_BASE, CMPFUNCwxString);
45
46 class WXDLLIMPEXP_BASE wxArrayString : public wxArrayStringBase
47 {
48 public:
49 // type of function used by wxArrayString::Sort()
50 typedef int (wxCMPFUNC_CONV *CompareFunction)(const wxString& first,
51 const wxString& second);
52
53 wxArrayString() { }
54 wxArrayString(const wxArrayString& a) : wxArrayStringBase(a) { }
55 wxArrayString(size_t sz, const char** a);
56 wxArrayString(size_t sz, const wchar_t** a);
57 wxArrayString(size_t sz, const wxString* a);
58
59 int Index(const wxString& str, bool bCase = true, bool bFromEnd = false) const;
60
61 void Sort(bool reverseOrder = false);
62 void Sort(CompareFunction function);
63 void Sort(CMPFUNCwxString function) { wxArrayStringBase::Sort(function); }
64
65 size_t Add(const wxString& string, size_t copies = 1)
66 {
67 wxArrayStringBase::Add(string, copies);
68 return size() - copies;
69 }
70 };
71
72 class WXDLLIMPEXP_BASE wxSortedArrayString : public wxSortedArrayStringBase
73 {
74 public:
75 wxSortedArrayString() : wxSortedArrayStringBase(wxStringSortAscending)
76 { }
77 wxSortedArrayString(const wxSortedArrayString& array)
78 : wxSortedArrayStringBase(array)
79 { }
80 wxSortedArrayString(const wxArrayString& src)
81 : wxSortedArrayStringBase(wxStringSortAscending)
82 {
83 reserve(src.size());
84
85 for ( size_t n = 0; n < src.size(); n++ )
86 Add(src[n]);
87 }
88
89 int Index(const wxString& str, bool bCase = true, bool bFromEnd = false) const;
90 };
91
92 #else // if !wxUSE_STL
93
94 class WXDLLIMPEXP_BASE wxArrayString
95 {
96 public:
97 // type of function used by wxArrayString::Sort()
98 typedef int (wxCMPFUNC_CONV *CompareFunction)(const wxString& first,
99 const wxString& second);
100 // type of function used by wxArrayString::Sort(), for compatibility with
101 // wxArray
102 typedef int (wxCMPFUNC_CONV *CompareFunction2)(wxString* first,
103 wxString* second);
104
105 // constructors and destructor
106 // default ctor
107 wxArrayString() { Init(false); }
108 // if autoSort is true, the array is always sorted (in alphabetical order)
109 //
110 // NB: the reason for using int and not bool is that like this we can avoid
111 // using this ctor for implicit conversions from "const char *" (which
112 // we'd like to be implicitly converted to wxString instead!)
113 //
114 // of course, using explicit would be even better - if all compilers
115 // supported it...
116 wxArrayString(int autoSort) { Init(autoSort != 0); }
117 // C string array ctor
118 wxArrayString(size_t sz, const char** a);
119 wxArrayString(size_t sz, const wchar_t** a);
120 // wxString string array ctor
121 wxArrayString(size_t sz, const wxString* a);
122 // copy ctor
123 wxArrayString(const wxArrayString& array);
124 // assignment operator
125 wxArrayString& operator=(const wxArrayString& src);
126 // not virtual, this class should not be derived from
127 ~wxArrayString();
128
129 // memory management
130 // empties the list, but doesn't release memory
131 void Empty();
132 // empties the list and releases memory
133 void Clear();
134 // preallocates memory for given number of items
135 void Alloc(size_t nCount);
136 // minimzes the memory usage (by freeing all extra memory)
137 void Shrink();
138
139 // simple accessors
140 // number of elements in the array
141 size_t GetCount() const { return m_nCount; }
142 // is it empty?
143 bool IsEmpty() const { return m_nCount == 0; }
144 // number of elements in the array (GetCount is preferred API)
145 size_t Count() const { return m_nCount; }
146
147 // items access (range checking is done in debug version)
148 // get item at position uiIndex
149 wxString& Item(size_t nIndex) const
150 {
151 wxASSERT_MSG( nIndex < m_nCount,
152 _T("wxArrayString: index out of bounds") );
153
154 return m_pItems[nIndex];
155 }
156
157 // same as Item()
158 wxString& operator[](size_t nIndex) const { return Item(nIndex); }
159 // get last item
160 wxString& Last() const
161 {
162 wxASSERT_MSG( !IsEmpty(),
163 _T("wxArrayString: index out of bounds") );
164 return Item(GetCount() - 1);
165 }
166
167
168 // item management
169 // Search the element in the array, starting from the beginning if
170 // bFromEnd is false or from end otherwise. If bCase, comparison is case
171 // sensitive (default). Returns index of the first item matched or
172 // wxNOT_FOUND
173 int Index (const wxString& str, bool bCase = true, bool bFromEnd = false) const;
174 // add new element at the end (if the array is not sorted), return its
175 // index
176 size_t Add(const wxString& str, size_t nInsert = 1);
177 // add new element at given position
178 void Insert(const wxString& str, size_t uiIndex, size_t nInsert = 1);
179 // expand the array to have count elements
180 void SetCount(size_t count);
181 // remove first item matching this value
182 void Remove(const wxString& sz);
183 // remove item by index
184 void RemoveAt(size_t nIndex, size_t nRemove = 1);
185
186 // sorting
187 // sort array elements in alphabetical order (or reversed alphabetical
188 // order if reverseOrder parameter is true)
189 void Sort(bool reverseOrder = false);
190 // sort array elements using specified comparison function
191 void Sort(CompareFunction compareFunction);
192 void Sort(CompareFunction2 compareFunction);
193
194 // comparison
195 // compare two arrays case sensitively
196 bool operator==(const wxArrayString& a) const;
197 // compare two arrays case sensitively
198 bool operator!=(const wxArrayString& a) const { return !(*this == a); }
199
200 // STL-like interface
201 typedef wxString value_type;
202 typedef value_type* pointer;
203 typedef const value_type* const_pointer;
204 typedef value_type* iterator;
205 typedef const value_type* const_iterator;
206 typedef value_type& reference;
207 typedef const value_type& const_reference;
208 typedef int difference_type;
209 typedef size_t size_type;
210
211 // TODO: this code duplicates the one in dynarray.h
212 class reverse_iterator
213 {
214 typedef wxString value_type;
215 typedef value_type* pointer;
216 typedef value_type& reference;
217 typedef reverse_iterator itor;
218 friend itor operator+(int o, const itor& it);
219 friend itor operator+(const itor& it, int o);
220 friend itor operator-(const itor& it, int o);
221 friend difference_type operator -(const itor& i1, const itor& i2);
222 public:
223 pointer m_ptr;
224 reverse_iterator() : m_ptr(NULL) { }
225 reverse_iterator(pointer ptr) : m_ptr(ptr) { }
226 reverse_iterator(const itor& it) : m_ptr(it.m_ptr) { }
227 reference operator*() const { return *m_ptr; }
228 pointer operator->() const { return m_ptr; }
229 itor& operator++() { --m_ptr; return *this; }
230 const itor operator++(int)
231 { reverse_iterator tmp = *this; --m_ptr; return tmp; }
232 itor& operator--() { ++m_ptr; return *this; }
233 const itor operator--(int) { itor tmp = *this; ++m_ptr; return tmp; }
234 bool operator ==(const itor& it) const { return m_ptr == it.m_ptr; }
235 bool operator !=(const itor& it) const { return m_ptr != it.m_ptr; }
236 };
237
238 class const_reverse_iterator
239 {
240 typedef wxString value_type;
241 typedef const value_type* pointer;
242 typedef const value_type& reference;
243 typedef const_reverse_iterator itor;
244 friend itor operator+(int o, const itor& it);
245 friend itor operator+(const itor& it, int o);
246 friend itor operator-(const itor& it, int o);
247 friend difference_type operator -(const itor& i1, const itor& i2);
248 public:
249 pointer m_ptr;
250 const_reverse_iterator() : m_ptr(NULL) { }
251 const_reverse_iterator(pointer ptr) : m_ptr(ptr) { }
252 const_reverse_iterator(const itor& it) : m_ptr(it.m_ptr) { }
253 const_reverse_iterator(const reverse_iterator& it) : m_ptr(it.m_ptr) { }
254 reference operator*() const { return *m_ptr; }
255 pointer operator->() const { return m_ptr; }
256 itor& operator++() { --m_ptr; return *this; }
257 const itor operator++(int)
258 { itor tmp = *this; --m_ptr; return tmp; }
259 itor& operator--() { ++m_ptr; return *this; }
260 const itor operator--(int) { itor tmp = *this; ++m_ptr; return tmp; }
261 bool operator ==(const itor& it) const { return m_ptr == it.m_ptr; }
262 bool operator !=(const itor& it) const { return m_ptr != it.m_ptr; }
263 };
264
265 wxArrayString(const_iterator first, const_iterator last)
266 { Init(false); assign(first, last); }
267 wxArrayString(size_type n, const_reference v) { Init(false); assign(n, v); }
268 void assign(const_iterator first, const_iterator last);
269 void assign(size_type n, const_reference v)
270 { clear(); Add(v, n); }
271 reference back() { return *(end() - 1); }
272 const_reference back() const { return *(end() - 1); }
273 iterator begin() { return m_pItems; }
274 const_iterator begin() const { return m_pItems; }
275 size_type capacity() const { return m_nSize; }
276 void clear() { Clear(); }
277 bool empty() const { return IsEmpty(); }
278 iterator end() { return begin() + GetCount(); }
279 const_iterator end() const { return begin() + GetCount(); }
280 iterator erase(iterator first, iterator last)
281 {
282 size_t idx = first - begin();
283 RemoveAt(idx, last - first);
284 return begin() + idx;
285 }
286 iterator erase(iterator it) { return erase(it, it + 1); }
287 reference front() { return *begin(); }
288 const_reference front() const { return *begin(); }
289 void insert(iterator it, size_type n, const_reference v)
290 { Insert(v, it - begin(), n); }
291 iterator insert(iterator it, const_reference v = value_type())
292 { size_t idx = it - begin(); Insert(v, idx); return begin() + idx; }
293 void insert(iterator it, const_iterator first, const_iterator last);
294 size_type max_size() const { return INT_MAX; }
295 void pop_back() { RemoveAt(GetCount() - 1); }
296 void push_back(const_reference v) { Add(v); }
297 reverse_iterator rbegin() { return reverse_iterator(end() - 1); }
298 const_reverse_iterator rbegin() const;
299 reverse_iterator rend() { return reverse_iterator(begin() - 1); }
300 const_reverse_iterator rend() const;
301 void reserve(size_type n) /* base::reserve*/;
302 void resize(size_type n, value_type v = value_type());
303 size_type size() const { return GetCount(); }
304 void swap(wxArrayString& other)
305 {
306 wxSwap(m_nSize, other.m_nSize);
307 wxSwap(m_nCount, other.m_nCount);
308 wxSwap(m_pItems, other.m_pItems);
309 wxSwap(m_autoSort, other.m_autoSort);
310 }
311
312 protected:
313 void Init(bool autoSort); // common part of all ctors
314 void Copy(const wxArrayString& src); // copies the contents of another array
315
316 private:
317 void Grow(size_t nIncrement = 0); // makes array bigger if needed
318
319 size_t m_nSize, // current size of the array
320 m_nCount; // current number of elements
321
322 wxString *m_pItems; // pointer to data
323
324 bool m_autoSort; // if true, keep the array always sorted
325 };
326
327 class WXDLLIMPEXP_BASE wxSortedArrayString : public wxArrayString
328 {
329 public:
330 wxSortedArrayString() : wxArrayString(true)
331 { }
332 wxSortedArrayString(const wxArrayString& array) : wxArrayString(true)
333 { Copy(array); }
334 };
335
336 #endif // !wxUSE_STL
337
338 // this class provides a temporary wxString* from a
339 // wxArrayString
340 class WXDLLIMPEXP_BASE wxCArrayString
341 {
342 public:
343 wxCArrayString( const wxArrayString& array )
344 : m_array( array ), m_strings( NULL )
345 { }
346 ~wxCArrayString() { delete[] m_strings; }
347
348 size_t GetCount() const { return m_array.GetCount(); }
349 wxString* GetStrings()
350 {
351 if( m_strings ) return m_strings;
352 size_t count = m_array.GetCount();
353 m_strings = new wxString[count];
354 for( size_t i = 0; i < count; ++i )
355 m_strings[i] = m_array[i];
356 return m_strings;
357 }
358
359 wxString* Release()
360 {
361 wxString *r = GetStrings();
362 m_strings = NULL;
363 return r;
364 }
365
366 private:
367 const wxArrayString& m_array;
368 wxString* m_strings;
369 };
370
371
372 // ----------------------------------------------------------------------------
373 // helper functions for working with arrays
374 // ----------------------------------------------------------------------------
375
376 // by default, these functions use the escape character to escape the
377 // separators occuring inside the string to be joined, this can be disabled by
378 // passing '\0' as escape
379
380 WXDLLIMPEXP_BASE wxString wxJoin(const wxArrayString& arr,
381 const wxChar sep,
382 const wxChar escape = wxT('\\'));
383
384 WXDLLIMPEXP_BASE wxArrayString wxSplit(const wxString& str,
385 const wxChar sep,
386 const wxChar escape = wxT('\\'));
387
388
389 // ----------------------------------------------------------------------------
390 // This helper class allows to pass both C array of wxStrings or wxArrayString
391 // using the same interface.
392 //
393 // Use it when you have two methods taking wxArrayString or (int, wxString[]),
394 // that do the same thing. This class lets you iterate over input data in the
395 // same way whether it is a raw array of strings or wxArrayString.
396 //
397 // The object does not take ownership of the data -- internally it keeps
398 // pointers to the data, therefore the data must be disposed of by user
399 // and only after this object is destroyed. Usually it is not a problem as
400 // only temporary objects of this class are used.
401 // ----------------------------------------------------------------------------
402
403 class wxArrayStringsAdapter
404 {
405 public:
406 // construct an adapter from a wxArrayString
407 wxArrayStringsAdapter(const wxArrayString& strings)
408 : m_type(wxSTRING_ARRAY), m_size(strings.size())
409 {
410 m_data.array = &strings;
411 }
412
413 // construct an adapter from a wxString[]
414 wxArrayStringsAdapter(unsigned int n, const wxString *strings)
415 : m_type(wxSTRING_POINTER), m_size(n)
416 {
417 m_data.ptr = strings;
418 }
419
420 // construct an adapter from a single wxString
421 wxArrayStringsAdapter(const wxString& s)
422 : m_type(wxSTRING_POINTER), m_size(1)
423 {
424 m_data.ptr = &s;
425 }
426
427 // default copy constructor is ok
428
429 // iteration interface
430 size_t GetCount() const { return m_size; }
431 bool IsEmpty() const { return GetCount() == 0; }
432 const wxString& operator[] (unsigned int i) const
433 {
434 wxASSERT_MSG( i < GetCount(), wxT("index out of bounds") );
435 if(m_type == wxSTRING_POINTER)
436 return m_data.ptr[i];
437 return m_data.array->Item(i);
438 }
439 wxArrayString AsArrayString() const
440 {
441 if(m_type == wxSTRING_ARRAY)
442 return *m_data.array;
443 return wxArrayString(GetCount(), m_data.ptr);
444 }
445
446 private:
447 // type of the data being held
448 enum wxStringContainerType
449 {
450 wxSTRING_ARRAY, // wxArrayString
451 wxSTRING_POINTER // wxString[]
452 };
453
454 wxStringContainerType m_type;
455 size_t m_size;
456 union
457 {
458 const wxString * ptr;
459 const wxArrayString * array;
460 } m_data;
461
462 DECLARE_NO_ASSIGN_CLASS(wxArrayStringsAdapter)
463 };
464
465 #endif // _WX_ARRSTR_H