]> git.saurik.com Git - wxWidgets.git/blame - include/wx/string.h
Theme fix for Mac
[wxWidgets.git] / include / wx / string.h
CommitLineData
3c67202d 1///////////////////////////////////////////////////////////////////////////////
1c2d1459 2// Name: wx/string.h
3c67202d 3// Purpose: wxString and wxArrayString classes
c801d85f
KB
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>
65571936 9// Licence: wxWindows licence
3c67202d 10///////////////////////////////////////////////////////////////////////////////
c801d85f 11
e90c1d2a
VZ
12/*
13 Efficient string class [more or less] compatible with MFC CString,
77ffb593 14 wxWidgets version 1 wxString and std::string and some handy functions
e90c1d2a
VZ
15 missing from string.h.
16*/
17
34138703
JS
18#ifndef _WX_WXSTRINGH__
19#define _WX_WXSTRINGH__
c801d85f 20
e90c1d2a
VZ
21// ----------------------------------------------------------------------------
22// headers
23// ----------------------------------------------------------------------------
24
5737d05f
VZ
25#include "wx/defs.h" // everybody should include this
26
9dea36ef 27#if defined(__WXMAC__) || defined(__VISAGECPP__)
3f4a0c5b 28 #include <ctype.h>
17dff81c 29#endif
3f4a0c5b 30
9dea36ef
DW
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
c801d85f 45
1c2d1459 46#ifdef HAVE_STRCASECMP_IN_STRINGS_H
1bfcb0b6 47 #include <strings.h> // for strcasecmp()
1c2d1459 48#endif // HAVE_STRCASECMP_IN_STRINGS_H
1bfcb0b6 49
4055ed82 50#ifdef __WXPALMOS__
ffecfa5a
JS
51 #include <StringMgr.h>
52#endif
53
e90c1d2a
VZ
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
3f4a0c5b 57
fb3c9042
VZ
58class WXDLLIMPEXP_BASE wxString;
59
c801d85f
KB
60// ---------------------------------------------------------------------------
61// macros
62// ---------------------------------------------------------------------------
63
5737d05f
VZ
64// casts [unfortunately!] needed to call some broken functions which require
65// "char *" instead of "const char *"
2bb67b80 66#define WXSTRINGCAST (wxChar *)(const wxChar *)
e90c1d2a
VZ
67#define wxCSTRINGCAST (wxChar *)(const wxChar *)
68#define wxMBSTRINGCAST (char *)(const char *)
69#define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
c801d85f 70
3c67202d 71// implementation only
5737d05f 72#define wxASSERT_VALID_INDEX(i) \
e87b7833 73 wxASSERT_MSG( (size_t)(i) <= length(), _T("invalid index in wxString") )
c801d85f 74
e90c1d2a
VZ
75// ----------------------------------------------------------------------------
76// constants
77// ----------------------------------------------------------------------------
78
13874b5c
VZ
79#if WXWIN_COMPATIBILITY_2_6
80
81// deprecated in favour of wxString::npos, don't use in new code
82//
e90c1d2a 83// maximum possible length for a string means "take all string" everywhere
2cbfa061 84#define wxSTRING_MAXLEN wxStringBase::npos
66b6b045 85
13874b5c
VZ
86#endif // WXWIN_COMPATIBILITY_2_6
87
e90c1d2a
VZ
88// ----------------------------------------------------------------------------
89// global data
90// ----------------------------------------------------------------------------
91
92// global pointer to empty string
bddd7a8d 93extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxEmptyString;
6001e347 94
c801d85f 95// ---------------------------------------------------------------------------
e90c1d2a 96// global functions complementing standard C string library replacements for
3c67202d
VZ
97// strlen() and portable strcasecmp()
98//---------------------------------------------------------------------------
e90c1d2a
VZ
99
100// Use wxXXX() functions from wxchar.h instead! These functions are for
101// backwards compatibility only.
88150e60 102
3c67202d 103// checks whether the passed in pointer is NULL and if the string is empty
6d56eb5c 104inline bool IsEmpty(const char *p) { return (!p || !*p); }
c801d85f 105
3c67202d 106// safe version of strlen() (returns 0 if passed NULL pointer)
6d56eb5c 107inline size_t Strlen(const char *psz)
c801d85f
KB
108 { return psz ? strlen(psz) : 0; }
109
3c67202d 110// portable strcasecmp/_stricmp
6d56eb5c 111inline int Stricmp(const char *psz1, const char *psz2)
dd1eaa89 112{
7f0586ef
JS
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__) )
dd1eaa89 122 return _stricmp(psz1, psz2);
91b8de8d 123#elif defined(__SC__)
2432b92d 124 return _stricmp(psz1, psz2);
91b8de8d 125#elif defined(__SALFORDC__)
a3ef5bf5 126 return stricmp(psz1, psz2);
dd1eaa89
VZ
127#elif defined(__BORLANDC__)
128 return stricmp(psz1, psz2);
7be1f0d9
JS
129#elif defined(__WATCOMC__)
130 return stricmp(psz1, psz2);
14704334
VS
131#elif defined(__DJGPP__)
132 return stricmp(psz1, psz2);
91b8de8d
RR
133#elif defined(__EMX__)
134 return stricmp(psz1, psz2);
e2c87f4c 135#elif defined(__WXPM__)
1777b9bb 136 return stricmp(psz1, psz2);
a0be6908
WS
137#elif defined(__WXPALMOS__) || \
138 defined(HAVE_STRCASECMP_IN_STRING_H) || \
1c2d1459
VZ
139 defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
140 defined(__GNUWIN32__)
dd1eaa89 141 return strcasecmp(psz1, psz2);
8be97d65 142#elif defined(__MWERKS__) && !defined(__INTEL__)
17dff81c
SC
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;
dd1eaa89
VZ
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}
c801d85f 167
ce76f779
VZ
168// ----------------------------------------------------------------------------
169// deal with STL/non-STL/non-STL-but-wxUSE_STD_STRING
170// ----------------------------------------------------------------------------
171
172// in both cases we need to define wxStdString
47561b0d 173#if wxUSE_STL || wxUSE_STD_STRING
e87b7833
MB
174
175#include "wx/beforestd.h"
176#include <string>
177#include "wx/afterstd.h"
178
179#if wxUSE_UNICODE
0c7cfd99 180 #ifdef HAVE_STD_WSTRING
ce76f779 181 typedef std::wstring wxStdString;
e87b7833 182 #else
ce76f779 183 typedef std::basic_string<wxChar> wxStdString;
e87b7833
MB
184 #endif
185#else
ce76f779 186 typedef std::string wxStdString;
e87b7833
MB
187#endif
188
ce76f779 189#endif // need <string>
e87b7833 190
ce76f779
VZ
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
7147aa47 196 #define wxUSE_STD_STRING 0
ce76f779
VZ
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;
e87b7833
MB
204#else // if !wxUSE_STL
205
47561b0d
MB
206#if !defined(HAVE_STD_STRING_COMPARE) && \
207 (!defined(__WX_SETUP_H__) || wxUSE_STL == 0)
e87b7833
MB
208 #define HAVE_STD_STRING_COMPARE
209#endif
210
c801d85f 211// ---------------------------------------------------------------------------
f04f3991 212// string data prepended with some housekeeping info (used by wxString class),
c801d85f
KB
213// is never used directly (but had to be put here to allow inlining)
214// ---------------------------------------------------------------------------
e90c1d2a 215
bddd7a8d 216struct WXDLLIMPEXP_BASE wxStringData
c801d85f
KB
217{
218 int nRefs; // reference count
3c024cc2 219 size_t nDataLength, // actual string length
c801d85f
KB
220 nAllocLength; // allocated memory size
221
2bb67b80
OK
222 // mimics declaration 'wxChar data[nAllocLength]'
223 wxChar* data() const { return (wxChar*)(this + 1); }
c801d85f
KB
224
225 // empty string has a special ref count so it's never deleted
dbda9e86
JS
226 bool IsEmpty() const { return (nRefs == -1); }
227 bool IsShared() const { return (nRefs > 1); }
c801d85f
KB
228
229 // lock/unlock
dd1eaa89 230 void Lock() { if ( !IsEmpty() ) nRefs++; }
f6bcfd97 231
8ecf21b7 232 // VC++ will refuse to inline Unlock but profiling shows that it is wrong
f6bcfd97 233#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
1c2d1459 234 __forceinline
f6bcfd97 235#endif
ca5e07c7
GD
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)
8ecf21b7
GD
238#if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
239 void Unlock() { if ( !IsEmpty() && --nRefs == 0) Free(); }
ca5e07c7
GD
240 // we must not inline deallocation since allocation is not inlined
241 void Free();
8ecf21b7 242#else
f1317a5d 243 void Unlock() { if ( !IsEmpty() && --nRefs == 0) free(this); }
8ecf21b7 244#endif
8fd0f20b 245
dd1eaa89 246 // if we had taken control over string memory (GetWriteBuf), it's
8fd0f20b 247 // intentionally put in invalid state
dbda9e86
JS
248 void Validate(bool b) { nRefs = (b ? 1 : 0); }
249 bool IsValid() const { return (nRefs != 0); }
c801d85f
KB
250};
251
e87b7833 252class WXDLLIMPEXP_BASE wxStringBase
3c67202d 253{
df5168c4 254#if !wxUSE_STL
bddd7a8d 255friend class WXDLLIMPEXP_BASE wxArrayString;
df5168c4 256#endif
5c0217af
SC
257public :
258 // an 'invalid' value for string index, moved to this place due to a CW bug
259 static const size_t npos;
e87b7833 260protected:
dd1eaa89 261 // points to data preceded by wxStringData structure with ref count info
2bb67b80 262 wxChar *m_pchData;
dd1eaa89
VZ
263
264 // accessor to string data
265 wxStringData* GetStringData() const { return (wxStringData*)m_pchData - 1; }
266
6b95b20d
VZ
267 // string (re)initialization functions
268 // initializes the string to the empty value (must be called only from
269 // ctors, use Reinit() otherwise)
e90c1d2a 270 void Init() { m_pchData = (wxChar *)wxEmptyString; }
90e572f1 271 // initializes the string with (a part of) C-string
e87b7833 272 void InitWith(const wxChar *psz, size_t nPos = 0, size_t nLen = npos);
6b95b20d
VZ
273 // as Init, but also frees old data
274 void Reinit() { GetStringData()->Unlock(); Init(); }
275
276 // memory allocation
b1801e0e
GD
277 // allocates memory for string of length nLen
278 bool AllocBuffer(size_t nLen);
6b95b20d 279 // copies data to another string
b1801e0e 280 bool AllocCopy(wxString&, int, int) const;
6b95b20d 281 // effectively copies data to string
b1801e0e 282 bool AssignCopy(size_t, const wxChar *);
6b95b20d
VZ
283
284 // append a (sub)string
e87b7833
MB
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); }
6b95b20d
VZ
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)
b1801e0e
GD
291 bool CopyBeforeWrite();
292 bool AllocBeforeWrite(size_t);
6b95b20d 293
e87b7833
MB
294 // compatibility with wxString
295 bool Alloc(size_t nLen);
296public:
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;
00b4a13e 307
968f291b
VZ
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); } \
968f291b
VZ
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
3c67202d
VZ
345 // constructors and destructor
346 // ctor for an empty string
e87b7833 347 wxStringBase() { Init(); }
3c67202d 348 // copy ctor
e87b7833 349 wxStringBase(const wxStringBase& stringSrc)
6b95b20d 350 {
09443a26
VZ
351 wxASSERT_MSG( stringSrc.GetStringData()->IsValid(),
352 _T("did you forget to call UngetWriteBuf()?") );
6b95b20d 353
e87b7833 354 if ( stringSrc.empty() ) {
6b95b20d
VZ
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 }
3c67202d 363 // string containing nRepeat copies of ch
e87b7833 364 wxStringBase(size_type nRepeat, wxChar ch);
3c67202d 365 // ctor takes first nLength characters from C string
e87b7833
MB
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)
b1801e0e 370 { InitWith(psz, 0, nLength); }
830f8f11
VZ
371 wxStringBase(const wxChar *psz,
372 const wxMBConv& WXUNUSED(conv),
373 size_t nLength = npos)
b1801e0e 374 { InitWith(psz, 0, nLength); }
e87b7833
MB
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!
1c2d1459
VZ
388 ~wxStringBase()
389 {
7b758e8f 390#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
1c2d1459
VZ
391 //RN - according to the above VC++ does indeed inline this,
392 //even though it spits out two warnings
393 #pragma warning (disable:4714)
7b758e8f 394#endif
e87b7833 395
1c2d1459 396 GetStringData()->Unlock();
7b758e8f
RN
397 }
398
399#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
1c2d1459
VZ
400 //re-enable inlining warning
401 #pragma warning (default:4714)
402#endif
e87b7833
MB
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
20aa779e 412 size_type length() const { return GetStringData()->nDataLength; }
e87b7833 413 // return the length of the string
20aa779e 414 size_type size() const { return length(); }
e87b7833 415 // return the maximum size of the string
13874b5c 416 size_type max_size() const { return npos; }
e87b7833
MB
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
20aa779e 422 bool empty() const { return length() == 0; }
e87b7833
MB
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]; }
e87b7833
MB
431 // returns the writable character at position n
432 reference at(size_type n)
433 { wxASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }
e87b7833
MB
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; }
968f291b 477 iterator begin();
e87b7833
MB
478 // position one after the last valid one
479 const_iterator end() const { return m_pchData + length(); }
ac3c86ee 480 iterator end();
e87b7833 481
968f291b
VZ
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
e87b7833
MB
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)
1c2d1459 510 { size_t idx = it - begin(); insert(idx, 1, ch); return begin() + idx; }
e87b7833
MB
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
e87b7833
MB
566 // find first n characters of sz
567 size_t find(const wxChar* sz, size_t nStart = 0, size_t n = npos) const;
e87b7833 568
e87b7833
MB
569 // find the first occurence of character ch after nStart
570 size_t find(wxChar ch, size_t nStart = 0) const;
1412634b 571
e87b7833
MB
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
e87b7833
MB
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;
e2101186 590 size_t find_first_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833
MB
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;
e2101186 599 size_t find_last_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833
MB
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;
e2101186 611 size_t find_first_not_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833
MB
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
e2101186 616 { return find_last_not_of(str.c_str(), nStart); }
e87b7833
MB
617 // same as above
618 size_t find_last_not_of(const wxChar* sz, size_t nStart = npos) const;
e2101186 619 size_t find_last_not_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833
MB
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
dcb68102
RN
626 // comparison with another string
627 int compare(const wxStringBase& str) const;
e87b7833
MB
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;
dcb68102
RN
633 // comparison with a c string
634 int compare(const wxChar* sz) const;
e87b7833
MB
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
b6339dde
VZ
654// ----------------------------------------------------------------------------
655// wxString: string class trying to be compatible with std::string, MFC
656// CString and wxWindows 1.x wxString all at once
e87b7833
MB
657// ---------------------------------------------------------------------------
658
659class WXDLLIMPEXP_BASE wxString : public wxStringBase
660{
661#if !wxUSE_STL
662friend 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
20aa779e 667 // performance critical functions are still inlined if you change order!
e87b7833
MB
668private:
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
684public:
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) { }
830f8f11
VZ
702 wxString(const wxChar *psz,
703 const wxMBConv& WXUNUSED(conv),
704 size_t nLength = npos)
e87b7833 705 : wxStringBase(psz, nLength == npos ? wxStrlen(psz) : nLength) { }
e90c1d2a 706
20aa779e 707 // even if we're not built with wxUSE_STL == 1 it is very convenient to allow
ce76f779
VZ
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
47561b0d 713#if wxUSE_STD_STRING
ce76f779
VZ
714 wxString(const wxStdString& s)
715 : wxStringBase(s.c_str()) { }
716#endif // wxUSE_STD_STRING
717
2bb67b80
OK
718#if wxUSE_UNICODE
719 // from multibyte string
830f8f11 720 wxString(const char *psz, const wxMBConv& conv, size_t nLength = npos);
2bb67b80 721 // from wxWCharBuffer (i.e. return from wxGetString)
e87b7833 722 wxString(const wxWCharBuffer& psz) : wxStringBase(psz.data()) { }
e90c1d2a 723#else // ANSI
3c67202d 724 // from C string (for compilers using unsigned char)
153958f7
VZ
725 wxString(const unsigned char* psz)
726 : wxStringBase((const char*)psz) { }
727 // from part of C string (for compilers using unsigned char)
728 wxString(const unsigned char* psz, size_t nLength)
e87b7833 729 : wxStringBase((const char*)psz, nLength) { }
e90c1d2a 730
6f841509 731#if wxUSE_WCHAR_T
2bb67b80 732 // from wide (Unicode) string
830f8f11
VZ
733 wxString(const wchar_t *pwz,
734 const wxMBConv& conv = wxConvLibc,
735 size_t nLength = npos);
e90c1d2a
VZ
736#endif // !wxUSE_WCHAR_T
737
2bb67b80
OK
738 // from wxCharBuffer
739 wxString(const wxCharBuffer& psz)
051aa330 740 : wxStringBase(psz) { }
e90c1d2a
VZ
741#endif // Unicode/ANSI
742
3c67202d
VZ
743 // generic attributes & operations
744 // as standard strlen()
e87b7833 745 size_t Len() const { return length(); }
3c67202d 746 // string contains any characters?
e87b7833 747 bool IsEmpty() const { return empty(); }
d775fa82 748 // empty string is "false", so !str will return true
20aa779e 749 bool operator!() const { return empty(); }
735d1db6
VZ
750 // truncate the string to given length
751 wxString& Truncate(size_t uiLen);
3c67202d 752 // empty string contents
dd1eaa89
VZ
753 void Empty()
754 {
735d1db6 755 Truncate(0);
dd1eaa89 756
5a8231ef 757 wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") );
7be07660 758 }
3c67202d 759 // empty the string and free memory
7be07660
VZ
760 void Clear()
761 {
e87b7833
MB
762 wxString tmp(wxEmptyString);
763 swap(tmp);
dd1eaa89
VZ
764 }
765
3c67202d
VZ
766 // contents test
767 // Is an ascii value
c801d85f 768 bool IsAscii() const;
3c67202d 769 // Is a number
c801d85f 770 bool IsNumber() const;
3c67202d 771 // Is a word
c801d85f 772 bool IsWord() const;
c801d85f 773
3c67202d
VZ
774 // data access (all indexes are 0 based)
775 // read access
2bb67b80 776 wxChar GetChar(size_t n) const
9d9ad673 777 { return at(n); }
3c67202d 778 // read/write access
2bb67b80 779 wxChar& GetWritableChar(size_t n)
9d9ad673 780 { return at(n); }
3c67202d 781 // write access
2bb67b80 782 void SetChar(size_t n, wxChar ch)
9d9ad673 783 { at(n) = ch; }
c801d85f 784
3c67202d 785 // get last character
2bb67b80 786 wxChar Last() const
09443a26 787 {
5a8231ef 788 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
09443a26 789
9d9ad673 790 return at(length() - 1);
09443a26
VZ
791 }
792
3c67202d 793 // get writable last character
2bb67b80 794 wxChar& Last()
09443a26 795 {
5a8231ef 796 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
9d9ad673 797 return at(length() - 1);
09443a26 798 }
c801d85f 799
d836ee96 800 /*
9d9ad673 801 Note that we we must define all of the overloads below to avoid
01398433
VZ
802 ambiguity when using str[0]. Also note that for a conforming compiler we
803 don't need const version of operatorp[] at all as indexed access to
804 const string is provided by implicit conversion to "const wxChar *"
805 below and defining them would only result in ambiguities, but some other
806 compilers refuse to compile "str[0]" without them.
d836ee96
VZ
807 */
808
01398433
VZ
809#if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__MWERKS__)
810 wxChar operator[](int n) const
811 { return wxStringBase::at(n); }
812 wxChar operator[](size_type n) const
813 { return wxStringBase::at(n); }
814#ifndef wxSIZE_T_IS_UINT
815 wxChar operator[](unsigned int n) const
816 { return wxStringBase::at(n); }
817#endif // size_t != unsigned int
818#endif // broken compiler
819
820
9d9ad673
VZ
821 // operator versions of GetWriteableChar()
822 wxChar& operator[](int n)
823 { return wxStringBase::at(n); }
e87b7833 824 wxChar& operator[](size_type n)
9d9ad673 825 { return wxStringBase::at(n); }
d836ee96 826#ifndef wxSIZE_T_IS_UINT
d836ee96 827 wxChar& operator[](unsigned int n)
9d9ad673 828 { return wxStringBase::at(n); }
d836ee96 829#endif // size_t != unsigned int
c801d85f 830
3c67202d 831 // implicit conversion to C string
e87b7833 832 operator const wxChar*() const { return c_str(); }
e015c2a3 833
e015c2a3 834 // identical to c_str(), for wxWin 1.6x compatibility
e87b7833 835 const wxChar* wx_str() const { return c_str(); }
e015c2a3 836 // identical to c_str(), for MFC compatibility
e87b7833 837 const wxChar* GetData() const { return c_str(); }
e90c1d2a 838
e015c2a3
VZ
839 // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
840 // converting numbers or strings which are certain not to contain special
841 // chars (typically system functions, X atoms, environment variables etc.)
842 //
843 // the behaviour of these functions with the strings containing anything
844 // else than 7 bit ASCII characters is undefined, use at your own risk.
b1ac3b56 845#if wxUSE_UNICODE
2b5f62a0
VZ
846 static wxString FromAscii(const char *ascii); // string
847 static wxString FromAscii(const char ascii); // char
b1ac3b56 848 const wxCharBuffer ToAscii() const;
e015c2a3
VZ
849#else // ANSI
850 static wxString FromAscii(const char *ascii) { return wxString( ascii ); }
2b5f62a0 851 static wxString FromAscii(const char ascii) { return wxString( ascii ); }
e015c2a3
VZ
852 const char *ToAscii() const { return c_str(); }
853#endif // Unicode/!Unicode
b1ac3b56 854
2b5f62a0 855 // conversions with (possible) format conversions: have to return a
e90c1d2a 856 // buffer with temporary data
f6bcfd97
BP
857 //
858 // the functions defined (in either Unicode or ANSI) mode are mb_str() to
859 // return an ANSI (multibyte) string, wc_str() to return a wide string and
860 // fn_str() to return a string which should be used with the OS APIs
861 // accepting the file names. The return value is always the same, but the
862 // type differs because a function may either return pointer to the buffer
863 // directly or have to use intermediate buffer for translation.
2bb67b80 864#if wxUSE_UNICODE
830f8f11 865 const wxCharBuffer mb_str(const wxMBConv& conv = wxConvLibc) const;
f6bcfd97 866
e90c1d2a
VZ
867 const wxWX2MBbuf mbc_str() const { return mb_str(*wxConvCurrent); }
868
e87b7833 869 const wxChar* wc_str() const { return c_str(); }
f6bcfd97
BP
870
871 // for compatibility with !wxUSE_UNICODE version
830f8f11 872 const wxChar* wc_str(const wxMBConv& WXUNUSED(conv)) const { return c_str(); }
e90c1d2a 873
2bb67b80 874#if wxMBFILES
5f709e67 875 const wxCharBuffer fn_str() const { return mb_str(wxConvFile); }
e90c1d2a 876#else // !wxMBFILES
e87b7833 877 const wxChar* fn_str() const { return c_str(); }
e90c1d2a
VZ
878#endif // wxMBFILES/!wxMBFILES
879#else // ANSI
e87b7833 880 const wxChar* mb_str() const { return c_str(); }
f6bcfd97
BP
881
882 // for compatibility with wxUSE_UNICODE version
830f8f11 883 const wxChar* mb_str(const wxMBConv& WXUNUSED(conv)) const { return c_str(); }
f6bcfd97 884
e90c1d2a 885 const wxWX2MBbuf mbc_str() const { return mb_str(); }
f6bcfd97 886
6f841509 887#if wxUSE_WCHAR_T
830f8f11 888 const wxWCharBuffer wc_str(const wxMBConv& conv) const;
e90c1d2a 889#endif // wxUSE_WCHAR_T
d5c8817c
SC
890#ifdef __WXOSX__
891 const wxCharBuffer fn_str() const { return wxConvFile.cWC2WX( wc_str( wxConvLocal ) ); }
892#else
e87b7833 893 const wxChar* fn_str() const { return c_str(); }
d5c8817c 894#endif
e90c1d2a 895#endif // Unicode/ANSI
c801d85f 896
3c67202d
VZ
897 // overloaded assignment
898 // from another wxString
e87b7833
MB
899 wxString& operator=(const wxStringBase& stringSrc)
900 { return (wxString&)wxStringBase::operator=(stringSrc); }
3c67202d 901 // from a character
e87b7833
MB
902 wxString& operator=(wxChar ch)
903 { return (wxString&)wxStringBase::operator=(ch); }
c57e3bd5
RN
904 // from a C string - STL probably will crash on NULL,
905 // so we need to compensate in that case
906#if wxUSE_STL
907 wxString& operator=(const wxChar *psz)
908 { if(psz) wxStringBase::operator=(psz); else Clear(); return *this; }
909#else
e87b7833
MB
910 wxString& operator=(const wxChar *psz)
911 { return (wxString&)wxStringBase::operator=(psz); }
c57e3bd5
RN
912#endif
913
111bb7f2
OK
914#if wxUSE_UNICODE
915 // from wxWCharBuffer
b1801e0e 916 wxString& operator=(const wxWCharBuffer& psz)
e87b7833 917 { (void) operator=((const wchar_t *)psz); return *this; }
e90c1d2a 918#else // ANSI
3c67202d 919 // from another kind of C string
c801d85f 920 wxString& operator=(const unsigned char* psz);
6f841509 921#if wxUSE_WCHAR_T
3c67202d 922 // from a wide string
c801d85f 923 wxString& operator=(const wchar_t *pwz);
6f841509 924#endif
111bb7f2 925 // from wxCharBuffer
b1801e0e 926 wxString& operator=(const wxCharBuffer& psz)
e87b7833 927 { (void) operator=((const char *)psz); return *this; }
e90c1d2a 928#endif // Unicode/ANSI
3c67202d
VZ
929
930 // string concatenation
931 // in place concatenation
932 /*
933 Concatenate and return the result. Note that the left to right
934 associativity of << allows to write things like "str << str1 << str2
935 << ..." (unlike with +=)
936 */
937 // string += string
dd1eaa89
VZ
938 wxString& operator<<(const wxString& s)
939 {
e87b7833 940#if !wxUSE_STL
09443a26
VZ
941 wxASSERT_MSG( s.GetStringData()->IsValid(),
942 _T("did you forget to call UngetWriteBuf()?") );
e87b7833 943#endif
dd1eaa89 944
e87b7833 945 append(s);
dd1eaa89
VZ
946 return *this;
947 }
3c67202d 948 // string += C string
2bb67b80 949 wxString& operator<<(const wxChar *psz)
e87b7833 950 { append(psz); return *this; }
3c67202d 951 // string += char
e87b7833 952 wxString& operator<<(wxChar ch) { append(1, ch); return *this; }
2bb67b80
OK
953
954 // string += buffer (i.e. from wxGetString)
955#if wxUSE_UNICODE
09443a26
VZ
956 wxString& operator<<(const wxWCharBuffer& s)
957 { (void)operator<<((const wchar_t *)s); return *this; }
958 void operator+=(const wxWCharBuffer& s)
959 { (void)operator<<((const wchar_t *)s); }
960#else // !wxUSE_UNICODE
961 wxString& operator<<(const wxCharBuffer& s)
962 { (void)operator<<((const char *)s); return *this; }
963 void operator+=(const wxCharBuffer& s)
964 { (void)operator<<((const char *)s); }
965#endif // wxUSE_UNICODE/!wxUSE_UNICODE
6b95b20d 966
3c67202d 967 // string += C string
09443a26
VZ
968 wxString& Append(const wxString& s)
969 {
5a8231ef
WS
970 // test for empty() to share the string if possible
971 if ( empty() )
09443a26
VZ
972 *this = s;
973 else
e87b7833 974 append(s);
09443a26
VZ
975 return *this;
976 }
2bb67b80 977 wxString& Append(const wxChar* psz)
e87b7833 978 { append(psz); return *this; }
3c67202d 979 // append count copies of given character
2bb67b80 980 wxString& Append(wxChar ch, size_t count = 1u)
e87b7833 981 { append(count, ch); return *this; }
8f06a017 982 wxString& Append(const wxChar* psz, size_t nLen)
e87b7833 983 { append(psz, nLen); return *this; }
3c67202d
VZ
984
985 // prepend a string, return the string itself
986 wxString& Prepend(const wxString& str)
987 { *this = str + *this; return *this; }
988
989 // non-destructive concatenation
1fc8cfbd
VZ
990 // two strings
991 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string1,
992 const wxString& string2);
993 // string with a single char
bddd7a8d 994 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxChar ch);
1fc8cfbd 995 // char with a string
bddd7a8d 996 friend wxString WXDLLIMPEXP_BASE operator+(wxChar ch, const wxString& string);
1fc8cfbd
VZ
997 // string with C string
998 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string,
999 const wxChar *psz);
1000 // C string with string
1001 friend wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz,
1002 const wxString& string);
3c67202d
VZ
1003
1004 // stream-like functions
1005 // insert an int into string
3ce65f6c
VZ
1006 wxString& operator<<(int i)
1007 { return (*this) << Format(_T("%d"), i); }
1008 // insert an unsigned int into string
1009 wxString& operator<<(unsigned int ui)
1010 { return (*this) << Format(_T("%u"), ui); }
1011 // insert a long into string
1012 wxString& operator<<(long l)
1013 { return (*this) << Format(_T("%ld"), l); }
1014 // insert an unsigned long into string
1015 wxString& operator<<(unsigned long ul)
1016 { return (*this) << Format(_T("%lu"), ul); }
3fc1adbd
MW
1017#if defined wxLongLong_t && !defined wxLongLongIsLong
1018 // insert a long long if they exist and aren't longs
1019 wxString& operator<<(wxLongLong_t ll)
b7859132
MW
1020 {
1021 const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("d");
1022 return (*this) << Format(fmt, ll);
1023 }
3fc1adbd
MW
1024 // insert an unsigned long long
1025 wxString& operator<<(wxULongLong_t ull)
b7859132
MW
1026 {
1027 const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("u");
1028 return (*this) << Format(fmt , ull);
1029 }
3fc1adbd 1030#endif
3c67202d 1031 // insert a float into string
3ce65f6c
VZ
1032 wxString& operator<<(float f)
1033 { return (*this) << Format(_T("%f"), f); }
3c67202d 1034 // insert a double into string
3ce65f6c
VZ
1035 wxString& operator<<(double d)
1036 { return (*this) << Format(_T("%g"), d); }
c84c52de 1037
3c67202d 1038 // string comparison
30b21f9a 1039 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
dcb68102
RN
1040 int Cmp(const wxChar *psz) const;
1041 int Cmp(const wxString& s) const;
3c67202d 1042 // same as Cmp() but not case-sensitive
dcb68102
RN
1043 int CmpNoCase(const wxChar *psz) const;
1044 int CmpNoCase(const wxString& s) const;
3c67202d
VZ
1045 // test for the string equality, either considering case or not
1046 // (if compareWithCase then the case matters)
d775fa82 1047 bool IsSameAs(const wxChar *psz, bool compareWithCase = true) const
3c67202d 1048 { return (compareWithCase ? Cmp(psz) : CmpNoCase(psz)) == 0; }
20aa779e 1049 // comparison with a single character: returns true if equal
d775fa82 1050 bool IsSameAs(wxChar c, bool compareWithCase = true) const
f33fee2a 1051 {
e87b7833 1052 return (length() == 1) && (compareWithCase ? GetChar(0u) == c
f33fee2a
VZ
1053 : wxToupper(GetChar(0u)) == wxToupper(c));
1054 }
3c67202d
VZ
1055
1056 // simple sub-string extraction
1057 // return substring starting at nFirst of length nCount (or till the end
1058 // if nCount = default value)
e87b7833 1059 wxString Mid(size_t nFirst, size_t nCount = npos) const;
3c67202d 1060
f6bcfd97 1061 // operator version of Mid()
3c67202d
VZ
1062 wxString operator()(size_t start, size_t len) const
1063 { return Mid(start, len); }
1064
3affcd07
VZ
1065 // check if the string starts with the given prefix and return the rest
1066 // of the string in the provided pointer if it is not NULL; otherwise
1067 // return false
f6bcfd97 1068 bool StartsWith(const wxChar *prefix, wxString *rest = NULL) const;
3affcd07
VZ
1069 // check if the string ends with the given suffix and return the
1070 // beginning of the string before the suffix in the provided pointer if
1071 // it is not NULL; otherwise return false
1072 bool EndsWith(const wxChar *suffix, wxString *rest = NULL) const;
f6bcfd97 1073
3c67202d 1074 // get first nCount characters
c801d85f 1075 wxString Left(size_t nCount) const;
3c67202d 1076 // get last nCount characters
c801d85f 1077 wxString Right(size_t nCount) const;
c0881dc3 1078 // get all characters before the first occurance of ch
3c67202d 1079 // (returns the whole string if ch not found)
2bb67b80 1080 wxString BeforeFirst(wxChar ch) const;
3c67202d
VZ
1081 // get all characters before the last occurence of ch
1082 // (returns empty string if ch not found)
2bb67b80 1083 wxString BeforeLast(wxChar ch) const;
3c67202d
VZ
1084 // get all characters after the first occurence of ch
1085 // (returns empty string if ch not found)
2bb67b80 1086 wxString AfterFirst(wxChar ch) const;
3c67202d
VZ
1087 // get all characters after the last occurence of ch
1088 // (returns the whole string if ch not found)
2bb67b80 1089 wxString AfterLast(wxChar ch) const;
3c67202d
VZ
1090
1091 // for compatibility only, use more explicitly named functions above
2bb67b80
OK
1092 wxString Before(wxChar ch) const { return BeforeLast(ch); }
1093 wxString After(wxChar ch) const { return AfterFirst(ch); }
3c67202d
VZ
1094
1095 // case conversion
c84c52de 1096 // convert to upper case in place, return the string itself
c801d85f 1097 wxString& MakeUpper();
c84c52de 1098 // convert to upper case, return the copy of the string
03ab016d
JS
1099 // Here's something to remember: BC++ doesn't like returns in inlines.
1100 wxString Upper() const ;
c84c52de 1101 // convert to lower case in place, return the string itself
c801d85f 1102 wxString& MakeLower();
c84c52de 1103 // convert to lower case, return the copy of the string
03ab016d 1104 wxString Lower() const ;
c801d85f 1105
3c67202d
VZ
1106 // trimming/padding whitespace (either side) and truncating
1107 // remove spaces from left or from right (default) side
d775fa82 1108 wxString& Trim(bool bFromRight = true);
3c67202d 1109 // add nCount copies chPad in the beginning or at the end (default)
d775fa82 1110 wxString& Pad(size_t nCount, wxChar chPad = wxT(' '), bool bFromRight = true);
dd1eaa89 1111
3c67202d
VZ
1112 // searching and replacing
1113 // searching (return starting index, or -1 if not found)
d775fa82 1114 int Find(wxChar ch, bool bFromEnd = false) const; // like strchr/strrchr
3c67202d 1115 // searching (return starting index, or -1 if not found)
2bb67b80 1116 int Find(const wxChar *pszSub) const; // like strstr
3c67202d
VZ
1117 // replace first (or all of bReplaceAll) occurences of substring with
1118 // another string, returns the number of replacements made
2bb67b80
OK
1119 size_t Replace(const wxChar *szOld,
1120 const wxChar *szNew,
d775fa82 1121 bool bReplaceAll = true);
3c67202d
VZ
1122
1123 // check if the string contents matches a mask containing '*' and '?'
2bb67b80 1124 bool Matches(const wxChar *szMask) const;
c801d85f 1125
d775fa82 1126 // conversion to numbers: all functions return true only if the whole
538f35cc
VZ
1127 // string is a number and put the value of this number into the pointer
1128 // provided, the base is the numeric base in which the conversion should be
1129 // done and must be comprised between 2 and 36 or be 0 in which case the
1130 // standard C rules apply (leading '0' => octal, "0x" => hex)
cd0b1709 1131 // convert to a signed integer
538f35cc 1132 bool ToLong(long *val, int base = 10) const;
cd0b1709 1133 // convert to an unsigned integer
538f35cc 1134 bool ToULong(unsigned long *val, int base = 10) const;
d6718dd1
VZ
1135 // convert to wxLongLong
1136#if defined(wxLongLong_t)
1137 bool ToLongLong(wxLongLong_t *val, int base = 10) const;
1138 // convert to wxULongLong
1139 bool ToULongLong(wxULongLong_t *val, int base = 10) const;
1140#endif // wxLongLong_t
cd0b1709
VZ
1141 // convert to a double
1142 bool ToDouble(double *val) const;
1143
d6718dd1
VZ
1144
1145
90e572f1 1146 // formatted input/output
3c67202d 1147 // as sprintf(), returns the number of characters written or < 0 on error
7357f981
GD
1148 // (take 'this' into account in attribute parameter count)
1149 int Printf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
3c67202d 1150 // as vprintf(), returns the number of characters written or < 0 on error
2bb67b80 1151 int PrintfV(const wxChar* pszFormat, va_list argptr);
dd1eaa89 1152
341e7d28 1153 // returns the string containing the result of Printf() to it
7357f981 1154 static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
341e7d28
VZ
1155 // the same as above, but takes a va_list
1156 static wxString FormatV(const wxChar *pszFormat, va_list argptr);
1157
3c67202d
VZ
1158 // raw access to string memory
1159 // ensure that string has space for at least nLen characters
dd1eaa89 1160 // only works if the data of this string is not shared
e87b7833 1161 bool Alloc(size_t nLen) { reserve(nLen); /*return capacity() >= nLen;*/ return true; }
3c67202d 1162 // minimize the string's memory
dd1eaa89 1163 // only works if the data of this string is not shared
b1801e0e 1164 bool Shrink();
e87b7833 1165#if !wxUSE_STL
3c67202d
VZ
1166 // get writable buffer of at least nLen bytes. Unget() *must* be called
1167 // a.s.a.p. to put string back in a reasonable state!
2bb67b80 1168 wxChar *GetWriteBuf(size_t nLen);
3c67202d 1169 // call this immediately after GetWriteBuf() has been used
8fd0f20b 1170 void UngetWriteBuf();
8f06a017 1171 void UngetWriteBuf(size_t nLen);
e87b7833 1172#endif
c801d85f 1173
77ffb593 1174 // wxWidgets version 1 compatibility functions
3c67202d
VZ
1175
1176 // use Mid()
1177 wxString SubString(size_t from, size_t to) const
1178 { return Mid(from, (to - from + 1)); }
1179 // values for second parameter of CompareTo function
c801d85f 1180 enum caseCompare {exact, ignoreCase};
3c67202d 1181 // values for first parameter of Strip function
c801d85f 1182 enum stripType {leading = 0x1, trailing = 0x2, both = 0x3};
8870c26e 1183
7357f981
GD
1184 // use Printf()
1185 // (take 'this' into account in attribute parameter count)
1186 int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
c801d85f 1187
3c67202d 1188 // use Cmp()
2bb67b80 1189 inline int CompareTo(const wxChar* psz, caseCompare cmp = exact) const
6b95b20d 1190 { return cmp == exact ? Cmp(psz) : CmpNoCase(psz); }
c801d85f 1191
3c67202d 1192 // use Len
e87b7833 1193 size_t Length() const { return length(); }
3c67202d 1194 // Count the number of characters
2bb67b80 1195 int Freq(wxChar ch) const;
3c67202d 1196 // use MakeLower
c801d85f 1197 void LowerCase() { MakeLower(); }
3c67202d 1198 // use MakeUpper
c801d85f 1199 void UpperCase() { MakeUpper(); }
3c67202d 1200 // use Trim except that it doesn't change this string
c801d85f
KB
1201 wxString Strip(stripType w = trailing) const;
1202
3c67202d 1203 // use Find (more general variants not yet supported)
2bb67b80
OK
1204 size_t Index(const wxChar* psz) const { return Find(psz); }
1205 size_t Index(wxChar ch) const { return Find(ch); }
3c67202d 1206 // use Truncate
c801d85f 1207 wxString& Remove(size_t pos) { return Truncate(pos); }
e87b7833 1208 wxString& RemoveLast(size_t n = 1) { return Truncate(length() - n); }
c801d85f 1209
e87b7833
MB
1210 wxString& Remove(size_t nStart, size_t nLen)
1211 { return (wxString&)erase( nStart, nLen ); }
dd1eaa89 1212
3c67202d 1213 // use Find()
2bb67b80
OK
1214 int First( const wxChar ch ) const { return Find(ch); }
1215 int First( const wxChar* psz ) const { return Find(psz); }
3ed358cb 1216 int First( const wxString &str ) const { return Find(str); }
d775fa82
WS
1217 int Last( const wxChar ch ) const { return Find(ch, true); }
1218 bool Contains(const wxString& str) const { return Find(str) != wxNOT_FOUND; }
c801d85f 1219
5a8231ef
WS
1220 // use empty()
1221 bool IsNull() const { return empty(); }
c801d85f 1222
3c67202d 1223 // std::string compatibility functions
dd1eaa89 1224
3c67202d
VZ
1225 // take nLen chars starting at nPos
1226 wxString(const wxString& str, size_t nPos, size_t nLen)
e87b7833 1227 : wxStringBase(str, nPos, nLen) { }
3c67202d 1228 // take all characters from pStart to pEnd
e87b7833 1229 wxString(const void *pStart, const void *pEnd)
6e94fff9 1230 : wxStringBase((const wxChar*)pStart, (const wxChar*)pEnd) { }
e87b7833
MB
1231#if wxUSE_STL
1232 wxString(const_iterator first, const_iterator last)
1233 : wxStringBase(first, last) { }
1234#endif
5460b9e3 1235
3c67202d 1236 // lib.string.modifiers
3c67202d
VZ
1237 // append elements str[pos], ..., str[pos+n]
1238 wxString& append(const wxString& str, size_t pos, size_t n)
e87b7833
MB
1239 { return (wxString&)wxStringBase::append(str, pos, n); }
1240 // append a string
1241 wxString& append(const wxString& str)
1242 { return (wxString&)wxStringBase::append(str); }
3c67202d 1243 // append first n (or all if n == npos) characters of sz
e87b7833
MB
1244 wxString& append(const wxChar *sz)
1245 { return (wxString&)wxStringBase::append(sz); }
1246 wxString& append(const wxChar *sz, size_t n)
1247 { return (wxString&)wxStringBase::append(sz, n); }
3c67202d 1248 // append n copies of ch
e87b7833
MB
1249 wxString& append(size_t n, wxChar ch)
1250 { return (wxString&)wxStringBase::append(n, ch); }
1251 // append from first to last
1252 wxString& append(const_iterator first, const_iterator last)
1253 { return (wxString&)wxStringBase::append(first, last); }
3c67202d
VZ
1254
1255 // same as `this_string = str'
735d1db6 1256 wxString& assign(const wxString& str)
e87b7833 1257 { return (wxString&)wxStringBase::assign(str); }
3c67202d
VZ
1258 // same as ` = str[pos..pos + n]
1259 wxString& assign(const wxString& str, size_t pos, size_t n)
e87b7833 1260 { return (wxString&)wxStringBase::assign(str, pos, n); }
3c67202d 1261 // same as `= first n (or all if n == npos) characters of sz'
e87b7833
MB
1262 wxString& assign(const wxChar *sz)
1263 { return (wxString&)wxStringBase::assign(sz); }
1264 wxString& assign(const wxChar *sz, size_t n)
1265 { return (wxString&)wxStringBase::assign(sz, n); }
3c67202d 1266 // same as `= n copies of ch'
2bb67b80 1267 wxString& assign(size_t n, wxChar ch)
e87b7833
MB
1268 { return (wxString&)wxStringBase::assign(n, ch); }
1269 // assign from first to last
1270 wxString& assign(const_iterator first, const_iterator last)
1271 { return (wxString&)wxStringBase::assign(first, last); }
1272
1273 // string comparison
963ad140 1274#if !defined(HAVE_STD_STRING_COMPARE)
e87b7833
MB
1275 int compare(const wxStringBase& str) const;
1276 // comparison with a substring
1277 int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
1278 // comparison of 2 substrings
1279 int compare(size_t nStart, size_t nLen,
1280 const wxStringBase& str, size_t nStart2, size_t nLen2) const;
1281 // just like strcmp()
1282 int compare(const wxChar* sz) const;
1283 // substring comparison with first nCount characters of sz
1284 int compare(size_t nStart, size_t nLen,
1285 const wxChar* sz, size_t nCount = npos) const;
1286#endif // !defined HAVE_STD_STRING_COMPARE
3c67202d
VZ
1287
1288 // insert another string
e87b7833
MB
1289 wxString& insert(size_t nPos, const wxString& str)
1290 { return (wxString&)wxStringBase::insert(nPos, str); }
3c67202d
VZ
1291 // insert n chars of str starting at nStart (in str)
1292 wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n)
e87b7833 1293 { return (wxString&)wxStringBase::insert(nPos, str, nStart, n); }
3c67202d 1294 // insert first n (or all if n == npos) characters of sz
e87b7833
MB
1295 wxString& insert(size_t nPos, const wxChar *sz)
1296 { return (wxString&)wxStringBase::insert(nPos, sz); }
1297 wxString& insert(size_t nPos, const wxChar *sz, size_t n)
1298 { return (wxString&)wxStringBase::insert(nPos, sz, n); }
3c67202d 1299 // insert n copies of ch
2bb67b80 1300 wxString& insert(size_t nPos, size_t n, wxChar ch)
e87b7833
MB
1301 { return (wxString&)wxStringBase::insert(nPos, n, ch); }
1302 iterator insert(iterator it, wxChar ch)
1c2d1459 1303 { return wxStringBase::insert(it, ch); }
e87b7833
MB
1304 void insert(iterator it, const_iterator first, const_iterator last)
1305 { wxStringBase::insert(it, first, last); }
1306 void insert(iterator it, size_type n, wxChar ch)
1307 { wxStringBase::insert(it, n, ch); }
3c67202d
VZ
1308
1309 // delete characters from nStart to nStart + nLen
e87b7833
MB
1310 wxString& erase(size_type pos = 0, size_type n = npos)
1311 { return (wxString&)wxStringBase::erase(pos, n); }
1312 iterator erase(iterator first, iterator last)
1313 { return wxStringBase::erase(first, last); }
1314 iterator erase(iterator first)
1315 { return wxStringBase::erase(first); }
1316
1317#ifdef wxSTRING_BASE_HASNT_CLEAR
1318 void clear() { erase(); }
1319#endif
3c67202d
VZ
1320
1321 // replaces the substring of length nLen starting at nStart
e87b7833
MB
1322 wxString& replace(size_t nStart, size_t nLen, const wxChar* sz)
1323 { return (wxString&)wxStringBase::replace(nStart, nLen, sz); }
1324 // replaces the substring of length nLen starting at nStart
1325 wxString& replace(size_t nStart, size_t nLen, const wxString& str)
1326 { return (wxString&)wxStringBase::replace(nStart, nLen, str); }
3c67202d 1327 // replaces the substring with nCount copies of ch
e87b7833
MB
1328 wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxChar ch)
1329 { return (wxString&)wxStringBase::replace(nStart, nLen, nCount, ch); }
3c67202d
VZ
1330 // replaces a substring with another substring
1331 wxString& replace(size_t nStart, size_t nLen,
e87b7833
MB
1332 const wxString& str, size_t nStart2, size_t nLen2)
1333 { return (wxString&)wxStringBase::replace(nStart, nLen, str,
1334 nStart2, nLen2); }
1335 // replaces the substring with first nCount chars of sz
fb20fa43 1336 wxString& replace(size_t nStart, size_t nLen,
e87b7833
MB
1337 const wxChar* sz, size_t nCount)
1338 { return (wxString&)wxStringBase::replace(nStart, nLen, sz, nCount); }
1339 wxString& replace(iterator first, iterator last, const_pointer s)
1340 { return (wxString&)wxStringBase::replace(first, last, s); }
1341 wxString& replace(iterator first, iterator last, const_pointer s,
1342 size_type n)
1343 { return (wxString&)wxStringBase::replace(first, last, s, n); }
1344 wxString& replace(iterator first, iterator last, const wxString& s)
1345 { return (wxString&)wxStringBase::replace(first, last, s); }
1346 wxString& replace(iterator first, iterator last, size_type n, wxChar c)
1347 { return (wxString&)wxStringBase::replace(first, last, n, c); }
1348 wxString& replace(iterator first, iterator last,
1349 const_iterator first1, const_iterator last1)
1350 { return (wxString&)wxStringBase::replace(first, last, first1, last1); }
3c67202d 1351
e87b7833
MB
1352 // string += string
1353 wxString& operator+=(const wxString& s)
1354 { return (wxString&)wxStringBase::operator+=(s); }
1355 // string += C string
1356 wxString& operator+=(const wxChar *psz)
1357 { return (wxString&)wxStringBase::operator+=(psz); }
1358 // string += char
1359 wxString& operator+=(wxChar ch)
1360 { return (wxString&)wxStringBase::operator+=(ch); }
c801d85f
KB
1361};
1362
1fc8cfbd
VZ
1363// notice that even though for many compilers the friend declarations above are
1364// enough, from the point of view of C++ standard we must have the declarations
1365// here as friend ones are not injected in the enclosing namespace and without
1366// them the code fails to compile with conforming compilers such as xlC or g++4
b7146cbe
VZ
1367wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, const wxString& string2);
1368wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxChar ch);
1369wxString WXDLLIMPEXP_BASE operator+(wxChar ch, const wxString& string);
1370wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const wxChar *psz);
1371wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz, const wxString& string);
1fc8cfbd 1372
b7146cbe 1373
df5168c4
MB
1374// define wxArrayString, for compatibility
1375#if WXWIN_COMPATIBILITY_2_4 && !wxUSE_STL
1376 #include "wx/arrstr.h"
ba8c1601 1377#endif
9d155f50 1378
07170120
VZ
1379#if wxUSE_STL
1380 // return an empty wxString (not very useful with wxUSE_STL == 1)
12f99210 1381 inline const wxString wxGetEmptyString() { return wxString(); }
07170120
VZ
1382#else // !wxUSE_STL
1383 // return an empty wxString (more efficient than wxString() here)
1384 inline const wxString& wxGetEmptyString()
1385 {
1386 return *(wxString *)&wxEmptyString;
1387 }
1388#endif // wxUSE_STL/!wxUSE_STL
1389
1d218550
VZ
1390// ----------------------------------------------------------------------------
1391// wxStringBuffer: a tiny class allowing to get a writable pointer into string
1392// ----------------------------------------------------------------------------
1393
941b78cc
MB
1394#if wxUSE_STL
1395
1396class WXDLLIMPEXP_BASE wxStringBuffer
1397{
1398public:
1399 wxStringBuffer(wxString& str, size_t lenWanted = 1024)
e87b7833 1400 : m_str(str), m_buf(lenWanted)
941b78cc
MB
1401 { }
1402
fe5fc682 1403 ~wxStringBuffer() { m_str.assign(m_buf.data(), wxStrlen(m_buf.data())); }
941b78cc
MB
1404
1405 operator wxChar*() { return m_buf.data(); }
1406
1407private:
1408 wxString& m_str;
1409#if wxUSE_UNICODE
1410 wxWCharBuffer m_buf;
1411#else
1412 wxCharBuffer m_buf;
1413#endif
941b78cc
MB
1414
1415 DECLARE_NO_COPY_CLASS(wxStringBuffer)
1416};
1417
1418class WXDLLIMPEXP_BASE wxStringBufferLength
1419{
1420public:
1421 wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
1422 : m_str(str), m_buf(lenWanted), m_len(0), m_lenSet(false)
1423 { }
1424
1425 ~wxStringBufferLength()
1426 {
1427 wxASSERT(m_lenSet);
1428 m_str.assign(m_buf.data(), m_len);
1429 }
1430
1431 operator wxChar*() { return m_buf.data(); }
1432 void SetLength(size_t length) { m_len = length; m_lenSet = true; }
1433
1434private:
1435 wxString& m_str;
1436#if wxUSE_UNICODE
1437 wxWCharBuffer m_buf;
1438#else
1439 wxCharBuffer m_buf;
1440#endif
1441 size_t m_len;
1442 bool m_lenSet;
1443
1444 DECLARE_NO_COPY_CLASS(wxStringBufferLength)
1445};
1446
1447#else // if !wxUSE_STL
1448
bddd7a8d 1449class WXDLLIMPEXP_BASE wxStringBuffer
1d218550
VZ
1450{
1451public:
1452 wxStringBuffer(wxString& str, size_t lenWanted = 1024)
b1801e0e
GD
1453 : m_str(str), m_buf(NULL)
1454 { m_buf = m_str.GetWriteBuf(lenWanted); }
e015c2a3 1455
1d218550 1456 ~wxStringBuffer() { m_str.UngetWriteBuf(); }
e015c2a3 1457
1d218550 1458 operator wxChar*() const { return m_buf; }
e015c2a3 1459
1d218550
VZ
1460private:
1461 wxString& m_str;
1462 wxChar *m_buf;
e015c2a3
VZ
1463
1464 DECLARE_NO_COPY_CLASS(wxStringBuffer)
1d218550
VZ
1465};
1466
941b78cc
MB
1467class WXDLLIMPEXP_BASE wxStringBufferLength
1468{
1469public:
1470 wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
1471 : m_str(str), m_buf(NULL), m_len(0), m_lenSet(false)
4055ed82
WS
1472 {
1473 m_buf = m_str.GetWriteBuf(lenWanted);
494b978f
RN
1474 wxASSERT(m_buf != NULL);
1475 }
941b78cc
MB
1476
1477 ~wxStringBufferLength()
1478 {
1479 wxASSERT(m_lenSet);
1480 m_str.UngetWriteBuf(m_len);
1481 }
1482
1483 operator wxChar*() const { return m_buf; }
1484 void SetLength(size_t length) { m_len = length; m_lenSet = true; }
1485
1486private:
1487 wxString& m_str;
1488 wxChar *m_buf;
1489 size_t m_len;
1490 bool m_lenSet;
1491
1492 DECLARE_NO_COPY_CLASS(wxStringBufferLength)
1493};
1494
1495#endif // !wxUSE_STL
1496
c801d85f 1497// ---------------------------------------------------------------------------
3c67202d 1498// wxString comparison functions: operator versions are always case sensitive
c801d85f 1499// ---------------------------------------------------------------------------
f33fee2a 1500
b6339dde
VZ
1501// note that when wxUSE_STL == 1 the comparison operators taking std::string
1502// are used and defining them also for wxString would only result in
1503// compilation ambiguities when comparing std::string and wxString
1504#if !wxUSE_STL
e87b7833 1505
0cbe5ee3
VZ
1506inline bool operator==(const wxString& s1, const wxString& s2)
1507 { return (s1.Len() == s2.Len()) && (s1.Cmp(s2) == 0); }
1508inline bool operator==(const wxString& s1, const wxChar * s2)
1509 { return s1.Cmp(s2) == 0; }
1510inline bool operator==(const wxChar * s1, const wxString& s2)
1511 { return s2.Cmp(s1) == 0; }
1512inline bool operator!=(const wxString& s1, const wxString& s2)
1513 { return (s1.Len() != s2.Len()) || (s1.Cmp(s2) != 0); }
1514inline bool operator!=(const wxString& s1, const wxChar * s2)
1515 { return s1.Cmp(s2) != 0; }
1516inline bool operator!=(const wxChar * s1, const wxString& s2)
1517 { return s2.Cmp(s1) != 0; }
1518inline bool operator< (const wxString& s1, const wxString& s2)
1519 { return s1.Cmp(s2) < 0; }
1520inline bool operator< (const wxString& s1, const wxChar * s2)
1521 { return s1.Cmp(s2) < 0; }
1522inline bool operator< (const wxChar * s1, const wxString& s2)
1523 { return s2.Cmp(s1) > 0; }
1524inline bool operator> (const wxString& s1, const wxString& s2)
1525 { return s1.Cmp(s2) > 0; }
1526inline bool operator> (const wxString& s1, const wxChar * s2)
1527 { return s1.Cmp(s2) > 0; }
1528inline bool operator> (const wxChar * s1, const wxString& s2)
1529 { return s2.Cmp(s1) < 0; }
1530inline bool operator<=(const wxString& s1, const wxString& s2)
1531 { return s1.Cmp(s2) <= 0; }
1532inline bool operator<=(const wxString& s1, const wxChar * s2)
1533 { return s1.Cmp(s2) <= 0; }
1534inline bool operator<=(const wxChar * s1, const wxString& s2)
1535 { return s2.Cmp(s1) >= 0; }
1536inline bool operator>=(const wxString& s1, const wxString& s2)
1537 { return s1.Cmp(s2) >= 0; }
1538inline bool operator>=(const wxString& s1, const wxChar * s2)
1539 { return s1.Cmp(s2) >= 0; }
1540inline bool operator>=(const wxChar * s1, const wxString& s2)
1541 { return s2.Cmp(s1) <= 0; }
3c67202d 1542
5ca07d0f
OK
1543#if wxUSE_UNICODE
1544inline bool operator==(const wxString& s1, const wxWCharBuffer& s2)
f33fee2a 1545 { return (s1.Cmp((const wchar_t *)s2) == 0); }
5ca07d0f 1546inline bool operator==(const wxWCharBuffer& s1, const wxString& s2)
f33fee2a 1547 { return (s2.Cmp((const wchar_t *)s1) == 0); }
f6bcfd97
BP
1548inline bool operator!=(const wxString& s1, const wxWCharBuffer& s2)
1549 { return (s1.Cmp((const wchar_t *)s2) != 0); }
1550inline bool operator!=(const wxWCharBuffer& s1, const wxString& s2)
1551 { return (s2.Cmp((const wchar_t *)s1) != 0); }
0cbe5ee3 1552#else // !wxUSE_UNICODE
5ca07d0f 1553inline bool operator==(const wxString& s1, const wxCharBuffer& s2)
f33fee2a 1554 { return (s1.Cmp((const char *)s2) == 0); }
5ca07d0f 1555inline bool operator==(const wxCharBuffer& s1, const wxString& s2)
f33fee2a 1556 { return (s2.Cmp((const char *)s1) == 0); }
f6bcfd97
BP
1557inline bool operator!=(const wxString& s1, const wxCharBuffer& s2)
1558 { return (s1.Cmp((const char *)s2) != 0); }
1559inline bool operator!=(const wxCharBuffer& s1, const wxString& s2)
1560 { return (s2.Cmp((const char *)s1) != 0); }
0cbe5ee3 1561#endif // wxUSE_UNICODE/!wxUSE_UNICODE
5ca07d0f 1562
028a2b5d 1563#if wxUSE_UNICODE
6d56eb5c 1564inline wxString operator+(const wxString& string, const wxWCharBuffer& buf)
e90c1d2a 1565 { return string + (const wchar_t *)buf; }
6d56eb5c 1566inline wxString operator+(const wxWCharBuffer& buf, const wxString& string)
e90c1d2a 1567 { return (const wchar_t *)buf + string; }
0cbe5ee3 1568#else // !wxUSE_UNICODE
6d56eb5c 1569inline wxString operator+(const wxString& string, const wxCharBuffer& buf)
e90c1d2a 1570 { return string + (const char *)buf; }
6d56eb5c 1571inline wxString operator+(const wxCharBuffer& buf, const wxString& string)
e90c1d2a 1572 { return (const char *)buf + string; }
0cbe5ee3 1573#endif // wxUSE_UNICODE/!wxUSE_UNICODE
f04f3991 1574
e51b17a1
VZ
1575#endif // !wxUSE_STL
1576
1577// comparison with char (those are not defined by std::[w]string and so should
1578// be always available)
1579inline bool operator==(wxChar c, const wxString& s) { return s.IsSameAs(c); }
1580inline bool operator==(const wxString& s, wxChar c) { return s.IsSameAs(c); }
1581inline bool operator!=(wxChar c, const wxString& s) { return !s.IsSameAs(c); }
1582inline bool operator!=(const wxString& s, wxChar c) { return !s.IsSameAs(c); }
1583
c801d85f 1584// ---------------------------------------------------------------------------
3c67202d 1585// Implementation only from here until the end of file
c801d85f
KB
1586// ---------------------------------------------------------------------------
1587
e90c1d2a 1588// don't pollute the library user's name space
5737d05f 1589#undef wxASSERT_VALID_INDEX
e90c1d2a 1590
e87b7833 1591#if wxUSE_STD_IOSTREAM
c801d85f 1592
65f19af1 1593#include "wx/iosfwrap.h"
c801d85f 1594
bddd7a8d 1595WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxString&);
c801d85f 1596
3c67202d 1597#endif // wxSTD_STRING_COMPATIBILITY
c801d85f 1598
34138703 1599#endif // _WX_WXSTRINGH__