]> git.saurik.com Git - wxWidgets.git/blob - include/wx/string.h
added support for wxGRID_AUTOSIZE in wxGrid::SetRow/ColLabelSize()
[wxWidgets.git] / include / wx / string.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/string.h
3 // Purpose: wxString and wxArrayString classes
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 29/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 /*
13 Efficient string class [more or less] compatible with MFC CString,
14 wxWidgets version 1 wxString and std::string and some handy functions
15 missing from string.h.
16 */
17
18 #ifndef _WX_WXSTRINGH__
19 #define _WX_WXSTRINGH__
20
21 // ----------------------------------------------------------------------------
22 // headers
23 // ----------------------------------------------------------------------------
24
25 #include "wx/defs.h" // everybody should include this
26
27 #if defined(__WXMAC__) || defined(__VISAGECPP__)
28 #include <ctype.h>
29 #endif
30
31 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
32 // problem in VACPP V4 with including stdlib.h multiple times
33 // strconv includes it anyway
34 # include <stdio.h>
35 # include <string.h>
36 # include <stdarg.h>
37 # include <limits.h>
38 #else
39 # include <string.h>
40 # include <stdio.h>
41 # include <stdarg.h>
42 # include <limits.h>
43 # include <stdlib.h>
44 #endif
45
46 #ifdef HAVE_STRCASECMP_IN_STRINGS_H
47 #include <strings.h> // for strcasecmp()
48 #endif // HAVE_STRCASECMP_IN_STRINGS_H
49
50 #ifdef __WXPALMOS__
51 #include <StringMgr.h>
52 #endif
53
54 #include "wx/wxchar.h" // for wxChar
55 #include "wx/buffer.h" // for wxCharBuffer
56 #include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes
57
58 class WXDLLIMPEXP_BASE wxString;
59
60 // ---------------------------------------------------------------------------
61 // macros
62 // ---------------------------------------------------------------------------
63
64 // casts [unfortunately!] needed to call some broken functions which require
65 // "char *" instead of "const char *"
66 #define WXSTRINGCAST (wxChar *)(const wxChar *)
67 #define wxCSTRINGCAST (wxChar *)(const wxChar *)
68 #define wxMBSTRINGCAST (char *)(const char *)
69 #define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
70
71 // implementation only
72 #define wxASSERT_VALID_INDEX(i) \
73 wxASSERT_MSG( (size_t)(i) <= length(), _T("invalid index in wxString") )
74
75 // ----------------------------------------------------------------------------
76 // constants
77 // ----------------------------------------------------------------------------
78
79 #if WXWIN_COMPATIBILITY_2_6
80
81 // deprecated in favour of wxString::npos, don't use in new code
82 //
83 // maximum possible length for a string means "take all string" everywhere
84 #define wxSTRING_MAXLEN wxStringBase::npos
85
86 #endif // WXWIN_COMPATIBILITY_2_6
87
88 // ----------------------------------------------------------------------------
89 // global data
90 // ----------------------------------------------------------------------------
91
92 // global pointer to empty string
93 extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxEmptyString;
94
95 // ---------------------------------------------------------------------------
96 // global functions complementing standard C string library replacements for
97 // strlen() and portable strcasecmp()
98 //---------------------------------------------------------------------------
99
100 // Use wxXXX() functions from wxchar.h instead! These functions are for
101 // backwards compatibility only.
102
103 // checks whether the passed in pointer is NULL and if the string is empty
104 inline bool IsEmpty(const char *p) { return (!p || !*p); }
105
106 // safe version of strlen() (returns 0 if passed NULL pointer)
107 inline size_t Strlen(const char *psz)
108 { return psz ? strlen(psz) : 0; }
109
110 // portable strcasecmp/_stricmp
111 inline int Stricmp(const char *psz1, const char *psz2)
112 {
113 #if defined(__VISUALC__) && defined(__WXWINCE__)
114 register char c1, c2;
115 do {
116 c1 = tolower(*psz1++);
117 c2 = tolower(*psz2++);
118 } while ( c1 && (c1 == c2) );
119
120 return c1 - c2;
121 #elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
122 return _stricmp(psz1, psz2);
123 #elif defined(__SC__)
124 return _stricmp(psz1, psz2);
125 #elif defined(__SALFORDC__)
126 return stricmp(psz1, psz2);
127 #elif defined(__BORLANDC__)
128 return stricmp(psz1, psz2);
129 #elif defined(__WATCOMC__)
130 return stricmp(psz1, psz2);
131 #elif defined(__DJGPP__)
132 return stricmp(psz1, psz2);
133 #elif defined(__EMX__)
134 return stricmp(psz1, psz2);
135 #elif defined(__WXPM__)
136 return stricmp(psz1, psz2);
137 #elif defined(__WXPALMOS__) || \
138 defined(HAVE_STRCASECMP_IN_STRING_H) || \
139 defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
140 defined(__GNUWIN32__)
141 return strcasecmp(psz1, psz2);
142 #elif defined(__MWERKS__) && !defined(__INTEL__)
143 register char c1, c2;
144 do {
145 c1 = tolower(*psz1++);
146 c2 = tolower(*psz2++);
147 } while ( c1 && (c1 == c2) );
148
149 return c1 - c2;
150 #else
151 // almost all compilers/libraries provide this function (unfortunately under
152 // different names), that's why we don't implement our own which will surely
153 // be more efficient than this code (uncomment to use):
154 /*
155 register char c1, c2;
156 do {
157 c1 = tolower(*psz1++);
158 c2 = tolower(*psz2++);
159 } while ( c1 && (c1 == c2) );
160
161 return c1 - c2;
162 */
163
164 #error "Please define string case-insensitive compare for your OS/compiler"
165 #endif // OS/compiler
166 }
167
168 // ----------------------------------------------------------------------------
169 // deal with STL/non-STL/non-STL-but-wxUSE_STD_STRING
170 // ----------------------------------------------------------------------------
171
172 // in both cases we need to define wxStdString
173 #if wxUSE_STL || wxUSE_STD_STRING
174
175 #include "wx/beforestd.h"
176 #include <string>
177 #include "wx/afterstd.h"
178
179 #if wxUSE_UNICODE
180 #ifdef HAVE_STD_WSTRING
181 typedef std::wstring wxStdString;
182 #else
183 typedef std::basic_string<wxChar> wxStdString;
184 #endif
185 #else
186 typedef std::string wxStdString;
187 #endif
188
189 #endif // need <string>
190
191 #if wxUSE_STL
192
193 // we don't need an extra ctor from std::string when copy ctor already does
194 // the work
195 #undef wxUSE_STD_STRING
196 #define wxUSE_STD_STRING 0
197
198 #if (defined(__GNUG__) && (__GNUG__ < 3)) || \
199 (defined(_MSC_VER) && (_MSC_VER <= 1200))
200 #define wxSTRING_BASE_HASNT_CLEAR
201 #endif
202
203 typedef wxStdString wxStringBase;
204 #else // if !wxUSE_STL
205
206 #if !defined(HAVE_STD_STRING_COMPARE) && \
207 (!defined(__WX_SETUP_H__) || wxUSE_STL == 0)
208 #define HAVE_STD_STRING_COMPARE
209 #endif
210
211 // ---------------------------------------------------------------------------
212 // string data prepended with some housekeeping info (used by wxString class),
213 // is never used directly (but had to be put here to allow inlining)
214 // ---------------------------------------------------------------------------
215
216 struct WXDLLIMPEXP_BASE wxStringData
217 {
218 int nRefs; // reference count
219 size_t nDataLength, // actual string length
220 nAllocLength; // allocated memory size
221
222 // mimics declaration 'wxChar data[nAllocLength]'
223 wxChar* data() const { return (wxChar*)(this + 1); }
224
225 // empty string has a special ref count so it's never deleted
226 bool IsEmpty() const { return (nRefs == -1); }
227 bool IsShared() const { return (nRefs > 1); }
228
229 // lock/unlock
230 void Lock() { if ( !IsEmpty() ) nRefs++; }
231
232 // VC++ will refuse to inline Unlock but profiling shows that it is wrong
233 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
234 __forceinline
235 #endif
236 // VC++ free must take place in same DLL as allocation when using non dll
237 // run-time library (e.g. Multithreaded instead of Multithreaded DLL)
238 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
239 void Unlock() { if ( !IsEmpty() && --nRefs == 0) Free(); }
240 // we must not inline deallocation since allocation is not inlined
241 void Free();
242 #else
243 void Unlock() { if ( !IsEmpty() && --nRefs == 0) free(this); }
244 #endif
245
246 // if we had taken control over string memory (GetWriteBuf), it's
247 // intentionally put in invalid state
248 void Validate(bool b) { nRefs = (b ? 1 : 0); }
249 bool IsValid() const { return (nRefs != 0); }
250 };
251
252 class WXDLLIMPEXP_BASE wxStringBase
253 {
254 #if !wxUSE_STL
255 friend class WXDLLIMPEXP_BASE wxArrayString;
256 #endif
257 public :
258 // an 'invalid' value for string index, moved to this place due to a CW bug
259 static const size_t npos;
260 protected:
261 // points to data preceded by wxStringData structure with ref count info
262 wxChar *m_pchData;
263
264 // accessor to string data
265 wxStringData* GetStringData() const { return (wxStringData*)m_pchData - 1; }
266
267 // string (re)initialization functions
268 // initializes the string to the empty value (must be called only from
269 // ctors, use Reinit() otherwise)
270 void Init() { m_pchData = (wxChar *)wxEmptyString; }
271 // initializes the string with (a part of) C-string
272 void InitWith(const wxChar *psz, size_t nPos = 0, size_t nLen = npos);
273 // as Init, but also frees old data
274 void Reinit() { GetStringData()->Unlock(); Init(); }
275
276 // memory allocation
277 // allocates memory for string of length nLen
278 bool AllocBuffer(size_t nLen);
279 // copies data to another string
280 bool AllocCopy(wxString&, int, int) const;
281 // effectively copies data to string
282 bool AssignCopy(size_t, const wxChar *);
283
284 // append a (sub)string
285 bool ConcatSelf(size_t nLen, const wxChar *src, size_t nMaxLen);
286 bool ConcatSelf(size_t nLen, const wxChar *src)
287 { return ConcatSelf(nLen, src, nLen); }
288
289 // functions called before writing to the string: they copy it if there
290 // are other references to our data (should be the only owner when writing)
291 bool CopyBeforeWrite();
292 bool AllocBeforeWrite(size_t);
293
294 // compatibility with wxString
295 bool Alloc(size_t nLen);
296 public:
297 // standard types
298 typedef wxChar value_type;
299 typedef wxChar char_type;
300 typedef size_t size_type;
301 typedef value_type& reference;
302 typedef const value_type& const_reference;
303 typedef value_type* pointer;
304 typedef const value_type* const_pointer;
305 typedef value_type *iterator;
306 typedef const value_type *const_iterator;
307
308 #define wxSTRING_REVERSE_ITERATOR(name, const_or_not) \
309 class name \
310 { \
311 public: \
312 typedef wxChar value_type; \
313 typedef const_or_not value_type& reference; \
314 typedef const_or_not value_type *pointer; \
315 typedef const_or_not value_type *iterator_type; \
316 \
317 name(iterator_type i) : m_cur(i) { } \
318 name(const name& ri) : m_cur(ri.m_cur) { } \
319 \
320 iterator_type base() const { return m_cur; } \
321 \
322 reference operator*() const { return *(m_cur - 1); } \
323 \
324 name& operator++() { --m_cur; return *this; } \
325 name operator++(int) { name tmp = *this; --m_cur; return tmp; } \
326 name& operator--() { ++m_cur; return *this; } \
327 name operator--(int) { name tmp = *this; ++m_cur; return tmp; } \
328 \
329 bool operator==(name ri) const { return m_cur == ri.m_cur; } \
330 bool operator!=(name ri) const { return !(*this == ri); } \
331 \
332 private: \
333 iterator_type m_cur; \
334 }
335
336 wxSTRING_REVERSE_ITERATOR(const_reverse_iterator, const);
337
338 #define wxSTRING_CONST
339 wxSTRING_REVERSE_ITERATOR(reverse_iterator, wxSTRING_CONST);
340 #undef wxSTRING_CONST
341
342 #undef wxSTRING_REVERSE_ITERATOR
343
344
345 // constructors and destructor
346 // ctor for an empty string
347 wxStringBase() { Init(); }
348 // copy ctor
349 wxStringBase(const wxStringBase& stringSrc)
350 {
351 wxASSERT_MSG( stringSrc.GetStringData()->IsValid(),
352 _T("did you forget to call UngetWriteBuf()?") );
353
354 if ( stringSrc.empty() ) {
355 // nothing to do for an empty string
356 Init();
357 }
358 else {
359 m_pchData = stringSrc.m_pchData; // share same data
360 GetStringData()->Lock(); // => one more copy
361 }
362 }
363 // string containing nRepeat copies of ch
364 wxStringBase(size_type nRepeat, wxChar ch);
365 // ctor takes first nLength characters from C string
366 // (default value of npos means take all the string)
367 wxStringBase(const wxChar *psz)
368 { InitWith(psz, 0, npos); }
369 wxStringBase(const wxChar *psz, size_t nLength)
370 { InitWith(psz, 0, nLength); }
371 wxStringBase(const wxChar *psz,
372 const wxMBConv& WXUNUSED(conv),
373 size_t nLength = npos)
374 { InitWith(psz, 0, nLength); }
375 // take nLen chars starting at nPos
376 wxStringBase(const wxStringBase& str, size_t nPos, size_t nLen)
377 {
378 wxASSERT_MSG( str.GetStringData()->IsValid(),
379 _T("did you forget to call UngetWriteBuf()?") );
380 Init();
381 size_t strLen = str.length() - nPos; nLen = strLen < nLen ? strLen : nLen;
382 InitWith(str.c_str(), nPos, nLen);
383 }
384 // take all characters from pStart to pEnd
385 wxStringBase(const void *pStart, const void *pEnd);
386
387 // dtor is not virtual, this class must not be inherited from!
388 ~wxStringBase()
389 {
390 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
391 //RN - according to the above VC++ does indeed inline this,
392 //even though it spits out two warnings
393 #pragma warning (disable:4714)
394 #endif
395
396 GetStringData()->Unlock();
397 }
398
399 #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
400 //re-enable inlining warning
401 #pragma warning (default:4714)
402 #endif
403 // overloaded assignment
404 // from another wxString
405 wxStringBase& operator=(const wxStringBase& stringSrc);
406 // from a character
407 wxStringBase& operator=(wxChar ch);
408 // from a C string
409 wxStringBase& operator=(const wxChar *psz);
410
411 // return the length of the string
412 size_type length() const { return GetStringData()->nDataLength; }
413 // return the length of the string
414 size_type size() const { return length(); }
415 // return the maximum size of the string
416 size_type max_size() const { return npos; }
417 // resize the string, filling the space with c if c != 0
418 void resize(size_t nSize, wxChar ch = wxT('\0'));
419 // delete the contents of the string
420 void clear() { erase(0, npos); }
421 // returns true if the string is empty
422 bool empty() const { return length() == 0; }
423 // inform string about planned change in size
424 void reserve(size_t sz) { Alloc(sz); }
425 size_type capacity() const { return GetStringData()->nAllocLength; }
426
427 // lib.string.access
428 // return the character at position n
429 value_type at(size_type n) const
430 { wxASSERT_VALID_INDEX( n ); return m_pchData[n]; }
431 // returns the writable character at position n
432 reference at(size_type n)
433 { wxASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }
434
435 // lib.string.modifiers
436 // append elements str[pos], ..., str[pos+n]
437 wxStringBase& append(const wxStringBase& str, size_t pos, size_t n)
438 {
439 wxASSERT(pos <= str.length());
440 ConcatSelf(n, str.c_str() + pos, str.length() - pos);
441 return *this;
442 }
443 // append a string
444 wxStringBase& append(const wxStringBase& str)
445 { ConcatSelf(str.length(), str.c_str()); return *this; }
446 // append first n (or all if n == npos) characters of sz
447 wxStringBase& append(const wxChar *sz)
448 { ConcatSelf(wxStrlen(sz), sz); return *this; }
449 wxStringBase& append(const wxChar *sz, size_t n)
450 { ConcatSelf(n, sz); return *this; }
451 // append n copies of ch
452 wxStringBase& append(size_t n, wxChar ch);
453 // append from first to last
454 wxStringBase& append(const_iterator first, const_iterator last)
455 { ConcatSelf(last - first, first); return *this; }
456
457 // same as `this_string = str'
458 wxStringBase& assign(const wxStringBase& str)
459 { return *this = str; }
460 // same as ` = str[pos..pos + n]
461 wxStringBase& assign(const wxStringBase& str, size_t pos, size_t n)
462 { clear(); return append(str, pos, n); }
463 // same as `= first n (or all if n == npos) characters of sz'
464 wxStringBase& assign(const wxChar *sz)
465 { clear(); return append(sz, wxStrlen(sz)); }
466 wxStringBase& assign(const wxChar *sz, size_t n)
467 { clear(); return append(sz, n); }
468 // same as `= n copies of ch'
469 wxStringBase& assign(size_t n, wxChar ch)
470 { clear(); return append(n, ch); }
471 // assign from first to last
472 wxStringBase& assign(const_iterator first, const_iterator last)
473 { clear(); return append(first, last); }
474
475 // first valid index position
476 const_iterator begin() const { return m_pchData; }
477 iterator begin();
478 // position one after the last valid one
479 const_iterator end() const { return m_pchData + length(); }
480 iterator end();
481
482 // first element of the reversed string
483 const_reverse_iterator rbegin() const { return const_reverse_iterator(end()); }
484 reverse_iterator rbegin() { return reverse_iterator(end()); }
485 // one beyond the end of the reversed string
486 const_reverse_iterator rend() const { return const_reverse_iterator(begin()); }
487 reverse_iterator rend() { return reverse_iterator(begin()); }
488
489 // insert another string
490 wxStringBase& insert(size_t nPos, const wxStringBase& str)
491 {
492 wxASSERT( str.GetStringData()->IsValid() );
493 return insert(nPos, str.c_str(), str.length());
494 }
495 // insert n chars of str starting at nStart (in str)
496 wxStringBase& insert(size_t nPos, const wxStringBase& str, size_t nStart, size_t n)
497 {
498 wxASSERT( str.GetStringData()->IsValid() );
499 wxASSERT( nStart < str.length() );
500 size_t strLen = str.length() - nStart;
501 n = strLen < n ? strLen : n;
502 return insert(nPos, str.c_str() + nStart, n);
503 }
504 // insert first n (or all if n == npos) characters of sz
505 wxStringBase& insert(size_t nPos, const wxChar *sz, size_t n = npos);
506 // insert n copies of ch
507 wxStringBase& insert(size_t nPos, size_t n, wxChar ch)
508 { return insert(nPos, wxStringBase(n, ch)); }
509 iterator insert(iterator it, wxChar ch)
510 { size_t idx = it - begin(); insert(idx, 1, ch); return begin() + idx; }
511 void insert(iterator it, const_iterator first, const_iterator last)
512 { insert(it - begin(), first, last - first); }
513 void insert(iterator it, size_type n, wxChar ch)
514 { insert(it - begin(), n, ch); }
515
516 // delete characters from nStart to nStart + nLen
517 wxStringBase& erase(size_type pos = 0, size_type n = npos);
518 iterator erase(iterator first, iterator last)
519 {
520 size_t idx = first - begin();
521 erase(idx, last - first);
522 return begin() + idx;
523 }
524 iterator erase(iterator first);
525
526 // explicit conversion to C string (use this with printf()!)
527 const wxChar* c_str() const { return m_pchData; }
528 const wxChar* data() const { return m_pchData; }
529
530 // replaces the substring of length nLen starting at nStart
531 wxStringBase& replace(size_t nStart, size_t nLen, const wxChar* sz);
532 // replaces the substring of length nLen starting at nStart
533 wxStringBase& replace(size_t nStart, size_t nLen, const wxStringBase& str)
534 { return replace(nStart, nLen, str.c_str()); }
535 // replaces the substring with nCount copies of ch
536 wxStringBase& replace(size_t nStart, size_t nLen, size_t nCount, wxChar ch);
537 // replaces a substring with another substring
538 wxStringBase& replace(size_t nStart, size_t nLen,
539 const wxStringBase& str, size_t nStart2, size_t nLen2);
540 // replaces the substring with first nCount chars of sz
541 wxStringBase& replace(size_t nStart, size_t nLen,
542 const wxChar* sz, size_t nCount);
543 wxStringBase& replace(iterator first, iterator last, const_pointer s)
544 { return replace(first - begin(), last - first, s); }
545 wxStringBase& replace(iterator first, iterator last, const_pointer s,
546 size_type n)
547 { return replace(first - begin(), last - first, s, n); }
548 wxStringBase& replace(iterator first, iterator last, const wxStringBase& s)
549 { return replace(first - begin(), last - first, s); }
550 wxStringBase& replace(iterator first, iterator last, size_type n, wxChar c)
551 { return replace(first - begin(), last - first, n, c); }
552 wxStringBase& replace(iterator first, iterator last,
553 const_iterator first1, const_iterator last1)
554 { return replace(first - begin(), last - first, first1, last1 - first1); }
555
556 // swap two strings
557 void swap(wxStringBase& str);
558
559 // All find() functions take the nStart argument which specifies the
560 // position to start the search on, the default value is 0. All functions
561 // return npos if there were no match.
562
563 // find a substring
564 size_t find(const wxStringBase& str, size_t nStart = 0) const;
565
566 // find first n characters of sz
567 size_t find(const wxChar* sz, size_t nStart = 0, size_t n = npos) const;
568
569 // find the first occurence of character ch after nStart
570 size_t find(wxChar ch, size_t nStart = 0) const;
571
572 // rfind() family is exactly like find() but works right to left
573
574 // as find, but from the end
575 size_t rfind(const wxStringBase& str, size_t nStart = npos) const;
576
577 // as find, but from the end
578 size_t rfind(const wxChar* sz, size_t nStart = npos,
579 size_t n = npos) const;
580 // as find, but from the end
581 size_t rfind(wxChar ch, size_t nStart = npos) const;
582
583 // find first/last occurence of any character in the set
584
585 // as strpbrk() but starts at nStart, returns npos if not found
586 size_t find_first_of(const wxStringBase& str, size_t nStart = 0) const
587 { return find_first_of(str.c_str(), nStart); }
588 // same as above
589 size_t find_first_of(const wxChar* sz, size_t nStart = 0) const;
590 size_t find_first_of(const wxChar* sz, size_t nStart, size_t n) const;
591 // same as find(char, size_t)
592 size_t find_first_of(wxChar c, size_t nStart = 0) const
593 { return find(c, nStart); }
594 // find the last (starting from nStart) char from str in this string
595 size_t find_last_of (const wxStringBase& str, size_t nStart = npos) const
596 { return find_last_of(str.c_str(), nStart); }
597 // same as above
598 size_t find_last_of (const wxChar* sz, size_t nStart = npos) const;
599 size_t find_last_of(const wxChar* sz, size_t nStart, size_t n) const;
600 // same as above
601 size_t find_last_of(wxChar c, size_t nStart = npos) const
602 { return rfind(c, nStart); }
603
604 // find first/last occurence of any character not in the set
605
606 // as strspn() (starting from nStart), returns npos on failure
607 size_t find_first_not_of(const wxStringBase& str, size_t nStart = 0) const
608 { return find_first_not_of(str.c_str(), nStart); }
609 // same as above
610 size_t find_first_not_of(const wxChar* sz, size_t nStart = 0) const;
611 size_t find_first_not_of(const wxChar* sz, size_t nStart, size_t n) const;
612 // same as above
613 size_t find_first_not_of(wxChar ch, size_t nStart = 0) const;
614 // as strcspn()
615 size_t find_last_not_of(const wxStringBase& str, size_t nStart = npos) const
616 { return find_last_not_of(str.c_str(), nStart); }
617 // same as above
618 size_t find_last_not_of(const wxChar* sz, size_t nStart = npos) const;
619 size_t find_last_not_of(const wxChar* sz, size_t nStart, size_t n) const;
620 // same as above
621 size_t find_last_not_of(wxChar ch, size_t nStart = npos) const;
622
623 // All compare functions return -1, 0 or 1 if the [sub]string is less,
624 // equal or greater than the compare() argument.
625
626 // comparison with another string
627 int compare(const wxStringBase& str) const;
628 // comparison with a substring
629 int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
630 // comparison of 2 substrings
631 int compare(size_t nStart, size_t nLen,
632 const wxStringBase& str, size_t nStart2, size_t nLen2) const;
633 // comparison with a c string
634 int compare(const wxChar* sz) const;
635 // substring comparison with first nCount characters of sz
636 int compare(size_t nStart, size_t nLen,
637 const wxChar* sz, size_t nCount = npos) const;
638
639 size_type copy(wxChar* s, size_type n, size_type pos = 0);
640
641 // substring extraction
642 wxStringBase substr(size_t nStart = 0, size_t nLen = npos) const;
643
644 // string += string
645 wxStringBase& operator+=(const wxStringBase& s) { return append(s); }
646 // string += C string
647 wxStringBase& operator+=(const wxChar *psz) { return append(psz); }
648 // string += char
649 wxStringBase& operator+=(wxChar ch) { return append(1, ch); }
650 };
651
652 #endif // !wxUSE_STL
653
654 // ----------------------------------------------------------------------------
655 // wxString: string class trying to be compatible with std::string, MFC
656 // CString and wxWindows 1.x wxString all at once
657 // ---------------------------------------------------------------------------
658
659 class WXDLLIMPEXP_BASE wxString : public wxStringBase
660 {
661 #if !wxUSE_STL
662 friend class WXDLLIMPEXP_BASE wxArrayString;
663 #endif
664
665 // NB: special care was taken in arranging the member functions in such order
666 // that all inline functions can be effectively inlined, verify that all
667 // performance critical functions are still inlined if you change order!
668 private:
669 // if we hadn't made these operators private, it would be possible to
670 // compile "wxString s; s = 17;" without any warnings as 17 is implicitly
671 // converted to char in C and we do have operator=(char)
672 //
673 // NB: we don't need other versions (short/long and unsigned) as attempt
674 // to assign another numeric type to wxString will now result in
675 // ambiguity between operator=(char) and operator=(int)
676 wxString& operator=(int);
677
678 // these methods are not implemented - there is _no_ conversion from int to
679 // string, you're doing something wrong if the compiler wants to call it!
680 //
681 // try `s << i' or `s.Printf("%d", i)' instead
682 wxString(int);
683
684 public:
685 // constructors and destructor
686 // ctor for an empty string
687 wxString() : wxStringBase() { }
688 // copy ctor
689 wxString(const wxStringBase& stringSrc) : wxStringBase(stringSrc) { }
690 wxString(const wxString& stringSrc) : wxStringBase(stringSrc) { }
691 // string containing nRepeat copies of ch
692 wxString(wxChar ch, size_t nRepeat = 1)
693 : wxStringBase(nRepeat, ch) { }
694 wxString(size_t nRepeat, wxChar ch)
695 : wxStringBase(nRepeat, ch) { }
696 // ctor takes first nLength characters from C string
697 // (default value of npos means take all the string)
698 wxString(const wxChar *psz)
699 : wxStringBase(psz ? psz : wxT("")) { }
700 wxString(const wxChar *psz, size_t nLength)
701 : wxStringBase(psz, nLength) { }
702 wxString(const wxChar *psz,
703 const wxMBConv& WXUNUSED(conv),
704 size_t nLength = npos)
705 : wxStringBase(psz, nLength == npos ? wxStrlen(psz) : nLength) { }
706
707 // even if we're not built with wxUSE_STL == 1 it is very convenient to allow
708 // implicit conversions from std::string to wxString as this allows to use
709 // the same strings in non-GUI and GUI code, however we don't want to
710 // unconditionally add this ctor as it would make wx lib dependent on
711 // libstdc++ on some Linux versions which is bad, so instead we ask the
712 // client code to define this wxUSE_STD_STRING symbol if they need it
713 #if wxUSE_STD_STRING
714 wxString(const wxStdString& s)
715 : wxStringBase(s.c_str()) { }
716 #endif // wxUSE_STD_STRING
717
718 #if wxUSE_UNICODE
719 // from multibyte string
720 wxString(const char *psz,
721 const wxMBConv& conv = wxConvLibc,
722 size_t nLength = npos);
723 // from wxWCharBuffer (i.e. return from wxGetString)
724 wxString(const wxWCharBuffer& psz) : wxStringBase(psz.data()) { }
725 #else // ANSI
726 // from C string (for compilers using unsigned char)
727 wxString(const unsigned char* psz)
728 : wxStringBase((const char*)psz) { }
729 // from part of C string (for compilers using unsigned char)
730 wxString(const unsigned char* psz, size_t nLength)
731 : wxStringBase((const char*)psz, nLength) { }
732
733 #if wxUSE_WCHAR_T
734 // from wide (Unicode) string
735 wxString(const wchar_t *pwz,
736 const wxMBConv& conv = wxConvLibc,
737 size_t nLength = npos);
738 #endif // !wxUSE_WCHAR_T
739
740 // from wxCharBuffer
741 wxString(const wxCharBuffer& psz)
742 : wxStringBase(psz) { }
743 #endif // Unicode/ANSI
744
745 // generic attributes & operations
746 // as standard strlen()
747 size_t Len() const { return length(); }
748 // string contains any characters?
749 bool IsEmpty() const { return empty(); }
750 // empty string is "false", so !str will return true
751 bool operator!() const { return empty(); }
752 // truncate the string to given length
753 wxString& Truncate(size_t uiLen);
754 // empty string contents
755 void Empty()
756 {
757 Truncate(0);
758
759 wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") );
760 }
761 // empty the string and free memory
762 void Clear()
763 {
764 wxString tmp(wxEmptyString);
765 swap(tmp);
766 }
767
768 // contents test
769 // Is an ascii value
770 bool IsAscii() const;
771 // Is a number
772 bool IsNumber() const;
773 // Is a word
774 bool IsWord() const;
775
776 // data access (all indexes are 0 based)
777 // read access
778 wxChar GetChar(size_t n) const
779 { return at(n); }
780 // read/write access
781 wxChar& GetWritableChar(size_t n)
782 { return at(n); }
783 // write access
784 void SetChar(size_t n, wxChar ch)
785 { at(n) = ch; }
786
787 // get last character
788 wxChar Last() const
789 {
790 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
791
792 return at(length() - 1);
793 }
794
795 // get writable last character
796 wxChar& Last()
797 {
798 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
799 return at(length() - 1);
800 }
801
802 /*
803 Note that we we must define all of the overloads below to avoid
804 ambiguity when using str[0]. Also note that for a conforming compiler we
805 don't need const version of operatorp[] at all as indexed access to
806 const string is provided by implicit conversion to "const wxChar *"
807 below and defining them would only result in ambiguities, but some other
808 compilers refuse to compile "str[0]" without them.
809 */
810
811 #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__MWERKS__)
812 wxChar operator[](int n) const
813 { return wxStringBase::at(n); }
814 wxChar operator[](size_type n) const
815 { return wxStringBase::at(n); }
816 #ifndef wxSIZE_T_IS_UINT
817 wxChar operator[](unsigned int n) const
818 { return wxStringBase::at(n); }
819 #endif // size_t != unsigned int
820 #endif // broken compiler
821
822
823 // operator versions of GetWriteableChar()
824 wxChar& operator[](int n)
825 { return wxStringBase::at(n); }
826 wxChar& operator[](size_type n)
827 { return wxStringBase::at(n); }
828 #ifndef wxSIZE_T_IS_UINT
829 wxChar& operator[](unsigned int n)
830 { return wxStringBase::at(n); }
831 #endif // size_t != unsigned int
832
833 // implicit conversion to C string
834 operator const wxChar*() const { return c_str(); }
835
836 // identical to c_str(), for wxWin 1.6x compatibility
837 const wxChar* wx_str() const { return c_str(); }
838 // identical to c_str(), for MFC compatibility
839 const wxChar* GetData() const { return c_str(); }
840
841 // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
842 // converting numbers or strings which are certain not to contain special
843 // chars (typically system functions, X atoms, environment variables etc.)
844 //
845 // the behaviour of these functions with the strings containing anything
846 // else than 7 bit ASCII characters is undefined, use at your own risk.
847 #if wxUSE_UNICODE
848 static wxString FromAscii(const char *ascii); // string
849 static wxString FromAscii(const char ascii); // char
850 const wxCharBuffer ToAscii() const;
851 #else // ANSI
852 static wxString FromAscii(const char *ascii) { return wxString( ascii ); }
853 static wxString FromAscii(const char ascii) { return wxString( ascii ); }
854 const char *ToAscii() const { return c_str(); }
855 #endif // Unicode/!Unicode
856
857 // conversions with (possible) format conversions: have to return a
858 // buffer with temporary data
859 //
860 // the functions defined (in either Unicode or ANSI) mode are mb_str() to
861 // return an ANSI (multibyte) string, wc_str() to return a wide string and
862 // fn_str() to return a string which should be used with the OS APIs
863 // accepting the file names. The return value is always the same, but the
864 // type differs because a function may either return pointer to the buffer
865 // directly or have to use intermediate buffer for translation.
866 #if wxUSE_UNICODE
867 const wxCharBuffer mb_str(const wxMBConv& conv = wxConvLibc) const;
868
869 const wxWX2MBbuf mbc_str() const { return mb_str(*wxConvCurrent); }
870
871 const wxChar* wc_str() const { return c_str(); }
872
873 // for compatibility with !wxUSE_UNICODE version
874 const wxChar* wc_str(const wxMBConv& WXUNUSED(conv)) const { return c_str(); }
875
876 #if wxMBFILES
877 const wxCharBuffer fn_str() const { return mb_str(wxConvFile); }
878 #else // !wxMBFILES
879 const wxChar* fn_str() const { return c_str(); }
880 #endif // wxMBFILES/!wxMBFILES
881 #else // ANSI
882 const wxChar* mb_str() const { return c_str(); }
883
884 // for compatibility with wxUSE_UNICODE version
885 const wxChar* mb_str(const wxMBConv& WXUNUSED(conv)) const { return c_str(); }
886
887 const wxWX2MBbuf mbc_str() const { return mb_str(); }
888
889 #if wxUSE_WCHAR_T
890 const wxWCharBuffer wc_str(const wxMBConv& conv) const;
891 #endif // wxUSE_WCHAR_T
892 #ifdef __WXOSX__
893 const wxCharBuffer fn_str() const { return wxConvFile.cWC2WX( wc_str( wxConvLocal ) ); }
894 #else
895 const wxChar* fn_str() const { return c_str(); }
896 #endif
897 #endif // Unicode/ANSI
898
899 // overloaded assignment
900 // from another wxString
901 wxString& operator=(const wxStringBase& stringSrc)
902 { return (wxString&)wxStringBase::operator=(stringSrc); }
903 // from a character
904 wxString& operator=(wxChar ch)
905 { return (wxString&)wxStringBase::operator=(ch); }
906 // from a C string - STL probably will crash on NULL,
907 // so we need to compensate in that case
908 #if wxUSE_STL
909 wxString& operator=(const wxChar *psz)
910 { if(psz) wxStringBase::operator=(psz); else Clear(); return *this; }
911 #else
912 wxString& operator=(const wxChar *psz)
913 { return (wxString&)wxStringBase::operator=(psz); }
914 #endif
915
916 #if wxUSE_UNICODE
917 // from wxWCharBuffer
918 wxString& operator=(const wxWCharBuffer& psz)
919 { (void) operator=((const wchar_t *)psz); return *this; }
920 // from C string
921 wxString& operator=(const char* psz)
922 { return operator=(wxString(psz)); }
923 #else // ANSI
924 // from another kind of C string
925 wxString& operator=(const unsigned char* psz);
926 #if wxUSE_WCHAR_T
927 // from a wide string
928 wxString& operator=(const wchar_t *pwz);
929 #endif
930 // from wxCharBuffer
931 wxString& operator=(const wxCharBuffer& psz)
932 { (void) operator=((const char *)psz); return *this; }
933 #endif // Unicode/ANSI
934
935 // string concatenation
936 // in place concatenation
937 /*
938 Concatenate and return the result. Note that the left to right
939 associativity of << allows to write things like "str << str1 << str2
940 << ..." (unlike with +=)
941 */
942 // string += string
943 wxString& operator<<(const wxString& s)
944 {
945 #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL
946 wxASSERT_MSG( s.GetStringData()->IsValid(),
947 _T("did you forget to call UngetWriteBuf()?") );
948 #endif
949
950 append(s);
951 return *this;
952 }
953 // string += C string
954 wxString& operator<<(const wxChar *psz)
955 { append(psz); return *this; }
956 // string += char
957 wxString& operator<<(wxChar ch) { append(1, ch); return *this; }
958
959 // string += buffer (i.e. from wxGetString)
960 #if wxUSE_UNICODE
961 wxString& operator<<(const wxWCharBuffer& s)
962 { return operator<<((const wchar_t *)s); }
963 wxString& operator+=(const wxWCharBuffer& s)
964 { return operator<<((const wchar_t *)s); }
965 #else // !wxUSE_UNICODE
966 wxString& operator<<(const wxCharBuffer& s)
967 { return operator<<((const char *)s); }
968 wxString& operator+=(const wxCharBuffer& s)
969 { return operator<<((const char *)s); }
970 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
971
972 #if wxUSE_UNICODE
973 // string += C string in Unicode build (with conversion)
974 wxString& operator<<(const char *s)
975 { return operator<<(wxString(s)); }
976 wxString& operator+=(const char *s)
977 { return operator+=(wxString(s)); }
978 #endif // wxUSE_UNICODE
979
980 // string += C string
981 wxString& Append(const wxString& s)
982 {
983 // test for empty() to share the string if possible
984 if ( empty() )
985 *this = s;
986 else
987 append(s);
988 return *this;
989 }
990 wxString& Append(const wxChar* psz)
991 { append(psz); return *this; }
992 // append count copies of given character
993 wxString& Append(wxChar ch, size_t count = 1u)
994 { append(count, ch); return *this; }
995 wxString& Append(const wxChar* psz, size_t nLen)
996 { append(psz, nLen); return *this; }
997
998 // prepend a string, return the string itself
999 wxString& Prepend(const wxString& str)
1000 { *this = str + *this; return *this; }
1001
1002 // non-destructive concatenation
1003 // two strings
1004 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string1,
1005 const wxString& string2);
1006 // string with a single char
1007 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxChar ch);
1008 // char with a string
1009 friend wxString WXDLLIMPEXP_BASE operator+(wxChar ch, const wxString& string);
1010 // string with C string
1011 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string,
1012 const wxChar *psz);
1013 // C string with string
1014 friend wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz,
1015 const wxString& string);
1016
1017 // stream-like functions
1018 // insert an int into string
1019 wxString& operator<<(int i)
1020 { return (*this) << Format(_T("%d"), i); }
1021 // insert an unsigned int into string
1022 wxString& operator<<(unsigned int ui)
1023 { return (*this) << Format(_T("%u"), ui); }
1024 // insert a long into string
1025 wxString& operator<<(long l)
1026 { return (*this) << Format(_T("%ld"), l); }
1027 // insert an unsigned long into string
1028 wxString& operator<<(unsigned long ul)
1029 { return (*this) << Format(_T("%lu"), ul); }
1030 #if defined wxLongLong_t && !defined wxLongLongIsLong
1031 // insert a long long if they exist and aren't longs
1032 wxString& operator<<(wxLongLong_t ll)
1033 {
1034 const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("d");
1035 return (*this) << Format(fmt, ll);
1036 }
1037 // insert an unsigned long long
1038 wxString& operator<<(wxULongLong_t ull)
1039 {
1040 const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("u");
1041 return (*this) << Format(fmt , ull);
1042 }
1043 #endif
1044 // insert a float into string
1045 wxString& operator<<(float f)
1046 { return (*this) << Format(_T("%f"), f); }
1047 // insert a double into string
1048 wxString& operator<<(double d)
1049 { return (*this) << Format(_T("%g"), d); }
1050
1051 // string comparison
1052 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
1053 int Cmp(const wxChar *psz) const;
1054 int Cmp(const wxString& s) const;
1055 // same as Cmp() but not case-sensitive
1056 int CmpNoCase(const wxChar *psz) const;
1057 int CmpNoCase(const wxString& s) const;
1058 // test for the string equality, either considering case or not
1059 // (if compareWithCase then the case matters)
1060 bool IsSameAs(const wxChar *psz, bool compareWithCase = true) const
1061 { return (compareWithCase ? Cmp(psz) : CmpNoCase(psz)) == 0; }
1062 // comparison with a single character: returns true if equal
1063 bool IsSameAs(wxChar c, bool compareWithCase = true) const
1064 {
1065 return (length() == 1) && (compareWithCase ? GetChar(0u) == c
1066 : wxToupper(GetChar(0u)) == wxToupper(c));
1067 }
1068
1069 // simple sub-string extraction
1070 // return substring starting at nFirst of length nCount (or till the end
1071 // if nCount = default value)
1072 wxString Mid(size_t nFirst, size_t nCount = npos) const;
1073
1074 // operator version of Mid()
1075 wxString operator()(size_t start, size_t len) const
1076 { return Mid(start, len); }
1077
1078 // check if the string starts with the given prefix and return the rest
1079 // of the string in the provided pointer if it is not NULL; otherwise
1080 // return false
1081 bool StartsWith(const wxChar *prefix, wxString *rest = NULL) const;
1082 // check if the string ends with the given suffix and return the
1083 // beginning of the string before the suffix in the provided pointer if
1084 // it is not NULL; otherwise return false
1085 bool EndsWith(const wxChar *suffix, wxString *rest = NULL) const;
1086
1087 // get first nCount characters
1088 wxString Left(size_t nCount) const;
1089 // get last nCount characters
1090 wxString Right(size_t nCount) const;
1091 // get all characters before the first occurance of ch
1092 // (returns the whole string if ch not found)
1093 wxString BeforeFirst(wxChar ch) const;
1094 // get all characters before the last occurence of ch
1095 // (returns empty string if ch not found)
1096 wxString BeforeLast(wxChar ch) const;
1097 // get all characters after the first occurence of ch
1098 // (returns empty string if ch not found)
1099 wxString AfterFirst(wxChar ch) const;
1100 // get all characters after the last occurence of ch
1101 // (returns the whole string if ch not found)
1102 wxString AfterLast(wxChar ch) const;
1103
1104 // for compatibility only, use more explicitly named functions above
1105 wxString Before(wxChar ch) const { return BeforeLast(ch); }
1106 wxString After(wxChar ch) const { return AfterFirst(ch); }
1107
1108 // case conversion
1109 // convert to upper case in place, return the string itself
1110 wxString& MakeUpper();
1111 // convert to upper case, return the copy of the string
1112 // Here's something to remember: BC++ doesn't like returns in inlines.
1113 wxString Upper() const ;
1114 // convert to lower case in place, return the string itself
1115 wxString& MakeLower();
1116 // convert to lower case, return the copy of the string
1117 wxString Lower() const ;
1118
1119 // trimming/padding whitespace (either side) and truncating
1120 // remove spaces from left or from right (default) side
1121 wxString& Trim(bool bFromRight = true);
1122 // add nCount copies chPad in the beginning or at the end (default)
1123 wxString& Pad(size_t nCount, wxChar chPad = wxT(' '), bool bFromRight = true);
1124
1125 // searching and replacing
1126 // searching (return starting index, or -1 if not found)
1127 int Find(wxChar ch, bool bFromEnd = false) const; // like strchr/strrchr
1128 // searching (return starting index, or -1 if not found)
1129 int Find(const wxChar *pszSub) const; // like strstr
1130 // replace first (or all of bReplaceAll) occurences of substring with
1131 // another string, returns the number of replacements made
1132 size_t Replace(const wxChar *szOld,
1133 const wxChar *szNew,
1134 bool bReplaceAll = true);
1135
1136 // check if the string contents matches a mask containing '*' and '?'
1137 bool Matches(const wxChar *szMask) const;
1138
1139 // conversion to numbers: all functions return true only if the whole
1140 // string is a number and put the value of this number into the pointer
1141 // provided, the base is the numeric base in which the conversion should be
1142 // done and must be comprised between 2 and 36 or be 0 in which case the
1143 // standard C rules apply (leading '0' => octal, "0x" => hex)
1144 // convert to a signed integer
1145 bool ToLong(long *val, int base = 10) const;
1146 // convert to an unsigned integer
1147 bool ToULong(unsigned long *val, int base = 10) const;
1148 // convert to wxLongLong
1149 #if defined(wxLongLong_t)
1150 bool ToLongLong(wxLongLong_t *val, int base = 10) const;
1151 // convert to wxULongLong
1152 bool ToULongLong(wxULongLong_t *val, int base = 10) const;
1153 #endif // wxLongLong_t
1154 // convert to a double
1155 bool ToDouble(double *val) const;
1156
1157
1158
1159 // formatted input/output
1160 // as sprintf(), returns the number of characters written or < 0 on error
1161 // (take 'this' into account in attribute parameter count)
1162 int Printf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
1163 // as vprintf(), returns the number of characters written or < 0 on error
1164 int PrintfV(const wxChar* pszFormat, va_list argptr);
1165
1166 // returns the string containing the result of Printf() to it
1167 static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
1168 // the same as above, but takes a va_list
1169 static wxString FormatV(const wxChar *pszFormat, va_list argptr);
1170
1171 // raw access to string memory
1172 // ensure that string has space for at least nLen characters
1173 // only works if the data of this string is not shared
1174 bool Alloc(size_t nLen) { reserve(nLen); /*return capacity() >= nLen;*/ return true; }
1175 // minimize the string's memory
1176 // only works if the data of this string is not shared
1177 bool Shrink();
1178 #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL
1179 // These are deprecated, use wxStringBuffer or wxStringBufferLength instead
1180 //
1181 // get writable buffer of at least nLen bytes. Unget() *must* be called
1182 // a.s.a.p. to put string back in a reasonable state!
1183 wxDEPRECATED( wxChar *GetWriteBuf(size_t nLen) );
1184 // call this immediately after GetWriteBuf() has been used
1185 wxDEPRECATED( void UngetWriteBuf() );
1186 wxDEPRECATED( void UngetWriteBuf(size_t nLen) );
1187 #endif // WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL
1188
1189 // wxWidgets version 1 compatibility functions
1190
1191 // use Mid()
1192 wxString SubString(size_t from, size_t to) const
1193 { return Mid(from, (to - from + 1)); }
1194 // values for second parameter of CompareTo function
1195 enum caseCompare {exact, ignoreCase};
1196 // values for first parameter of Strip function
1197 enum stripType {leading = 0x1, trailing = 0x2, both = 0x3};
1198
1199 // use Printf()
1200 // (take 'this' into account in attribute parameter count)
1201 int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
1202
1203 // use Cmp()
1204 inline int CompareTo(const wxChar* psz, caseCompare cmp = exact) const
1205 { return cmp == exact ? Cmp(psz) : CmpNoCase(psz); }
1206
1207 // use Len
1208 size_t Length() const { return length(); }
1209 // Count the number of characters
1210 int Freq(wxChar ch) const;
1211 // use MakeLower
1212 void LowerCase() { MakeLower(); }
1213 // use MakeUpper
1214 void UpperCase() { MakeUpper(); }
1215 // use Trim except that it doesn't change this string
1216 wxString Strip(stripType w = trailing) const;
1217
1218 // use Find (more general variants not yet supported)
1219 size_t Index(const wxChar* psz) const { return Find(psz); }
1220 size_t Index(wxChar ch) const { return Find(ch); }
1221 // use Truncate
1222 wxString& Remove(size_t pos) { return Truncate(pos); }
1223 wxString& RemoveLast(size_t n = 1) { return Truncate(length() - n); }
1224
1225 wxString& Remove(size_t nStart, size_t nLen)
1226 { return (wxString&)erase( nStart, nLen ); }
1227
1228 // use Find()
1229 int First( const wxChar ch ) const { return Find(ch); }
1230 int First( const wxChar* psz ) const { return Find(psz); }
1231 int First( const wxString &str ) const { return Find(str); }
1232 int Last( const wxChar ch ) const { return Find(ch, true); }
1233 bool Contains(const wxString& str) const { return Find(str) != wxNOT_FOUND; }
1234
1235 // use empty()
1236 bool IsNull() const { return empty(); }
1237
1238 // std::string compatibility functions
1239
1240 // take nLen chars starting at nPos
1241 wxString(const wxString& str, size_t nPos, size_t nLen)
1242 : wxStringBase(str, nPos, nLen) { }
1243 // take all characters from pStart to pEnd
1244 wxString(const void *pStart, const void *pEnd)
1245 : wxStringBase((const wxChar*)pStart, (const wxChar*)pEnd) { }
1246 #if wxUSE_STL
1247 wxString(const_iterator first, const_iterator last)
1248 : wxStringBase(first, last) { }
1249 #endif
1250
1251 // lib.string.modifiers
1252 // append elements str[pos], ..., str[pos+n]
1253 wxString& append(const wxString& str, size_t pos, size_t n)
1254 { return (wxString&)wxStringBase::append(str, pos, n); }
1255 // append a string
1256 wxString& append(const wxString& str)
1257 { return (wxString&)wxStringBase::append(str); }
1258 // append first n (or all if n == npos) characters of sz
1259 wxString& append(const wxChar *sz)
1260 { return (wxString&)wxStringBase::append(sz); }
1261 wxString& append(const wxChar *sz, size_t n)
1262 { return (wxString&)wxStringBase::append(sz, n); }
1263 // append n copies of ch
1264 wxString& append(size_t n, wxChar ch)
1265 { return (wxString&)wxStringBase::append(n, ch); }
1266 // append from first to last
1267 wxString& append(const_iterator first, const_iterator last)
1268 { return (wxString&)wxStringBase::append(first, last); }
1269
1270 // same as `this_string = str'
1271 wxString& assign(const wxString& str)
1272 { return (wxString&)wxStringBase::assign(str); }
1273 // same as ` = str[pos..pos + n]
1274 wxString& assign(const wxString& str, size_t pos, size_t n)
1275 { return (wxString&)wxStringBase::assign(str, pos, n); }
1276 // same as `= first n (or all if n == npos) characters of sz'
1277 wxString& assign(const wxChar *sz)
1278 { return (wxString&)wxStringBase::assign(sz); }
1279 wxString& assign(const wxChar *sz, size_t n)
1280 { return (wxString&)wxStringBase::assign(sz, n); }
1281 // same as `= n copies of ch'
1282 wxString& assign(size_t n, wxChar ch)
1283 { return (wxString&)wxStringBase::assign(n, ch); }
1284 // assign from first to last
1285 wxString& assign(const_iterator first, const_iterator last)
1286 { return (wxString&)wxStringBase::assign(first, last); }
1287
1288 // string comparison
1289 #if !defined(HAVE_STD_STRING_COMPARE)
1290 int compare(const wxStringBase& str) const;
1291 // comparison with a substring
1292 int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
1293 // comparison of 2 substrings
1294 int compare(size_t nStart, size_t nLen,
1295 const wxStringBase& str, size_t nStart2, size_t nLen2) const;
1296 // just like strcmp()
1297 int compare(const wxChar* sz) const;
1298 // substring comparison with first nCount characters of sz
1299 int compare(size_t nStart, size_t nLen,
1300 const wxChar* sz, size_t nCount = npos) const;
1301 #endif // !defined HAVE_STD_STRING_COMPARE
1302
1303 // insert another string
1304 wxString& insert(size_t nPos, const wxString& str)
1305 { return (wxString&)wxStringBase::insert(nPos, str); }
1306 // insert n chars of str starting at nStart (in str)
1307 wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n)
1308 { return (wxString&)wxStringBase::insert(nPos, str, nStart, n); }
1309 // insert first n (or all if n == npos) characters of sz
1310 wxString& insert(size_t nPos, const wxChar *sz)
1311 { return (wxString&)wxStringBase::insert(nPos, sz); }
1312 wxString& insert(size_t nPos, const wxChar *sz, size_t n)
1313 { return (wxString&)wxStringBase::insert(nPos, sz, n); }
1314 // insert n copies of ch
1315 wxString& insert(size_t nPos, size_t n, wxChar ch)
1316 { return (wxString&)wxStringBase::insert(nPos, n, ch); }
1317 iterator insert(iterator it, wxChar ch)
1318 { return wxStringBase::insert(it, ch); }
1319 void insert(iterator it, const_iterator first, const_iterator last)
1320 { wxStringBase::insert(it, first, last); }
1321 void insert(iterator it, size_type n, wxChar ch)
1322 { wxStringBase::insert(it, n, ch); }
1323
1324 // delete characters from nStart to nStart + nLen
1325 wxString& erase(size_type pos = 0, size_type n = npos)
1326 { return (wxString&)wxStringBase::erase(pos, n); }
1327 iterator erase(iterator first, iterator last)
1328 { return wxStringBase::erase(first, last); }
1329 iterator erase(iterator first)
1330 { return wxStringBase::erase(first); }
1331
1332 #ifdef wxSTRING_BASE_HASNT_CLEAR
1333 void clear() { erase(); }
1334 #endif
1335
1336 // replaces the substring of length nLen starting at nStart
1337 wxString& replace(size_t nStart, size_t nLen, const wxChar* sz)
1338 { return (wxString&)wxStringBase::replace(nStart, nLen, sz); }
1339 // replaces the substring of length nLen starting at nStart
1340 wxString& replace(size_t nStart, size_t nLen, const wxString& str)
1341 { return (wxString&)wxStringBase::replace(nStart, nLen, str); }
1342 // replaces the substring with nCount copies of ch
1343 wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxChar ch)
1344 { return (wxString&)wxStringBase::replace(nStart, nLen, nCount, ch); }
1345 // replaces a substring with another substring
1346 wxString& replace(size_t nStart, size_t nLen,
1347 const wxString& str, size_t nStart2, size_t nLen2)
1348 { return (wxString&)wxStringBase::replace(nStart, nLen, str,
1349 nStart2, nLen2); }
1350 // replaces the substring with first nCount chars of sz
1351 wxString& replace(size_t nStart, size_t nLen,
1352 const wxChar* sz, size_t nCount)
1353 { return (wxString&)wxStringBase::replace(nStart, nLen, sz, nCount); }
1354 wxString& replace(iterator first, iterator last, const_pointer s)
1355 { return (wxString&)wxStringBase::replace(first, last, s); }
1356 wxString& replace(iterator first, iterator last, const_pointer s,
1357 size_type n)
1358 { return (wxString&)wxStringBase::replace(first, last, s, n); }
1359 wxString& replace(iterator first, iterator last, const wxString& s)
1360 { return (wxString&)wxStringBase::replace(first, last, s); }
1361 wxString& replace(iterator first, iterator last, size_type n, wxChar c)
1362 { return (wxString&)wxStringBase::replace(first, last, n, c); }
1363 wxString& replace(iterator first, iterator last,
1364 const_iterator first1, const_iterator last1)
1365 { return (wxString&)wxStringBase::replace(first, last, first1, last1); }
1366
1367 // string += string
1368 wxString& operator+=(const wxString& s)
1369 { return (wxString&)wxStringBase::operator+=(s); }
1370 // string += C string
1371 wxString& operator+=(const wxChar *psz)
1372 { return (wxString&)wxStringBase::operator+=(psz); }
1373 // string += char
1374 wxString& operator+=(wxChar ch)
1375 { return (wxString&)wxStringBase::operator+=(ch); }
1376
1377 private:
1378 #if !wxUSE_STL
1379 // helpers for wxStringBuffer and wxStringBufferLength
1380 wxChar *DoGetWriteBuf(size_t nLen);
1381 void DoUngetWriteBuf();
1382 void DoUngetWriteBuf(size_t nLen);
1383
1384 friend class WXDLLIMPEXP_BASE wxStringBuffer;
1385 friend class WXDLLIMPEXP_BASE wxStringBufferLength;
1386 #endif
1387 };
1388
1389 // notice that even though for many compilers the friend declarations above are
1390 // enough, from the point of view of C++ standard we must have the declarations
1391 // here as friend ones are not injected in the enclosing namespace and without
1392 // them the code fails to compile with conforming compilers such as xlC or g++4
1393 wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, const wxString& string2);
1394 wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxChar ch);
1395 wxString WXDLLIMPEXP_BASE operator+(wxChar ch, const wxString& string);
1396 wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const wxChar *psz);
1397 wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz, const wxString& string);
1398
1399
1400 #if wxUSE_STL
1401 // return an empty wxString (not very useful with wxUSE_STL == 1)
1402 inline const wxString wxGetEmptyString() { return wxString(); }
1403 #else // !wxUSE_STL
1404 // return an empty wxString (more efficient than wxString() here)
1405 inline const wxString& wxGetEmptyString()
1406 {
1407 return *(wxString *)&wxEmptyString;
1408 }
1409 #endif // wxUSE_STL/!wxUSE_STL
1410
1411 // ----------------------------------------------------------------------------
1412 // wxStringBuffer: a tiny class allowing to get a writable pointer into string
1413 // ----------------------------------------------------------------------------
1414
1415 #if wxUSE_STL
1416
1417 class WXDLLIMPEXP_BASE wxStringBuffer
1418 {
1419 public:
1420 wxStringBuffer(wxString& str, size_t lenWanted = 1024)
1421 : m_str(str), m_buf(lenWanted)
1422 { }
1423
1424 ~wxStringBuffer() { m_str.assign(m_buf.data(), wxStrlen(m_buf.data())); }
1425
1426 operator wxChar*() { return m_buf.data(); }
1427
1428 private:
1429 wxString& m_str;
1430 #if wxUSE_UNICODE
1431 wxWCharBuffer m_buf;
1432 #else
1433 wxCharBuffer m_buf;
1434 #endif
1435
1436 DECLARE_NO_COPY_CLASS(wxStringBuffer)
1437 };
1438
1439 class WXDLLIMPEXP_BASE wxStringBufferLength
1440 {
1441 public:
1442 wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
1443 : m_str(str), m_buf(lenWanted), m_len(0), m_lenSet(false)
1444 { }
1445
1446 ~wxStringBufferLength()
1447 {
1448 wxASSERT(m_lenSet);
1449 m_str.assign(m_buf.data(), m_len);
1450 }
1451
1452 operator wxChar*() { return m_buf.data(); }
1453 void SetLength(size_t length) { m_len = length; m_lenSet = true; }
1454
1455 private:
1456 wxString& m_str;
1457 #if wxUSE_UNICODE
1458 wxWCharBuffer m_buf;
1459 #else
1460 wxCharBuffer m_buf;
1461 #endif
1462 size_t m_len;
1463 bool m_lenSet;
1464
1465 DECLARE_NO_COPY_CLASS(wxStringBufferLength)
1466 };
1467
1468 #else // if !wxUSE_STL
1469
1470 class WXDLLIMPEXP_BASE wxStringBuffer
1471 {
1472 public:
1473 wxStringBuffer(wxString& str, size_t lenWanted = 1024)
1474 : m_str(str), m_buf(NULL)
1475 { m_buf = m_str.DoGetWriteBuf(lenWanted); }
1476
1477 ~wxStringBuffer() { m_str.DoUngetWriteBuf(); }
1478
1479 operator wxChar*() const { return m_buf; }
1480
1481 private:
1482 wxString& m_str;
1483 wxChar *m_buf;
1484
1485 DECLARE_NO_COPY_CLASS(wxStringBuffer)
1486 };
1487
1488 class WXDLLIMPEXP_BASE wxStringBufferLength
1489 {
1490 public:
1491 wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
1492 : m_str(str), m_buf(NULL), m_len(0), m_lenSet(false)
1493 {
1494 m_buf = m_str.DoGetWriteBuf(lenWanted);
1495 wxASSERT(m_buf != NULL);
1496 }
1497
1498 ~wxStringBufferLength()
1499 {
1500 wxASSERT(m_lenSet);
1501 m_str.DoUngetWriteBuf(m_len);
1502 }
1503
1504 operator wxChar*() const { return m_buf; }
1505 void SetLength(size_t length) { m_len = length; m_lenSet = true; }
1506
1507 private:
1508 wxString& m_str;
1509 wxChar *m_buf;
1510 size_t m_len;
1511 bool m_lenSet;
1512
1513 DECLARE_NO_COPY_CLASS(wxStringBufferLength)
1514 };
1515
1516 #endif // !wxUSE_STL
1517
1518 // ---------------------------------------------------------------------------
1519 // wxString comparison functions: operator versions are always case sensitive
1520 // ---------------------------------------------------------------------------
1521
1522 // note that when wxUSE_STL == 1 the comparison operators taking std::string
1523 // are used and defining them also for wxString would only result in
1524 // compilation ambiguities when comparing std::string and wxString
1525 #if !wxUSE_STL
1526
1527 inline bool operator==(const wxString& s1, const wxString& s2)
1528 { return (s1.Len() == s2.Len()) && (s1.Cmp(s2) == 0); }
1529 inline bool operator==(const wxString& s1, const wxChar * s2)
1530 { return s1.Cmp(s2) == 0; }
1531 inline bool operator==(const wxChar * s1, const wxString& s2)
1532 { return s2.Cmp(s1) == 0; }
1533 inline bool operator!=(const wxString& s1, const wxString& s2)
1534 { return (s1.Len() != s2.Len()) || (s1.Cmp(s2) != 0); }
1535 inline bool operator!=(const wxString& s1, const wxChar * s2)
1536 { return s1.Cmp(s2) != 0; }
1537 inline bool operator!=(const wxChar * s1, const wxString& s2)
1538 { return s2.Cmp(s1) != 0; }
1539 inline bool operator< (const wxString& s1, const wxString& s2)
1540 { return s1.Cmp(s2) < 0; }
1541 inline bool operator< (const wxString& s1, const wxChar * s2)
1542 { return s1.Cmp(s2) < 0; }
1543 inline bool operator< (const wxChar * s1, const wxString& s2)
1544 { return s2.Cmp(s1) > 0; }
1545 inline bool operator> (const wxString& s1, const wxString& s2)
1546 { return s1.Cmp(s2) > 0; }
1547 inline bool operator> (const wxString& s1, const wxChar * s2)
1548 { return s1.Cmp(s2) > 0; }
1549 inline bool operator> (const wxChar * s1, const wxString& s2)
1550 { return s2.Cmp(s1) < 0; }
1551 inline bool operator<=(const wxString& s1, const wxString& s2)
1552 { return s1.Cmp(s2) <= 0; }
1553 inline bool operator<=(const wxString& s1, const wxChar * s2)
1554 { return s1.Cmp(s2) <= 0; }
1555 inline bool operator<=(const wxChar * s1, const wxString& s2)
1556 { return s2.Cmp(s1) >= 0; }
1557 inline bool operator>=(const wxString& s1, const wxString& s2)
1558 { return s1.Cmp(s2) >= 0; }
1559 inline bool operator>=(const wxString& s1, const wxChar * s2)
1560 { return s1.Cmp(s2) >= 0; }
1561 inline bool operator>=(const wxChar * s1, const wxString& s2)
1562 { return s2.Cmp(s1) <= 0; }
1563
1564 #if wxUSE_UNICODE
1565 inline bool operator==(const wxString& s1, const wxWCharBuffer& s2)
1566 { return (s1.Cmp((const wchar_t *)s2) == 0); }
1567 inline bool operator==(const wxWCharBuffer& s1, const wxString& s2)
1568 { return (s2.Cmp((const wchar_t *)s1) == 0); }
1569 inline bool operator!=(const wxString& s1, const wxWCharBuffer& s2)
1570 { return (s1.Cmp((const wchar_t *)s2) != 0); }
1571 inline bool operator!=(const wxWCharBuffer& s1, const wxString& s2)
1572 { return (s2.Cmp((const wchar_t *)s1) != 0); }
1573 #else // !wxUSE_UNICODE
1574 inline bool operator==(const wxString& s1, const wxCharBuffer& s2)
1575 { return (s1.Cmp((const char *)s2) == 0); }
1576 inline bool operator==(const wxCharBuffer& s1, const wxString& s2)
1577 { return (s2.Cmp((const char *)s1) == 0); }
1578 inline bool operator!=(const wxString& s1, const wxCharBuffer& s2)
1579 { return (s1.Cmp((const char *)s2) != 0); }
1580 inline bool operator!=(const wxCharBuffer& s1, const wxString& s2)
1581 { return (s2.Cmp((const char *)s1) != 0); }
1582 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1583
1584 #if wxUSE_UNICODE
1585 inline wxString operator+(const wxString& string, const wxWCharBuffer& buf)
1586 { return string + (const wchar_t *)buf; }
1587 inline wxString operator+(const wxWCharBuffer& buf, const wxString& string)
1588 { return (const wchar_t *)buf + string; }
1589 #else // !wxUSE_UNICODE
1590 inline wxString operator+(const wxString& string, const wxCharBuffer& buf)
1591 { return string + (const char *)buf; }
1592 inline wxString operator+(const wxCharBuffer& buf, const wxString& string)
1593 { return (const char *)buf + string; }
1594 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1595
1596 #endif // !wxUSE_STL
1597
1598 // comparison with char (those are not defined by std::[w]string and so should
1599 // be always available)
1600 inline bool operator==(wxChar c, const wxString& s) { return s.IsSameAs(c); }
1601 inline bool operator==(const wxString& s, wxChar c) { return s.IsSameAs(c); }
1602 inline bool operator!=(wxChar c, const wxString& s) { return !s.IsSameAs(c); }
1603 inline bool operator!=(const wxString& s, wxChar c) { return !s.IsSameAs(c); }
1604
1605 // comparison with C string in Unicode build
1606 #if wxUSE_UNICODE
1607 inline bool operator==(const wxString& s1, const char* s2)
1608 { return s1 == wxString(s2); }
1609 inline bool operator==(const char* s1, const wxString& s2)
1610 { return wxString(s1) == s2; }
1611 inline bool operator!=(const wxString& s1, const char* s2)
1612 { return s1 != wxString(s2); }
1613 inline bool operator!=(const char* s1, const wxString& s2)
1614 { return wxString(s1) != s2; }
1615 inline bool operator< (const wxString& s1, const char* s2)
1616 { return s1 < wxString(s2); }
1617 inline bool operator< (const char* s1, const wxString& s2)
1618 { return wxString(s1) < s2; }
1619 inline bool operator> (const wxString& s1, const char* s2)
1620 { return s1 > wxString(s2); }
1621 inline bool operator> (const char* s1, const wxString& s2)
1622 { return wxString(s1) > s2; }
1623 inline bool operator<=(const wxString& s1, const char* s2)
1624 { return s1 <= wxString(s2); }
1625 inline bool operator<=(const char* s1, const wxString& s2)
1626 { return wxString(s1) <= s2; }
1627 inline bool operator>=(const wxString& s1, const char* s2)
1628 { return s1 >= wxString(s2); }
1629 inline bool operator>=(const char* s1, const wxString& s2)
1630 { return wxString(s1) >= s2; }
1631 #endif // wxUSE_UNICODE
1632
1633 // ---------------------------------------------------------------------------
1634 // Implementation only from here until the end of file
1635 // ---------------------------------------------------------------------------
1636
1637 // don't pollute the library user's name space
1638 #undef wxASSERT_VALID_INDEX
1639
1640 #if wxUSE_STD_IOSTREAM
1641
1642 #include "wx/iosfwrap.h"
1643
1644 WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxString&);
1645
1646 #endif // wxSTD_STRING_COMPATIBILITY
1647
1648 #endif // _WX_WXSTRINGH__