]> git.saurik.com Git - wxWidgets.git/blame - include/wx/string.h
added wxCStrData conversion to const unsigned char * too
[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
e3f6cbd9
VS
54#include "wx/wxchar.h" // for wxChar, wxStrlen() etc.
55#include "wx/unichar.h"
c9f78968 56#include "wx/strvararg.h"
e90c1d2a
VZ
57#include "wx/buffer.h" // for wxCharBuffer
58#include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes
3f4a0c5b 59
fb3c9042
VZ
60class WXDLLIMPEXP_BASE wxString;
61
c801d85f
KB
62// ---------------------------------------------------------------------------
63// macros
64// ---------------------------------------------------------------------------
65
5737d05f
VZ
66// casts [unfortunately!] needed to call some broken functions which require
67// "char *" instead of "const char *"
2bb67b80 68#define WXSTRINGCAST (wxChar *)(const wxChar *)
e90c1d2a
VZ
69#define wxCSTRINGCAST (wxChar *)(const wxChar *)
70#define wxMBSTRINGCAST (char *)(const char *)
71#define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
c801d85f 72
3c67202d 73// implementation only
5737d05f 74#define wxASSERT_VALID_INDEX(i) \
e87b7833 75 wxASSERT_MSG( (size_t)(i) <= length(), _T("invalid index in wxString") )
c801d85f 76
e90c1d2a
VZ
77// ----------------------------------------------------------------------------
78// constants
79// ----------------------------------------------------------------------------
80
13874b5c
VZ
81#if WXWIN_COMPATIBILITY_2_6
82
83// deprecated in favour of wxString::npos, don't use in new code
84//
e90c1d2a 85// maximum possible length for a string means "take all string" everywhere
2cbfa061 86#define wxSTRING_MAXLEN wxStringBase::npos
66b6b045 87
13874b5c
VZ
88#endif // WXWIN_COMPATIBILITY_2_6
89
e90c1d2a
VZ
90// ----------------------------------------------------------------------------
91// global data
92// ----------------------------------------------------------------------------
93
94// global pointer to empty string
bddd7a8d 95extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxEmptyString;
6001e347 96
c801d85f 97// ---------------------------------------------------------------------------
e90c1d2a 98// global functions complementing standard C string library replacements for
3c67202d
VZ
99// strlen() and portable strcasecmp()
100//---------------------------------------------------------------------------
e90c1d2a 101
c7554da8 102#if WXWIN_COMPATIBILITY_2_8
e3f6cbd9 103// Use wxXXX() functions from wxcrt.h instead! These functions are for
e90c1d2a 104// backwards compatibility only.
88150e60 105
3c67202d 106// checks whether the passed in pointer is NULL and if the string is empty
c7554da8 107wxDEPRECATED( inline bool IsEmpty(const char *p) );
6d56eb5c 108inline bool IsEmpty(const char *p) { return (!p || !*p); }
c801d85f 109
3c67202d 110// safe version of strlen() (returns 0 if passed NULL pointer)
c7554da8 111wxDEPRECATED( inline size_t Strlen(const char *psz) );
6d56eb5c 112inline size_t Strlen(const char *psz)
c801d85f
KB
113 { return psz ? strlen(psz) : 0; }
114
3c67202d 115// portable strcasecmp/_stricmp
c7554da8 116wxDEPRECATED( inline int Stricmp(const char *psz1, const char *psz2) );
6d56eb5c 117inline int Stricmp(const char *psz1, const char *psz2)
dd1eaa89 118{
7f0586ef
JS
119#if defined(__VISUALC__) && defined(__WXWINCE__)
120 register char c1, c2;
121 do {
122 c1 = tolower(*psz1++);
123 c2 = tolower(*psz2++);
124 } while ( c1 && (c1 == c2) );
125
126 return c1 - c2;
127#elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
dd1eaa89 128 return _stricmp(psz1, psz2);
91b8de8d 129#elif defined(__SC__)
2432b92d 130 return _stricmp(psz1, psz2);
91b8de8d 131#elif defined(__SALFORDC__)
a3ef5bf5 132 return stricmp(psz1, psz2);
dd1eaa89
VZ
133#elif defined(__BORLANDC__)
134 return stricmp(psz1, psz2);
7be1f0d9
JS
135#elif defined(__WATCOMC__)
136 return stricmp(psz1, psz2);
14704334
VS
137#elif defined(__DJGPP__)
138 return stricmp(psz1, psz2);
91b8de8d
RR
139#elif defined(__EMX__)
140 return stricmp(psz1, psz2);
e2c87f4c 141#elif defined(__WXPM__)
1777b9bb 142 return stricmp(psz1, psz2);
a0be6908
WS
143#elif defined(__WXPALMOS__) || \
144 defined(HAVE_STRCASECMP_IN_STRING_H) || \
1c2d1459
VZ
145 defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
146 defined(__GNUWIN32__)
dd1eaa89 147 return strcasecmp(psz1, psz2);
8be97d65 148#elif defined(__MWERKS__) && !defined(__INTEL__)
17dff81c
SC
149 register char c1, c2;
150 do {
151 c1 = tolower(*psz1++);
152 c2 = tolower(*psz2++);
153 } while ( c1 && (c1 == c2) );
154
155 return c1 - c2;
dd1eaa89
VZ
156#else
157 // almost all compilers/libraries provide this function (unfortunately under
158 // different names), that's why we don't implement our own which will surely
159 // be more efficient than this code (uncomment to use):
160 /*
161 register char c1, c2;
162 do {
163 c1 = tolower(*psz1++);
164 c2 = tolower(*psz2++);
165 } while ( c1 && (c1 == c2) );
166
167 return c1 - c2;
168 */
169
170 #error "Please define string case-insensitive compare for your OS/compiler"
171#endif // OS/compiler
172}
c801d85f 173
c7554da8
VS
174#endif // WXWIN_COMPATIBILITY_2_8
175
ce76f779
VZ
176// ----------------------------------------------------------------------------
177// deal with STL/non-STL/non-STL-but-wxUSE_STD_STRING
178// ----------------------------------------------------------------------------
179
992527a5
VS
180// FIXME-UTF8: using std::string as wxString base class is currently broken,
181// so we use the standard wxString with std::string conversion
182// enabled, this is API-compatible.
183#define wxUSE_STL_BASED_WXSTRING 0
184#if wxUSE_STL
185 #undef wxUSE_STD_STRING
186 #define wxUSE_STD_STRING 1
187#endif
188//#define wxUSE_STL_BASED_WXSTRING wxUSE_STL
189
ce76f779 190// in both cases we need to define wxStdString
992527a5 191#if wxUSE_STL_BASED_WXSTRING || wxUSE_STD_STRING
e87b7833
MB
192
193#include "wx/beforestd.h"
194#include <string>
195#include "wx/afterstd.h"
196
197#if wxUSE_UNICODE
0c7cfd99 198 #ifdef HAVE_STD_WSTRING
ce76f779 199 typedef std::wstring wxStdString;
e87b7833 200 #else
ce76f779 201 typedef std::basic_string<wxChar> wxStdString;
e87b7833
MB
202 #endif
203#else
ce76f779 204 typedef std::string wxStdString;
e87b7833
MB
205#endif
206
ce76f779 207#endif // need <string>
e87b7833 208
992527a5 209#if wxUSE_STL_BASED_WXSTRING
ce76f779
VZ
210
211 // we don't need an extra ctor from std::string when copy ctor already does
212 // the work
213 #undef wxUSE_STD_STRING
7147aa47 214 #define wxUSE_STD_STRING 0
ce76f779
VZ
215
216 #if (defined(__GNUG__) && (__GNUG__ < 3)) || \
217 (defined(_MSC_VER) && (_MSC_VER <= 1200))
218 #define wxSTRING_BASE_HASNT_CLEAR
219 #endif
220
221 typedef wxStdString wxStringBase;
992527a5 222#else // if !wxUSE_STL_BASED_WXSTRING
e87b7833 223
47561b0d 224#if !defined(HAVE_STD_STRING_COMPARE) && \
992527a5 225 (!defined(__WX_SETUP_H__) || wxUSE_STL_BASED_WXSTRING == 0)
e87b7833
MB
226 #define HAVE_STD_STRING_COMPARE
227#endif
228
c801d85f 229// ---------------------------------------------------------------------------
f04f3991 230// string data prepended with some housekeeping info (used by wxString class),
c801d85f
KB
231// is never used directly (but had to be put here to allow inlining)
232// ---------------------------------------------------------------------------
e90c1d2a 233
bddd7a8d 234struct WXDLLIMPEXP_BASE wxStringData
c801d85f
KB
235{
236 int nRefs; // reference count
3c024cc2 237 size_t nDataLength, // actual string length
c801d85f
KB
238 nAllocLength; // allocated memory size
239
2bb67b80
OK
240 // mimics declaration 'wxChar data[nAllocLength]'
241 wxChar* data() const { return (wxChar*)(this + 1); }
c801d85f
KB
242
243 // empty string has a special ref count so it's never deleted
dbda9e86
JS
244 bool IsEmpty() const { return (nRefs == -1); }
245 bool IsShared() const { return (nRefs > 1); }
c801d85f
KB
246
247 // lock/unlock
dd1eaa89 248 void Lock() { if ( !IsEmpty() ) nRefs++; }
f6bcfd97 249
8ecf21b7 250 // VC++ will refuse to inline Unlock but profiling shows that it is wrong
f6bcfd97 251#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
1c2d1459 252 __forceinline
f6bcfd97 253#endif
ca5e07c7
GD
254 // VC++ free must take place in same DLL as allocation when using non dll
255 // run-time library (e.g. Multithreaded instead of Multithreaded DLL)
8ecf21b7
GD
256#if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
257 void Unlock() { if ( !IsEmpty() && --nRefs == 0) Free(); }
ca5e07c7
GD
258 // we must not inline deallocation since allocation is not inlined
259 void Free();
8ecf21b7 260#else
f1317a5d 261 void Unlock() { if ( !IsEmpty() && --nRefs == 0) free(this); }
8ecf21b7 262#endif
8fd0f20b 263
dd1eaa89 264 // if we had taken control over string memory (GetWriteBuf), it's
8fd0f20b 265 // intentionally put in invalid state
dbda9e86
JS
266 void Validate(bool b) { nRefs = (b ? 1 : 0); }
267 bool IsValid() const { return (nRefs != 0); }
c801d85f
KB
268};
269
e87b7833 270class WXDLLIMPEXP_BASE wxStringBase
3c67202d 271{
5c0217af
SC
272public :
273 // an 'invalid' value for string index, moved to this place due to a CW bug
274 static const size_t npos;
e87b7833 275protected:
dd1eaa89 276 // points to data preceded by wxStringData structure with ref count info
2bb67b80 277 wxChar *m_pchData;
dd1eaa89
VZ
278
279 // accessor to string data
280 wxStringData* GetStringData() const { return (wxStringData*)m_pchData - 1; }
281
6b95b20d
VZ
282 // string (re)initialization functions
283 // initializes the string to the empty value (must be called only from
284 // ctors, use Reinit() otherwise)
e90c1d2a 285 void Init() { m_pchData = (wxChar *)wxEmptyString; }
90e572f1 286 // initializes the string with (a part of) C-string
e87b7833 287 void InitWith(const wxChar *psz, size_t nPos = 0, size_t nLen = npos);
6b95b20d
VZ
288 // as Init, but also frees old data
289 void Reinit() { GetStringData()->Unlock(); Init(); }
290
291 // memory allocation
b1801e0e
GD
292 // allocates memory for string of length nLen
293 bool AllocBuffer(size_t nLen);
6b95b20d 294 // copies data to another string
b1801e0e 295 bool AllocCopy(wxString&, int, int) const;
6b95b20d 296 // effectively copies data to string
b1801e0e 297 bool AssignCopy(size_t, const wxChar *);
6b95b20d
VZ
298
299 // append a (sub)string
e87b7833
MB
300 bool ConcatSelf(size_t nLen, const wxChar *src, size_t nMaxLen);
301 bool ConcatSelf(size_t nLen, const wxChar *src)
302 { return ConcatSelf(nLen, src, nLen); }
6b95b20d
VZ
303
304 // functions called before writing to the string: they copy it if there
305 // are other references to our data (should be the only owner when writing)
b1801e0e
GD
306 bool CopyBeforeWrite();
307 bool AllocBeforeWrite(size_t);
6b95b20d 308
e87b7833
MB
309 // compatibility with wxString
310 bool Alloc(size_t nLen);
311public:
312 // standard types
c9f78968
VS
313 typedef wxUniChar value_type;
314 typedef wxUniChar char_type;
315 typedef wxUniCharRef reference;
316 typedef wxChar* pointer;
317 typedef const wxChar* const_pointer;
318
e87b7833 319 typedef size_t size_type;
c9f78968
VS
320 typedef wxUniChar const_reference;
321
322 #define WX_STR_ITERATOR_IMPL(iterator_name, pointer_type, \
323 reference_type, reference_ctor) \
324 public: \
325 typedef wxUniChar value_type; \
326 typedef reference_type reference; \
327 typedef pointer_type pointer; \
328 \
329 iterator_name(const iterator_name& i) : m_cur(i.m_cur) {} \
330 \
331 reference operator*() const { return reference_ctor; } \
332 \
333 iterator_name& operator++() \
334 { ++m_cur; return *this; } \
335 iterator_name operator++(int) \
336 { iterator_name tmp = *this; ++m_cur; return tmp; } \
337 iterator_name& operator--() \
338 { --m_cur; return *this; } \
339 iterator_name operator--(int) \
340 { iterator_name tmp = *this; --m_cur; return tmp; } \
341 \
342 iterator_name operator+(int n) const \
343 { return iterator_name(m_cur + n); } \
344 iterator_name operator+(size_t n) const \
345 { return iterator_name(m_cur + n); } \
346 iterator_name operator-(int n) const \
347 { return iterator_name(m_cur - n); } \
348 iterator_name operator-(size_t n) const \
349 { return iterator_name(m_cur - n); } \
350 iterator_name operator+=(int n) \
351 { m_cur += n; return *this; } \
352 iterator_name operator+=(size_t n) \
353 { m_cur += n; return *this; } \
354 iterator_name operator-=(int n) \
355 { m_cur -= n; return *this; } \
356 iterator_name operator-=(size_t n) \
357 { m_cur -= n; return *this; } \
358 \
359 unsigned operator-(const iterator_name& i) const \
360 { return m_cur - i.m_cur; } \
361 \
362 bool operator==(const iterator_name&i) const \
363 { return m_cur == i.m_cur; } \
364 bool operator!=(const iterator_name& i) const \
365 { return m_cur != i.m_cur; } \
366 \
367 bool operator<(const iterator_name& i) const \
368 { return m_cur < i.m_cur; } \
369 bool operator>(const iterator_name& i) const \
370 { return m_cur > i.m_cur; } \
371 bool operator<=(const iterator_name& i) const \
372 { return m_cur <= i.m_cur; } \
373 bool operator>=(const iterator_name& i) const \
374 { return m_cur >= i.m_cur; } \
375 \
376 protected: \
377 /* for internal wxString use only: */ \
378 iterator_name(pointer ptr) : m_cur(ptr) {} \
379 operator pointer() const { return m_cur; } \
380 \
381 friend class WXDLLIMPEXP_BASE wxString; \
382 friend class WXDLLIMPEXP_BASE wxStringBase; \
383 friend class WXDLLIMPEXP_BASE wxCStrData; \
384 \
385 protected: \
386 pointer m_cur;
387
388 class const_iterator;
389
390 class iterator
391 {
392 WX_STR_ITERATOR_IMPL(iterator, wxChar*, wxUniCharRef,
393 wxUniCharRef::CreateForString(m_cur))
394
395 friend class const_iterator;
396 };
397
398 class const_iterator
399 {
400 // NB: reference_type is intentionally value, not reference, the character
401 // may be encoded differently in wxString data:
402 WX_STR_ITERATOR_IMPL(const_iterator, const wxChar*, wxUniChar,
403 wxUniChar(*m_cur))
404
405 public:
406 const_iterator(const iterator& i) : m_cur(i.m_cur) {}
407 };
408
409 #undef WX_STR_ITERATOR
410
411 template <typename T>
412 class reverse_iterator_impl
413 {
414 public:
415 typedef T iterator_type;
416 typedef typename T::value_type value_type;
417 typedef typename T::reference reference;
418 typedef typename T::pointer *pointer;
419
420 reverse_iterator_impl(iterator_type i) : m_cur(i) {}
421 reverse_iterator_impl(const reverse_iterator_impl& ri)
422 : m_cur(ri.m_cur) {}
423
424 iterator_type base() const { return m_cur; }
425
426 reference operator*() const { return *(m_cur-1); }
968f291b 427
c9f78968
VS
428 reverse_iterator_impl& operator++()
429 { --m_cur; return *this; }
430 reverse_iterator_impl operator++(int)
431 { reverse_iterator_impl tmp = *this; --m_cur; return tmp; }
432 reverse_iterator_impl& operator--()
433 { ++m_cur; return *this; }
434 reverse_iterator_impl operator--(int)
435 { reverse_iterator_impl tmp = *this; ++m_cur; return tmp; }
968f291b 436
c9f78968
VS
437 bool operator==(const reverse_iterator_impl& ri) const
438 { return m_cur == ri.m_cur; }
439 bool operator!=(const reverse_iterator_impl& ri) const
440 { return !(*this == ri); }
968f291b 441
c9f78968
VS
442 private:
443 iterator_type m_cur;
444 };
445
446 typedef reverse_iterator_impl<iterator> reverse_iterator;
447 typedef reverse_iterator_impl<const_iterator> const_reverse_iterator;
968f291b
VZ
448
449
3c67202d
VZ
450 // constructors and destructor
451 // ctor for an empty string
e87b7833 452 wxStringBase() { Init(); }
3c67202d 453 // copy ctor
e87b7833 454 wxStringBase(const wxStringBase& stringSrc)
6b95b20d 455 {
09443a26
VZ
456 wxASSERT_MSG( stringSrc.GetStringData()->IsValid(),
457 _T("did you forget to call UngetWriteBuf()?") );
6b95b20d 458
e87b7833 459 if ( stringSrc.empty() ) {
6b95b20d
VZ
460 // nothing to do for an empty string
461 Init();
462 }
463 else {
464 m_pchData = stringSrc.m_pchData; // share same data
465 GetStringData()->Lock(); // => one more copy
466 }
467 }
3c67202d 468 // string containing nRepeat copies of ch
c9f78968 469 wxStringBase(size_type nRepeat, wxUniChar ch);
3c67202d 470 // ctor takes first nLength characters from C string
e87b7833
MB
471 // (default value of npos means take all the string)
472 wxStringBase(const wxChar *psz)
473 { InitWith(psz, 0, npos); }
474 wxStringBase(const wxChar *psz, size_t nLength)
b1801e0e 475 { InitWith(psz, 0, nLength); }
830f8f11
VZ
476 wxStringBase(const wxChar *psz,
477 const wxMBConv& WXUNUSED(conv),
478 size_t nLength = npos)
b1801e0e 479 { InitWith(psz, 0, nLength); }
e87b7833
MB
480 // take nLen chars starting at nPos
481 wxStringBase(const wxStringBase& str, size_t nPos, size_t nLen)
482 {
483 wxASSERT_MSG( str.GetStringData()->IsValid(),
484 _T("did you forget to call UngetWriteBuf()?") );
485 Init();
486 size_t strLen = str.length() - nPos; nLen = strLen < nLen ? strLen : nLen;
487 InitWith(str.c_str(), nPos, nLen);
488 }
489 // take all characters from pStart to pEnd
490 wxStringBase(const void *pStart, const void *pEnd);
491
492 // dtor is not virtual, this class must not be inherited from!
1c2d1459
VZ
493 ~wxStringBase()
494 {
7b758e8f 495#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
1c2d1459
VZ
496 //RN - according to the above VC++ does indeed inline this,
497 //even though it spits out two warnings
498 #pragma warning (disable:4714)
7b758e8f 499#endif
e87b7833 500
1c2d1459 501 GetStringData()->Unlock();
7b758e8f
RN
502 }
503
504#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
1c2d1459
VZ
505 //re-enable inlining warning
506 #pragma warning (default:4714)
507#endif
e87b7833
MB
508 // overloaded assignment
509 // from another wxString
510 wxStringBase& operator=(const wxStringBase& stringSrc);
511 // from a character
c9f78968 512 wxStringBase& operator=(wxUniChar ch);
e87b7833
MB
513 // from a C string
514 wxStringBase& operator=(const wxChar *psz);
515
516 // return the length of the string
20aa779e 517 size_type length() const { return GetStringData()->nDataLength; }
e87b7833 518 // return the length of the string
20aa779e 519 size_type size() const { return length(); }
e87b7833 520 // return the maximum size of the string
13874b5c 521 size_type max_size() const { return npos; }
e87b7833 522 // resize the string, filling the space with c if c != 0
c9f78968 523 void resize(size_t nSize, wxUniChar ch = wxT('\0'));
e87b7833
MB
524 // delete the contents of the string
525 void clear() { erase(0, npos); }
526 // returns true if the string is empty
20aa779e 527 bool empty() const { return length() == 0; }
e87b7833
MB
528 // inform string about planned change in size
529 void reserve(size_t sz) { Alloc(sz); }
530 size_type capacity() const { return GetStringData()->nAllocLength; }
531
532 // lib.string.access
533 // return the character at position n
534 value_type at(size_type n) const
535 { wxASSERT_VALID_INDEX( n ); return m_pchData[n]; }
e87b7833
MB
536 // returns the writable character at position n
537 reference at(size_type n)
c9f78968
VS
538 {
539 wxASSERT_VALID_INDEX( n );
540 CopyBeforeWrite();
541 return wxUniCharRef::CreateForString(&m_pchData[n]);
542 }
e87b7833
MB
543
544 // lib.string.modifiers
545 // append elements str[pos], ..., str[pos+n]
546 wxStringBase& append(const wxStringBase& str, size_t pos, size_t n)
547 {
548 wxASSERT(pos <= str.length());
549 ConcatSelf(n, str.c_str() + pos, str.length() - pos);
550 return *this;
551 }
552 // append a string
553 wxStringBase& append(const wxStringBase& str)
554 { ConcatSelf(str.length(), str.c_str()); return *this; }
555 // append first n (or all if n == npos) characters of sz
556 wxStringBase& append(const wxChar *sz)
557 { ConcatSelf(wxStrlen(sz), sz); return *this; }
558 wxStringBase& append(const wxChar *sz, size_t n)
559 { ConcatSelf(n, sz); return *this; }
560 // append n copies of ch
c9f78968 561 wxStringBase& append(size_t n, wxUniChar ch);
e87b7833
MB
562 // append from first to last
563 wxStringBase& append(const_iterator first, const_iterator last)
564 { ConcatSelf(last - first, first); return *this; }
565
566 // same as `this_string = str'
567 wxStringBase& assign(const wxStringBase& str)
568 { return *this = str; }
569 // same as ` = str[pos..pos + n]
570 wxStringBase& assign(const wxStringBase& str, size_t pos, size_t n)
571 { clear(); return append(str, pos, n); }
572 // same as `= first n (or all if n == npos) characters of sz'
573 wxStringBase& assign(const wxChar *sz)
574 { clear(); return append(sz, wxStrlen(sz)); }
575 wxStringBase& assign(const wxChar *sz, size_t n)
576 { clear(); return append(sz, n); }
577 // same as `= n copies of ch'
c9f78968 578 wxStringBase& assign(size_t n, wxUniChar ch)
e87b7833
MB
579 { clear(); return append(n, ch); }
580 // assign from first to last
581 wxStringBase& assign(const_iterator first, const_iterator last)
582 { clear(); return append(first, last); }
583
584 // first valid index position
585 const_iterator begin() const { return m_pchData; }
968f291b 586 iterator begin();
e87b7833
MB
587 // position one after the last valid one
588 const_iterator end() const { return m_pchData + length(); }
ac3c86ee 589 iterator end();
e87b7833 590
968f291b
VZ
591 // first element of the reversed string
592 const_reverse_iterator rbegin() const { return const_reverse_iterator(end()); }
593 reverse_iterator rbegin() { return reverse_iterator(end()); }
594 // one beyond the end of the reversed string
595 const_reverse_iterator rend() const { return const_reverse_iterator(begin()); }
596 reverse_iterator rend() { return reverse_iterator(begin()); }
597
e87b7833
MB
598 // insert another string
599 wxStringBase& insert(size_t nPos, const wxStringBase& str)
600 {
601 wxASSERT( str.GetStringData()->IsValid() );
602 return insert(nPos, str.c_str(), str.length());
603 }
604 // insert n chars of str starting at nStart (in str)
605 wxStringBase& insert(size_t nPos, const wxStringBase& str, size_t nStart, size_t n)
606 {
607 wxASSERT( str.GetStringData()->IsValid() );
608 wxASSERT( nStart < str.length() );
609 size_t strLen = str.length() - nStart;
610 n = strLen < n ? strLen : n;
611 return insert(nPos, str.c_str() + nStart, n);
612 }
613 // insert first n (or all if n == npos) characters of sz
614 wxStringBase& insert(size_t nPos, const wxChar *sz, size_t n = npos);
615 // insert n copies of ch
c9f78968 616 wxStringBase& insert(size_t nPos, size_t n, wxUniChar ch)
e87b7833 617 { return insert(nPos, wxStringBase(n, ch)); }
c9f78968 618 iterator insert(iterator it, wxUniChar ch)
1c2d1459 619 { size_t idx = it - begin(); insert(idx, 1, ch); return begin() + idx; }
e87b7833
MB
620 void insert(iterator it, const_iterator first, const_iterator last)
621 { insert(it - begin(), first, last - first); }
c9f78968 622 void insert(iterator it, size_type n, wxUniChar ch)
e87b7833
MB
623 { insert(it - begin(), n, ch); }
624
625 // delete characters from nStart to nStart + nLen
626 wxStringBase& erase(size_type pos = 0, size_type n = npos);
627 iterator erase(iterator first, iterator last)
628 {
629 size_t idx = first - begin();
630 erase(idx, last - first);
631 return begin() + idx;
632 }
633 iterator erase(iterator first);
634
635 // explicit conversion to C string (use this with printf()!)
636 const wxChar* c_str() const { return m_pchData; }
637 const wxChar* data() const { return m_pchData; }
638
639 // replaces the substring of length nLen starting at nStart
640 wxStringBase& replace(size_t nStart, size_t nLen, const wxChar* sz);
641 // replaces the substring of length nLen starting at nStart
642 wxStringBase& replace(size_t nStart, size_t nLen, const wxStringBase& str)
643 { return replace(nStart, nLen, str.c_str()); }
644 // replaces the substring with nCount copies of ch
c9f78968 645 wxStringBase& replace(size_t nStart, size_t nLen, size_t nCount, wxUniChar ch);
e87b7833
MB
646 // replaces a substring with another substring
647 wxStringBase& replace(size_t nStart, size_t nLen,
648 const wxStringBase& str, size_t nStart2, size_t nLen2);
649 // replaces the substring with first nCount chars of sz
650 wxStringBase& replace(size_t nStart, size_t nLen,
651 const wxChar* sz, size_t nCount);
652 wxStringBase& replace(iterator first, iterator last, const_pointer s)
653 { return replace(first - begin(), last - first, s); }
654 wxStringBase& replace(iterator first, iterator last, const_pointer s,
655 size_type n)
656 { return replace(first - begin(), last - first, s, n); }
657 wxStringBase& replace(iterator first, iterator last, const wxStringBase& s)
658 { return replace(first - begin(), last - first, s); }
c9f78968 659 wxStringBase& replace(iterator first, iterator last, size_type n, wxUniChar c)
e87b7833
MB
660 { return replace(first - begin(), last - first, n, c); }
661 wxStringBase& replace(iterator first, iterator last,
662 const_iterator first1, const_iterator last1)
663 { return replace(first - begin(), last - first, first1, last1 - first1); }
664
665 // swap two strings
666 void swap(wxStringBase& str);
667
668 // All find() functions take the nStart argument which specifies the
669 // position to start the search on, the default value is 0. All functions
670 // return npos if there were no match.
671
672 // find a substring
673 size_t find(const wxStringBase& str, size_t nStart = 0) const;
674
e87b7833
MB
675 // find first n characters of sz
676 size_t find(const wxChar* sz, size_t nStart = 0, size_t n = npos) const;
e87b7833 677
e87b7833 678 // find the first occurence of character ch after nStart
c9f78968 679 size_t find(wxUniChar ch, size_t nStart = 0) const;
1412634b 680
e87b7833
MB
681 // rfind() family is exactly like find() but works right to left
682
683 // as find, but from the end
684 size_t rfind(const wxStringBase& str, size_t nStart = npos) const;
685
e87b7833
MB
686 // as find, but from the end
687 size_t rfind(const wxChar* sz, size_t nStart = npos,
688 size_t n = npos) const;
689 // as find, but from the end
c9f78968 690 size_t rfind(wxUniChar ch, size_t nStart = npos) const;
e87b7833
MB
691
692 // find first/last occurence of any character in the set
693
694 // as strpbrk() but starts at nStart, returns npos if not found
695 size_t find_first_of(const wxStringBase& str, size_t nStart = 0) const
696 { return find_first_of(str.c_str(), nStart); }
697 // same as above
698 size_t find_first_of(const wxChar* sz, size_t nStart = 0) const;
e2101186 699 size_t find_first_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833 700 // same as find(char, size_t)
c9f78968 701 size_t find_first_of(wxUniChar c, size_t nStart = 0) const
e87b7833
MB
702 { return find(c, nStart); }
703 // find the last (starting from nStart) char from str in this string
704 size_t find_last_of (const wxStringBase& str, size_t nStart = npos) const
705 { return find_last_of(str.c_str(), nStart); }
706 // same as above
707 size_t find_last_of (const wxChar* sz, size_t nStart = npos) const;
e2101186 708 size_t find_last_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833 709 // same as above
c9f78968 710 size_t find_last_of(wxUniChar c, size_t nStart = npos) const
e87b7833
MB
711 { return rfind(c, nStart); }
712
713 // find first/last occurence of any character not in the set
714
715 // as strspn() (starting from nStart), returns npos on failure
716 size_t find_first_not_of(const wxStringBase& str, size_t nStart = 0) const
717 { return find_first_not_of(str.c_str(), nStart); }
718 // same as above
719 size_t find_first_not_of(const wxChar* sz, size_t nStart = 0) const;
e2101186 720 size_t find_first_not_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833 721 // same as above
c9f78968 722 size_t find_first_not_of(wxUniChar ch, size_t nStart = 0) const;
e87b7833
MB
723 // as strcspn()
724 size_t find_last_not_of(const wxStringBase& str, size_t nStart = npos) const
e2101186 725 { return find_last_not_of(str.c_str(), nStart); }
e87b7833
MB
726 // same as above
727 size_t find_last_not_of(const wxChar* sz, size_t nStart = npos) const;
e2101186 728 size_t find_last_not_of(const wxChar* sz, size_t nStart, size_t n) const;
e87b7833 729 // same as above
c9f78968 730 size_t find_last_not_of(wxUniChar ch, size_t nStart = npos) const;
e87b7833
MB
731
732 // All compare functions return -1, 0 or 1 if the [sub]string is less,
733 // equal or greater than the compare() argument.
734
dcb68102
RN
735 // comparison with another string
736 int compare(const wxStringBase& str) const;
e87b7833
MB
737 // comparison with a substring
738 int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
739 // comparison of 2 substrings
740 int compare(size_t nStart, size_t nLen,
741 const wxStringBase& str, size_t nStart2, size_t nLen2) const;
dcb68102
RN
742 // comparison with a c string
743 int compare(const wxChar* sz) const;
e87b7833
MB
744 // substring comparison with first nCount characters of sz
745 int compare(size_t nStart, size_t nLen,
746 const wxChar* sz, size_t nCount = npos) const;
747
748 size_type copy(wxChar* s, size_type n, size_type pos = 0);
749
750 // substring extraction
751 wxStringBase substr(size_t nStart = 0, size_t nLen = npos) const;
752
753 // string += string
754 wxStringBase& operator+=(const wxStringBase& s) { return append(s); }
755 // string += C string
756 wxStringBase& operator+=(const wxChar *psz) { return append(psz); }
757 // string += char
c9f78968
VS
758 wxStringBase& operator+=(wxUniChar ch) { return append(1, ch); }
759 wxStringBase& operator+=(wxUniCharRef ch) { return append(1, ch); }
760 wxStringBase& operator+=(char ch) { return append(1, ch); }
761 wxStringBase& operator+=(wchar_t ch) { return append(1, ch); }
e87b7833
MB
762};
763
992527a5 764#endif // !wxUSE_STL_BASED_WXSTRING
e87b7833 765
c9f78968
VS
766// ----------------------------------------------------------------------------
767// wxCStrData
768// ----------------------------------------------------------------------------
769
770// Lightweight object returned by wxString::c_str() and implicitly convertible
771// to either const char* or const wchar_t*.
772class WXDLLIMPEXP_BASE wxCStrData
773{
774private:
775 // Ctors; for internal use by wxString and wxCStrData only
776 wxCStrData(const wxString *str, size_t offset = 0, bool owned = false)
777 : m_str(str), m_offset(offset), m_owned(owned) {}
778
779public:
780 // Ctor constructs the object from char literal; they are needed to make
781 // operator?: compile and they intentionally take char*, not const char*
782 wxCStrData(char *buf);
783 wxCStrData(wchar_t *buf);
784
785 ~wxCStrData();
786
787 // FIXME: we'll need convertors for both char* and wchar_t* and NONE
788 // for wxChar*, but that's after completing the transition to
789 // "smart" wxUniChar class. For now, just have conversion to
790 // char* in ANSI build and wchar_t in Unicode build.
791#if wxUSE_UNICODE
792 const wchar_t* AsWChar() const;
793 operator const wchar_t*() const { return AsWChar(); }
794#else
795 const char* AsChar() const;
dbea442a
VZ
796 const unsigned char* AsUnsignedChar() const
797 { return (const unsigned char *) AsChar(); }
c9f78968 798 operator const char*() const { return AsChar(); }
dbea442a 799 operator const unsigned char*() const { return AsUnsignedChar(); }
c9f78968
VS
800#endif
801
802 wxString AsString() const;
803 operator wxString() const;
804
805 // allow expressions like "c_str()[0]":
806 wxUniChar operator[](int n) const { return operator[](size_t(n)); }
807 wxUniChar operator[](size_t n) const;
c1df0a3b 808 wxUniChar operator[](long n) const { return operator[](size_t(n)); }
c9f78968
VS
809#ifndef wxSIZE_T_IS_UINT
810 wxUniChar operator[](unsigned int n) const { return operator[](size_t(n)); }
811#endif // size_t != unsigned int
812
acf0c9ac 813 // these operators are needed to emulate the pointer semantics of c_str():
c9f78968
VS
814 // expressions like "wxChar *p = str.c_str() + 1;" should continue to work
815 // (we need both versions to resolve ambiguities):
816 wxCStrData operator+(int n) const
817 { return wxCStrData(m_str, m_offset + n, m_owned); }
acf0c9ac
VZ
818 wxCStrData operator+(long n) const
819 { return wxCStrData(m_str, m_offset + n, m_owned); }
c9f78968
VS
820 wxCStrData operator+(size_t n) const
821 { return wxCStrData(m_str, m_offset + n, m_owned); }
822
b77afb41 823 // this operator is needed to make expressions like "*c_str()" or
c9f78968
VS
824 // "*(c_str() + 2)" work
825 wxUniChar operator*() const;
826
827private:
828 const wxString *m_str;
829 size_t m_offset;
830 bool m_owned;
831
832 friend class WXDLLIMPEXP_BASE wxString;
833};
834
835// ----------------------------------------------------------------------------
836// wxStringPrintfMixin
837// ---------------------------------------------------------------------------
838
839// NB: VC6 has a bug that causes linker errors if you have template methods
840// in a class using __declspec(dllimport). The solution is to split such
841// class into two classes, one that contains the template methods and does
842// *not* use WXDLLIMPEXP_BASE and another class that contains the rest
843// (with DLL linkage).
844//
845// We only do this for VC6 here, because the code is less efficient
846// (Printf() has to use dynamic_cast<>) and because OpenWatcom compiler
847// cannot compile this code.
848
849#if defined(__VISUALC__) && __VISUALC__ < 1300
850 #define wxNEEDS_WXSTRING_PRINTF_MIXIN
851#endif
852
853#ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
854// this class contains implementation of wxString's vararg methods, it's
855// exported from wxBase DLL
856class WXDLLIMPEXP_BASE wxStringPrintfMixinBase
857{
858protected:
859 wxStringPrintfMixinBase() {}
860
861 int DoPrintf(const wxChar *format, ...) ATTRIBUTE_PRINTF_2;
862 static wxString DoFormat(const wxChar *format, ...) ATTRIBUTE_PRINTF_1;
863};
864
865// this class contains template wrappers for wxString's vararg methods, it's
866// intentionally *not* exported from the DLL in order to fix the VC6 bug
867// described above
868class wxStringPrintfMixin : public wxStringPrintfMixinBase
869{
870private:
871 // to further complicate things, we can't return wxString from
872 // wxStringPrintfMixin::Format() because wxString is not yet declared at
873 // this point; the solution is to use this fake type trait template - this
874 // way the compiler won't know the return type until Format() is used
875 // (this doesn't compile with Watcom, but VC6 compiles it just fine):
876 template<typename T> struct StringReturnType
877 {
878 typedef wxString type;
879 };
880
881public:
882 // these are duplicated wxString methods, they're also declared below
883 // if !wxNEEDS_WXSTRING_PRINTF_MIXIN:
884
885 // int Printf(const wxChar *pszFormat, ...);
886 WX_DEFINE_VARARG_FUNC(int, Printf, DoPrintf)
887 // static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
888 WX_DEFINE_VARARG_FUNC(static typename StringReturnType<T1>::type,
889 Format, DoFormat)
890 // int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
891 WX_DEFINE_VARARG_FUNC(int, sprintf, DoPrintf)
892
893protected:
894 wxStringPrintfMixin() : wxStringPrintfMixinBase() {}
895};
896#endif // wxNEEDS_WXSTRING_PRINTF_MIXIN
897
898
b6339dde
VZ
899// ----------------------------------------------------------------------------
900// wxString: string class trying to be compatible with std::string, MFC
901// CString and wxWindows 1.x wxString all at once
e87b7833
MB
902// ---------------------------------------------------------------------------
903
c9f78968
VS
904#ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
905 // "non dll-interface class 'wxStringPrintfMixin' used as base interface
906 // for dll-interface class 'wxString'" -- this is OK in our case
907 #pragma warning (disable:4275)
e87b7833
MB
908#endif
909
c9f78968
VS
910class WXDLLIMPEXP_BASE wxString : public wxStringBase
911#ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
912 ,public wxStringPrintfMixin
913#endif
914{
e87b7833
MB
915 // NB: special care was taken in arranging the member functions in such order
916 // that all inline functions can be effectively inlined, verify that all
20aa779e 917 // performance critical functions are still inlined if you change order!
e87b7833
MB
918private:
919 // if we hadn't made these operators private, it would be possible to
920 // compile "wxString s; s = 17;" without any warnings as 17 is implicitly
921 // converted to char in C and we do have operator=(char)
922 //
923 // NB: we don't need other versions (short/long and unsigned) as attempt
924 // to assign another numeric type to wxString will now result in
925 // ambiguity between operator=(char) and operator=(int)
926 wxString& operator=(int);
927
928 // these methods are not implemented - there is _no_ conversion from int to
929 // string, you're doing something wrong if the compiler wants to call it!
930 //
931 // try `s << i' or `s.Printf("%d", i)' instead
932 wxString(int);
933
934public:
935 // constructors and destructor
936 // ctor for an empty string
937 wxString() : wxStringBase() { }
938 // copy ctor
939 wxString(const wxStringBase& stringSrc) : wxStringBase(stringSrc) { }
940 wxString(const wxString& stringSrc) : wxStringBase(stringSrc) { }
941 // string containing nRepeat copies of ch
c9f78968
VS
942 wxString(wxUniChar ch, size_t nRepeat = 1)
943 : wxStringBase(nRepeat, ch) { }
944 wxString(size_t nRepeat, wxUniChar ch)
945 : wxStringBase(nRepeat, ch) { }
946 wxString(wxUniCharRef ch, size_t nRepeat = 1)
947 : wxStringBase(nRepeat, ch) { }
948 wxString(size_t nRepeat, wxUniCharRef ch)
949 : wxStringBase(nRepeat, ch) { }
950 wxString(char ch, size_t nRepeat = 1)
951 : wxStringBase(nRepeat, ch) { }
952 wxString(size_t nRepeat, char ch)
e87b7833 953 : wxStringBase(nRepeat, ch) { }
c9f78968
VS
954 wxString(wchar_t ch, size_t nRepeat = 1)
955 : wxStringBase(nRepeat, ch) { }
956 wxString(size_t nRepeat, wchar_t ch)
e87b7833
MB
957 : wxStringBase(nRepeat, ch) { }
958 // ctor takes first nLength characters from C string
959 // (default value of npos means take all the string)
960 wxString(const wxChar *psz)
961 : wxStringBase(psz ? psz : wxT("")) { }
962 wxString(const wxChar *psz, size_t nLength)
963 : wxStringBase(psz, nLength) { }
830f8f11
VZ
964 wxString(const wxChar *psz,
965 const wxMBConv& WXUNUSED(conv),
966 size_t nLength = npos)
e87b7833 967 : wxStringBase(psz, nLength == npos ? wxStrlen(psz) : nLength) { }
e90c1d2a 968
20aa779e 969 // even if we're not built with wxUSE_STL == 1 it is very convenient to allow
ce76f779
VZ
970 // implicit conversions from std::string to wxString as this allows to use
971 // the same strings in non-GUI and GUI code, however we don't want to
972 // unconditionally add this ctor as it would make wx lib dependent on
973 // libstdc++ on some Linux versions which is bad, so instead we ask the
974 // client code to define this wxUSE_STD_STRING symbol if they need it
47561b0d 975#if wxUSE_STD_STRING
ce76f779
VZ
976 wxString(const wxStdString& s)
977 : wxStringBase(s.c_str()) { }
978#endif // wxUSE_STD_STRING
979
2bb67b80
OK
980#if wxUSE_UNICODE
981 // from multibyte string
d7330233
VS
982 wxString(const char *psz,
983 const wxMBConv& conv = wxConvLibc,
984 size_t nLength = npos);
2bb67b80 985 // from wxWCharBuffer (i.e. return from wxGetString)
e87b7833 986 wxString(const wxWCharBuffer& psz) : wxStringBase(psz.data()) { }
e90c1d2a 987#else // ANSI
3c67202d 988 // from C string (for compilers using unsigned char)
153958f7
VZ
989 wxString(const unsigned char* psz)
990 : wxStringBase((const char*)psz) { }
991 // from part of C string (for compilers using unsigned char)
992 wxString(const unsigned char* psz, size_t nLength)
e87b7833 993 : wxStringBase((const char*)psz, nLength) { }
e90c1d2a 994
b77afb41
VZ
995 // as we provide both ctors with this signature for both char and unsigned
996 // char string, we need to provide one for wxCStrData to resolve ambiguity
997 wxString(const wxCStrData& cstr, size_t nLength)
998 : wxStringBase(cstr.AsChar(), nLength) { }
999
1000 // and because wxString is convertible to wxCStrData and const wxChar *
1001 // we also need to provide this one
1002 wxString(const wxString& str, size_t nLength)
1003 : wxStringBase(str, 0, nLength) { }
1004
6f841509 1005#if wxUSE_WCHAR_T
2bb67b80 1006 // from wide (Unicode) string
830f8f11
VZ
1007 wxString(const wchar_t *pwz,
1008 const wxMBConv& conv = wxConvLibc,
1009 size_t nLength = npos);
e90c1d2a
VZ
1010#endif // !wxUSE_WCHAR_T
1011
2bb67b80
OK
1012 // from wxCharBuffer
1013 wxString(const wxCharBuffer& psz)
051aa330 1014 : wxStringBase(psz) { }
e90c1d2a
VZ
1015#endif // Unicode/ANSI
1016
3c67202d
VZ
1017 // generic attributes & operations
1018 // as standard strlen()
e87b7833 1019 size_t Len() const { return length(); }
3c67202d 1020 // string contains any characters?
e87b7833 1021 bool IsEmpty() const { return empty(); }
d775fa82 1022 // empty string is "false", so !str will return true
20aa779e 1023 bool operator!() const { return empty(); }
735d1db6
VZ
1024 // truncate the string to given length
1025 wxString& Truncate(size_t uiLen);
3c67202d 1026 // empty string contents
dd1eaa89
VZ
1027 void Empty()
1028 {
735d1db6 1029 Truncate(0);
dd1eaa89 1030
5a8231ef 1031 wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") );
7be07660 1032 }
3c67202d 1033 // empty the string and free memory
7be07660
VZ
1034 void Clear()
1035 {
e87b7833
MB
1036 wxString tmp(wxEmptyString);
1037 swap(tmp);
dd1eaa89
VZ
1038 }
1039
3c67202d
VZ
1040 // contents test
1041 // Is an ascii value
c801d85f 1042 bool IsAscii() const;
3c67202d 1043 // Is a number
c801d85f 1044 bool IsNumber() const;
3c67202d 1045 // Is a word
c801d85f 1046 bool IsWord() const;
c801d85f 1047
3c67202d
VZ
1048 // data access (all indexes are 0 based)
1049 // read access
c9f78968 1050 wxUniChar GetChar(size_t n) const
9d9ad673 1051 { return at(n); }
3c67202d 1052 // read/write access
c9f78968 1053 wxUniCharRef GetWritableChar(size_t n)
9d9ad673 1054 { return at(n); }
3c67202d 1055 // write access
c9f78968 1056 void SetChar(size_t n, wxUniChar ch)
9d9ad673 1057 { at(n) = ch; }
c801d85f 1058
3c67202d 1059 // get last character
c9f78968 1060 wxUniChar Last() const
09443a26 1061 {
5a8231ef 1062 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
09443a26 1063
9d9ad673 1064 return at(length() - 1);
09443a26
VZ
1065 }
1066
3c67202d 1067 // get writable last character
c9f78968 1068 wxUniCharRef Last()
09443a26 1069 {
5a8231ef 1070 wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") );
9d9ad673 1071 return at(length() - 1);
09443a26 1072 }
c801d85f 1073
d836ee96 1074 /*
9d9ad673 1075 Note that we we must define all of the overloads below to avoid
c9f78968 1076 ambiguity when using str[0].
d836ee96 1077 */
c9f78968 1078 wxUniChar operator[](int n) const
01398433 1079 { return wxStringBase::at(n); }
c1df0a3b
VZ
1080 wxUniChar operator[](long n) const
1081 { return wxStringBase::at(n); }
c9f78968 1082 wxUniChar operator[](size_t n) const
01398433
VZ
1083 { return wxStringBase::at(n); }
1084#ifndef wxSIZE_T_IS_UINT
c9f78968 1085 wxUniChar operator[](unsigned int n) const
01398433
VZ
1086 { return wxStringBase::at(n); }
1087#endif // size_t != unsigned int
01398433 1088
9d9ad673 1089 // operator versions of GetWriteableChar()
c9f78968 1090 wxUniCharRef operator[](int n)
9d9ad673 1091 { return wxStringBase::at(n); }
c1df0a3b
VZ
1092 wxUniCharRef operator[](long n)
1093 { return wxStringBase::at(n); }
c9f78968 1094 wxUniCharRef operator[](size_t n)
9d9ad673 1095 { return wxStringBase::at(n); }
d836ee96 1096#ifndef wxSIZE_T_IS_UINT
c9f78968 1097 wxUniCharRef operator[](unsigned int n)
9d9ad673 1098 { return wxStringBase::at(n); }
d836ee96 1099#endif // size_t != unsigned int
c801d85f 1100
c9f78968
VS
1101 // explicit conversion to C string (use this with printf()!)
1102 wxCStrData c_str() const { return wxCStrData(this); }
1103
3c67202d 1104 // implicit conversion to C string
c9f78968 1105 operator wxCStrData() const { return c_str(); }
e87b7833 1106 operator const wxChar*() const { return c_str(); }
e015c2a3 1107
e015c2a3 1108 // identical to c_str(), for MFC compatibility
c9f78968
VS
1109 const wxCStrData GetData() const { return c_str(); }
1110
1111 // explicit conversion to C string in internal representation (char*,
1112 // wchar_t*, UTF-8-encoded char*, depending on the build):
1113 const_pointer wx_str() const { return data(); }
e90c1d2a 1114
e015c2a3
VZ
1115 // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
1116 // converting numbers or strings which are certain not to contain special
1117 // chars (typically system functions, X atoms, environment variables etc.)
1118 //
1119 // the behaviour of these functions with the strings containing anything
1120 // else than 7 bit ASCII characters is undefined, use at your own risk.
b1ac3b56 1121#if wxUSE_UNICODE
2b5f62a0
VZ
1122 static wxString FromAscii(const char *ascii); // string
1123 static wxString FromAscii(const char ascii); // char
b1ac3b56 1124 const wxCharBuffer ToAscii() const;
e015c2a3
VZ
1125#else // ANSI
1126 static wxString FromAscii(const char *ascii) { return wxString( ascii ); }
2b5f62a0 1127 static wxString FromAscii(const char ascii) { return wxString( ascii ); }
e015c2a3
VZ
1128 const char *ToAscii() const { return c_str(); }
1129#endif // Unicode/!Unicode
b1ac3b56 1130
2b5f62a0 1131 // conversions with (possible) format conversions: have to return a
e90c1d2a 1132 // buffer with temporary data
f6bcfd97
BP
1133 //
1134 // the functions defined (in either Unicode or ANSI) mode are mb_str() to
1135 // return an ANSI (multibyte) string, wc_str() to return a wide string and
1136 // fn_str() to return a string which should be used with the OS APIs
1137 // accepting the file names. The return value is always the same, but the
1138 // type differs because a function may either return pointer to the buffer
1139 // directly or have to use intermediate buffer for translation.
2bb67b80 1140#if wxUSE_UNICODE
830f8f11 1141 const wxCharBuffer mb_str(const wxMBConv& conv = wxConvLibc) const;
f6bcfd97 1142
e90c1d2a
VZ
1143 const wxWX2MBbuf mbc_str() const { return mb_str(*wxConvCurrent); }
1144
e87b7833 1145 const wxChar* wc_str() const { return c_str(); }
f6bcfd97
BP
1146
1147 // for compatibility with !wxUSE_UNICODE version
830f8f11 1148 const wxChar* wc_str(const wxMBConv& WXUNUSED(conv)) const { return c_str(); }
e90c1d2a 1149
2bb67b80 1150#if wxMBFILES
5f709e67 1151 const wxCharBuffer fn_str() const { return mb_str(wxConvFile); }
e90c1d2a 1152#else // !wxMBFILES
e87b7833 1153 const wxChar* fn_str() const { return c_str(); }
e90c1d2a
VZ
1154#endif // wxMBFILES/!wxMBFILES
1155#else // ANSI
e87b7833 1156 const wxChar* mb_str() const { return c_str(); }
f6bcfd97
BP
1157
1158 // for compatibility with wxUSE_UNICODE version
830f8f11 1159 const wxChar* mb_str(const wxMBConv& WXUNUSED(conv)) const { return c_str(); }
f6bcfd97 1160
e90c1d2a 1161 const wxWX2MBbuf mbc_str() const { return mb_str(); }
f6bcfd97 1162
6f841509 1163#if wxUSE_WCHAR_T
830f8f11 1164 const wxWCharBuffer wc_str(const wxMBConv& conv) const;
e90c1d2a 1165#endif // wxUSE_WCHAR_T
d5c8817c
SC
1166#ifdef __WXOSX__
1167 const wxCharBuffer fn_str() const { return wxConvFile.cWC2WX( wc_str( wxConvLocal ) ); }
1168#else
e87b7833 1169 const wxChar* fn_str() const { return c_str(); }
d5c8817c 1170#endif
e90c1d2a 1171#endif // Unicode/ANSI
c801d85f 1172
3c67202d
VZ
1173 // overloaded assignment
1174 // from another wxString
e87b7833
MB
1175 wxString& operator=(const wxStringBase& stringSrc)
1176 { return (wxString&)wxStringBase::operator=(stringSrc); }
c8eb8172 1177 wxString& operator=(const wxCStrData& cstr);
3c67202d 1178 // from a character
c9f78968 1179 wxString& operator=(wxUniChar ch)
e87b7833 1180 { return (wxString&)wxStringBase::operator=(ch); }
c9f78968
VS
1181 wxString& operator=(wxUniCharRef ch)
1182 { return (wxString&)wxStringBase::operator=((wxUniChar)ch); }
1183 wxString& operator=(char ch)
1184 { return (wxString&)wxStringBase::operator=(wxUniChar(ch)); }
1185 wxString& operator=(wchar_t ch)
1186 { return (wxString&)wxStringBase::operator=(wxUniChar(ch)); }
c57e3bd5
RN
1187 // from a C string - STL probably will crash on NULL,
1188 // so we need to compensate in that case
992527a5 1189#if wxUSE_STL_BASED_WXSTRING
c57e3bd5
RN
1190 wxString& operator=(const wxChar *psz)
1191 { if(psz) wxStringBase::operator=(psz); else Clear(); return *this; }
1192#else
e87b7833
MB
1193 wxString& operator=(const wxChar *psz)
1194 { return (wxString&)wxStringBase::operator=(psz); }
c57e3bd5
RN
1195#endif
1196
111bb7f2
OK
1197#if wxUSE_UNICODE
1198 // from wxWCharBuffer
b1801e0e 1199 wxString& operator=(const wxWCharBuffer& psz)
e87b7833 1200 { (void) operator=((const wchar_t *)psz); return *this; }
d7330233
VS
1201 // from C string
1202 wxString& operator=(const char* psz)
1203 { return operator=(wxString(psz)); }
e90c1d2a 1204#else // ANSI
3c67202d 1205 // from another kind of C string
c801d85f 1206 wxString& operator=(const unsigned char* psz);
6f841509 1207#if wxUSE_WCHAR_T
3c67202d 1208 // from a wide string
c801d85f 1209 wxString& operator=(const wchar_t *pwz);
6f841509 1210#endif
111bb7f2 1211 // from wxCharBuffer
b1801e0e 1212 wxString& operator=(const wxCharBuffer& psz)
e87b7833 1213 { (void) operator=((const char *)psz); return *this; }
e90c1d2a 1214#endif // Unicode/ANSI
3c67202d
VZ
1215
1216 // string concatenation
1217 // in place concatenation
1218 /*
1219 Concatenate and return the result. Note that the left to right
1220 associativity of << allows to write things like "str << str1 << str2
1221 << ..." (unlike with +=)
1222 */
1223 // string += string
dd1eaa89
VZ
1224 wxString& operator<<(const wxString& s)
1225 {
d8a4b666 1226#if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL
09443a26
VZ
1227 wxASSERT_MSG( s.GetStringData()->IsValid(),
1228 _T("did you forget to call UngetWriteBuf()?") );
e87b7833 1229#endif
dd1eaa89 1230
e87b7833 1231 append(s);
dd1eaa89
VZ
1232 return *this;
1233 }
3c67202d 1234 // string += C string
2bb67b80 1235 wxString& operator<<(const wxChar *psz)
c9f78968
VS
1236 { append(psz); return *this; }
1237 wxString& operator<<(const wxCStrData& psz)
e87b7833 1238 { append(psz); return *this; }
3c67202d 1239 // string += char
c9f78968
VS
1240 wxString& operator<<(wxUniChar ch) { append(1, ch); return *this; }
1241 wxString& operator<<(wxUniCharRef ch) { append(1, ch); return *this; }
1242 wxString& operator<<(char ch) { append(1, ch); return *this; }
1243 wxString& operator<<(wchar_t ch) { append(1, ch); return *this; }
2bb67b80
OK
1244
1245 // string += buffer (i.e. from wxGetString)
1246#if wxUSE_UNICODE
09443a26 1247 wxString& operator<<(const wxWCharBuffer& s)
d7330233
VS
1248 { return operator<<((const wchar_t *)s); }
1249 wxString& operator+=(const wxWCharBuffer& s)
1250 { return operator<<((const wchar_t *)s); }
09443a26
VZ
1251#else // !wxUSE_UNICODE
1252 wxString& operator<<(const wxCharBuffer& s)
d7330233
VS
1253 { return operator<<((const char *)s); }
1254 wxString& operator+=(const wxCharBuffer& s)
1255 { return operator<<((const char *)s); }
09443a26 1256#endif // wxUSE_UNICODE/!wxUSE_UNICODE
6b95b20d 1257
d7330233
VS
1258#if wxUSE_UNICODE
1259 // string += C string in Unicode build (with conversion)
1260 wxString& operator<<(const char *s)
1261 { return operator<<(wxString(s)); }
1262 wxString& operator+=(const char *s)
1263 { return operator+=(wxString(s)); }
1264#endif // wxUSE_UNICODE
1265
3c67202d 1266 // string += C string
09443a26
VZ
1267 wxString& Append(const wxString& s)
1268 {
5a8231ef
WS
1269 // test for empty() to share the string if possible
1270 if ( empty() )
09443a26
VZ
1271 *this = s;
1272 else
e87b7833 1273 append(s);
09443a26
VZ
1274 return *this;
1275 }
c9f78968
VS
1276 wxString& Append(const wxCStrData& psz)
1277 { append(psz); return *this; }
2bb67b80 1278 wxString& Append(const wxChar* psz)
e87b7833 1279 { append(psz); return *this; }
3c67202d 1280 // append count copies of given character
c9f78968
VS
1281 wxString& Append(wxUniChar ch, size_t count = 1u)
1282 { append(count, ch); return *this; }
1283 wxString& Append(wxUniCharRef ch, size_t count = 1u)
1284 { append(count, ch); return *this; }
1285 wxString& Append(char ch, size_t count = 1u)
1286 { append(count, ch); return *this; }
1287 wxString& Append(wchar_t ch, size_t count = 1u)
e87b7833 1288 { append(count, ch); return *this; }
8f06a017 1289 wxString& Append(const wxChar* psz, size_t nLen)
e87b7833 1290 { append(psz, nLen); return *this; }
3c67202d
VZ
1291
1292 // prepend a string, return the string itself
1293 wxString& Prepend(const wxString& str)
1294 { *this = str + *this; return *this; }
1295
1296 // non-destructive concatenation
1fc8cfbd
VZ
1297 // two strings
1298 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string1,
1299 const wxString& string2);
1300 // string with a single char
c9f78968 1301 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxUniChar ch);
1fc8cfbd 1302 // char with a string
c9f78968 1303 friend wxString WXDLLIMPEXP_BASE operator+(wxUniChar ch, const wxString& string);
1fc8cfbd
VZ
1304 // string with C string
1305 friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string,
1306 const wxChar *psz);
1307 // C string with string
1308 friend wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz,
1309 const wxString& string);
3c67202d
VZ
1310
1311 // stream-like functions
1312 // insert an int into string
3ce65f6c
VZ
1313 wxString& operator<<(int i)
1314 { return (*this) << Format(_T("%d"), i); }
1315 // insert an unsigned int into string
1316 wxString& operator<<(unsigned int ui)
1317 { return (*this) << Format(_T("%u"), ui); }
1318 // insert a long into string
1319 wxString& operator<<(long l)
1320 { return (*this) << Format(_T("%ld"), l); }
1321 // insert an unsigned long into string
1322 wxString& operator<<(unsigned long ul)
1323 { return (*this) << Format(_T("%lu"), ul); }
3fc1adbd
MW
1324#if defined wxLongLong_t && !defined wxLongLongIsLong
1325 // insert a long long if they exist and aren't longs
1326 wxString& operator<<(wxLongLong_t ll)
b7859132
MW
1327 {
1328 const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("d");
1329 return (*this) << Format(fmt, ll);
1330 }
3fc1adbd
MW
1331 // insert an unsigned long long
1332 wxString& operator<<(wxULongLong_t ull)
b7859132
MW
1333 {
1334 const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("u");
1335 return (*this) << Format(fmt , ull);
1336 }
3fc1adbd 1337#endif
3c67202d 1338 // insert a float into string
3ce65f6c
VZ
1339 wxString& operator<<(float f)
1340 { return (*this) << Format(_T("%f"), f); }
3c67202d 1341 // insert a double into string
3ce65f6c
VZ
1342 wxString& operator<<(double d)
1343 { return (*this) << Format(_T("%g"), d); }
c84c52de 1344
3c67202d 1345 // string comparison
30b21f9a 1346 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
dcb68102
RN
1347 int Cmp(const wxChar *psz) const;
1348 int Cmp(const wxString& s) const;
3c67202d 1349 // same as Cmp() but not case-sensitive
dcb68102
RN
1350 int CmpNoCase(const wxChar *psz) const;
1351 int CmpNoCase(const wxString& s) const;
3c67202d
VZ
1352 // test for the string equality, either considering case or not
1353 // (if compareWithCase then the case matters)
d775fa82 1354 bool IsSameAs(const wxChar *psz, bool compareWithCase = true) const
3c67202d 1355 { return (compareWithCase ? Cmp(psz) : CmpNoCase(psz)) == 0; }
20aa779e 1356 // comparison with a single character: returns true if equal
c9f78968 1357 bool IsSameAs(wxUniChar c, bool compareWithCase = true) const
f33fee2a 1358 {
e87b7833 1359 return (length() == 1) && (compareWithCase ? GetChar(0u) == c
f33fee2a
VZ
1360 : wxToupper(GetChar(0u)) == wxToupper(c));
1361 }
3c67202d
VZ
1362
1363 // simple sub-string extraction
1364 // return substring starting at nFirst of length nCount (or till the end
1365 // if nCount = default value)
e87b7833 1366 wxString Mid(size_t nFirst, size_t nCount = npos) const;
3c67202d 1367
f6bcfd97 1368 // operator version of Mid()
3c67202d
VZ
1369 wxString operator()(size_t start, size_t len) const
1370 { return Mid(start, len); }
1371
3affcd07
VZ
1372 // check if the string starts with the given prefix and return the rest
1373 // of the string in the provided pointer if it is not NULL; otherwise
1374 // return false
f6bcfd97 1375 bool StartsWith(const wxChar *prefix, wxString *rest = NULL) const;
3affcd07
VZ
1376 // check if the string ends with the given suffix and return the
1377 // beginning of the string before the suffix in the provided pointer if
1378 // it is not NULL; otherwise return false
1379 bool EndsWith(const wxChar *suffix, wxString *rest = NULL) const;
f6bcfd97 1380
3c67202d 1381 // get first nCount characters
c801d85f 1382 wxString Left(size_t nCount) const;
3c67202d 1383 // get last nCount characters
c801d85f 1384 wxString Right(size_t nCount) const;
c0881dc3 1385 // get all characters before the first occurance of ch
3c67202d 1386 // (returns the whole string if ch not found)
c9f78968 1387 wxString BeforeFirst(wxUniChar ch) const;
3c67202d
VZ
1388 // get all characters before the last occurence of ch
1389 // (returns empty string if ch not found)
c9f78968 1390 wxString BeforeLast(wxUniChar ch) const;
3c67202d
VZ
1391 // get all characters after the first occurence of ch
1392 // (returns empty string if ch not found)
c9f78968 1393 wxString AfterFirst(wxUniChar ch) const;
3c67202d
VZ
1394 // get all characters after the last occurence of ch
1395 // (returns the whole string if ch not found)
c9f78968 1396 wxString AfterLast(wxUniChar ch) const;
3c67202d
VZ
1397
1398 // for compatibility only, use more explicitly named functions above
c9f78968
VS
1399 wxString Before(wxUniChar ch) const { return BeforeLast(ch); }
1400 wxString After(wxUniChar ch) const { return AfterFirst(ch); }
3c67202d
VZ
1401
1402 // case conversion
c84c52de 1403 // convert to upper case in place, return the string itself
c801d85f 1404 wxString& MakeUpper();
c84c52de 1405 // convert to upper case, return the copy of the string
03ab016d
JS
1406 // Here's something to remember: BC++ doesn't like returns in inlines.
1407 wxString Upper() const ;
c84c52de 1408 // convert to lower case in place, return the string itself
c801d85f 1409 wxString& MakeLower();
c84c52de 1410 // convert to lower case, return the copy of the string
03ab016d 1411 wxString Lower() const ;
c801d85f 1412
3c67202d
VZ
1413 // trimming/padding whitespace (either side) and truncating
1414 // remove spaces from left or from right (default) side
d775fa82 1415 wxString& Trim(bool bFromRight = true);
3c67202d 1416 // add nCount copies chPad in the beginning or at the end (default)
c9f78968 1417 wxString& Pad(size_t nCount, wxUniChar chPad = wxT(' '), bool bFromRight = true);
dd1eaa89 1418
3c67202d
VZ
1419 // searching and replacing
1420 // searching (return starting index, or -1 if not found)
c9f78968 1421 int Find(wxUniChar ch, bool bFromEnd = false) const; // like strchr/strrchr
3c67202d 1422 // searching (return starting index, or -1 if not found)
2bb67b80 1423 int Find(const wxChar *pszSub) const; // like strstr
3c67202d
VZ
1424 // replace first (or all of bReplaceAll) occurences of substring with
1425 // another string, returns the number of replacements made
2bb67b80
OK
1426 size_t Replace(const wxChar *szOld,
1427 const wxChar *szNew,
d775fa82 1428 bool bReplaceAll = true);
3c67202d
VZ
1429
1430 // check if the string contents matches a mask containing '*' and '?'
2bb67b80 1431 bool Matches(const wxChar *szMask) const;
c801d85f 1432
d775fa82 1433 // conversion to numbers: all functions return true only if the whole
538f35cc
VZ
1434 // string is a number and put the value of this number into the pointer
1435 // provided, the base is the numeric base in which the conversion should be
1436 // done and must be comprised between 2 and 36 or be 0 in which case the
1437 // standard C rules apply (leading '0' => octal, "0x" => hex)
cd0b1709 1438 // convert to a signed integer
538f35cc 1439 bool ToLong(long *val, int base = 10) const;
cd0b1709 1440 // convert to an unsigned integer
538f35cc 1441 bool ToULong(unsigned long *val, int base = 10) const;
d6718dd1
VZ
1442 // convert to wxLongLong
1443#if defined(wxLongLong_t)
1444 bool ToLongLong(wxLongLong_t *val, int base = 10) const;
1445 // convert to wxULongLong
1446 bool ToULongLong(wxULongLong_t *val, int base = 10) const;
1447#endif // wxLongLong_t
cd0b1709
VZ
1448 // convert to a double
1449 bool ToDouble(double *val) const;
1450
d6718dd1 1451
c9f78968 1452#ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
90e572f1 1453 // formatted input/output
3c67202d 1454 // as sprintf(), returns the number of characters written or < 0 on error
7357f981 1455 // (take 'this' into account in attribute parameter count)
c9f78968
VS
1456 // int Printf(const wxChar *pszFormat, ...);
1457 WX_DEFINE_VARARG_FUNC(int, Printf, DoPrintf)
1458#endif // !wxNEEDS_WXSTRING_PRINTF_MIXIN
3c67202d 1459 // as vprintf(), returns the number of characters written or < 0 on error
c9f78968 1460 int PrintfV(const wxString& format, va_list argptr);
dd1eaa89 1461
c9f78968 1462#ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
341e7d28 1463 // returns the string containing the result of Printf() to it
c9f78968
VS
1464 // static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
1465 WX_DEFINE_VARARG_FUNC(static wxString, Format, DoFormat)
1466#endif
341e7d28 1467 // the same as above, but takes a va_list
c9f78968 1468 static wxString FormatV(const wxString& format, va_list argptr);
341e7d28 1469
3c67202d
VZ
1470 // raw access to string memory
1471 // ensure that string has space for at least nLen characters
dd1eaa89 1472 // only works if the data of this string is not shared
e87b7833 1473 bool Alloc(size_t nLen) { reserve(nLen); /*return capacity() >= nLen;*/ return true; }
3c67202d 1474 // minimize the string's memory
dd1eaa89 1475 // only works if the data of this string is not shared
b1801e0e 1476 bool Shrink();
76046d73 1477#if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING
d8a4b666
VS
1478 // These are deprecated, use wxStringBuffer or wxStringBufferLength instead
1479 //
3c67202d
VZ
1480 // get writable buffer of at least nLen bytes. Unget() *must* be called
1481 // a.s.a.p. to put string back in a reasonable state!
d8a4b666 1482 wxDEPRECATED( wxChar *GetWriteBuf(size_t nLen) );
3c67202d 1483 // call this immediately after GetWriteBuf() has been used
d8a4b666
VS
1484 wxDEPRECATED( void UngetWriteBuf() );
1485 wxDEPRECATED( void UngetWriteBuf(size_t nLen) );
76046d73 1486#endif // WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING
c801d85f 1487
77ffb593 1488 // wxWidgets version 1 compatibility functions
3c67202d
VZ
1489
1490 // use Mid()
1491 wxString SubString(size_t from, size_t to) const
1492 { return Mid(from, (to - from + 1)); }
1493 // values for second parameter of CompareTo function
c801d85f 1494 enum caseCompare {exact, ignoreCase};
3c67202d 1495 // values for first parameter of Strip function
c801d85f 1496 enum stripType {leading = 0x1, trailing = 0x2, both = 0x3};
8870c26e 1497
c9f78968 1498#ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
7357f981
GD
1499 // use Printf()
1500 // (take 'this' into account in attribute parameter count)
c9f78968
VS
1501 // int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
1502 WX_DEFINE_VARARG_FUNC(int, sprintf, DoPrintf)
1503#endif // wxNEEDS_WXSTRING_PRINTF_MIXIN
c801d85f 1504
3c67202d 1505 // use Cmp()
2bb67b80 1506 inline int CompareTo(const wxChar* psz, caseCompare cmp = exact) const
6b95b20d 1507 { return cmp == exact ? Cmp(psz) : CmpNoCase(psz); }
c801d85f 1508
3c67202d 1509 // use Len
e87b7833 1510 size_t Length() const { return length(); }
3c67202d 1511 // Count the number of characters
c9f78968 1512 int Freq(wxUniChar ch) const;
3c67202d 1513 // use MakeLower
c801d85f 1514 void LowerCase() { MakeLower(); }
3c67202d 1515 // use MakeUpper
c801d85f 1516 void UpperCase() { MakeUpper(); }
3c67202d 1517 // use Trim except that it doesn't change this string
c801d85f
KB
1518 wxString Strip(stripType w = trailing) const;
1519
3c67202d 1520 // use Find (more general variants not yet supported)
2bb67b80 1521 size_t Index(const wxChar* psz) const { return Find(psz); }
c9f78968 1522 size_t Index(wxUniChar ch) const { return Find(ch); }
3c67202d 1523 // use Truncate
c801d85f 1524 wxString& Remove(size_t pos) { return Truncate(pos); }
e87b7833 1525 wxString& RemoveLast(size_t n = 1) { return Truncate(length() - n); }
c801d85f 1526
e87b7833
MB
1527 wxString& Remove(size_t nStart, size_t nLen)
1528 { return (wxString&)erase( nStart, nLen ); }
dd1eaa89 1529
3c67202d 1530 // use Find()
c9f78968
VS
1531 int First( const wxUniChar ch ) const { return Find(ch); }
1532 int First( char ch ) const { return Find(ch); }
1533 int First( wchar_t ch ) const { return Find(ch); }
2bb67b80 1534 int First( const wxChar* psz ) const { return Find(psz); }
3ed358cb 1535 int First( const wxString &str ) const { return Find(str); }
c9f78968 1536 int Last( const wxUniChar ch ) const { return Find(ch, true); }
d775fa82 1537 bool Contains(const wxString& str) const { return Find(str) != wxNOT_FOUND; }
c801d85f 1538
5a8231ef
WS
1539 // use empty()
1540 bool IsNull() const { return empty(); }
c801d85f 1541
3c67202d 1542 // std::string compatibility functions
dd1eaa89 1543
3c67202d
VZ
1544 // take nLen chars starting at nPos
1545 wxString(const wxString& str, size_t nPos, size_t nLen)
e87b7833 1546 : wxStringBase(str, nPos, nLen) { }
3c67202d 1547 // take all characters from pStart to pEnd
e87b7833 1548 wxString(const void *pStart, const void *pEnd)
6e94fff9 1549 : wxStringBase((const wxChar*)pStart, (const wxChar*)pEnd) { }
e87b7833
MB
1550 wxString(const_iterator first, const_iterator last)
1551 : wxStringBase(first, last) { }
c9f78968
VS
1552 wxString(iterator first, iterator last)
1553 : wxStringBase(first, last) { }
5460b9e3 1554
3c67202d 1555 // lib.string.modifiers
3c67202d
VZ
1556 // append elements str[pos], ..., str[pos+n]
1557 wxString& append(const wxString& str, size_t pos, size_t n)
e87b7833
MB
1558 { return (wxString&)wxStringBase::append(str, pos, n); }
1559 // append a string
1560 wxString& append(const wxString& str)
1561 { return (wxString&)wxStringBase::append(str); }
c9f78968
VS
1562 wxString& append(const wxCStrData& str)
1563 { return (wxString&)wxStringBase::append(str.AsString()); }
3c67202d 1564 // append first n (or all if n == npos) characters of sz
e87b7833
MB
1565 wxString& append(const wxChar *sz)
1566 { return (wxString&)wxStringBase::append(sz); }
1567 wxString& append(const wxChar *sz, size_t n)
1568 { return (wxString&)wxStringBase::append(sz, n); }
3c67202d 1569 // append n copies of ch
c9f78968 1570 wxString& append(size_t n, wxUniChar ch)
e87b7833
MB
1571 { return (wxString&)wxStringBase::append(n, ch); }
1572 // append from first to last
1573 wxString& append(const_iterator first, const_iterator last)
1574 { return (wxString&)wxStringBase::append(first, last); }
3c67202d
VZ
1575
1576 // same as `this_string = str'
735d1db6 1577 wxString& assign(const wxString& str)
e87b7833 1578 { return (wxString&)wxStringBase::assign(str); }
3c67202d
VZ
1579 // same as ` = str[pos..pos + n]
1580 wxString& assign(const wxString& str, size_t pos, size_t n)
e87b7833 1581 { return (wxString&)wxStringBase::assign(str, pos, n); }
3c67202d 1582 // same as `= first n (or all if n == npos) characters of sz'
e87b7833
MB
1583 wxString& assign(const wxChar *sz)
1584 { return (wxString&)wxStringBase::assign(sz); }
1585 wxString& assign(const wxChar *sz, size_t n)
1586 { return (wxString&)wxStringBase::assign(sz, n); }
3c67202d 1587 // same as `= n copies of ch'
c9f78968 1588 wxString& assign(size_t n, wxUniChar ch)
e87b7833
MB
1589 { return (wxString&)wxStringBase::assign(n, ch); }
1590 // assign from first to last
1591 wxString& assign(const_iterator first, const_iterator last)
1592 { return (wxString&)wxStringBase::assign(first, last); }
1593
1594 // string comparison
963ad140 1595#if !defined(HAVE_STD_STRING_COMPARE)
e87b7833
MB
1596 int compare(const wxStringBase& str) const;
1597 // comparison with a substring
1598 int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
1599 // comparison of 2 substrings
1600 int compare(size_t nStart, size_t nLen,
1601 const wxStringBase& str, size_t nStart2, size_t nLen2) const;
1602 // just like strcmp()
1603 int compare(const wxChar* sz) const;
1604 // substring comparison with first nCount characters of sz
1605 int compare(size_t nStart, size_t nLen,
1606 const wxChar* sz, size_t nCount = npos) const;
1607#endif // !defined HAVE_STD_STRING_COMPARE
3c67202d
VZ
1608
1609 // insert another string
e87b7833
MB
1610 wxString& insert(size_t nPos, const wxString& str)
1611 { return (wxString&)wxStringBase::insert(nPos, str); }
3c67202d
VZ
1612 // insert n chars of str starting at nStart (in str)
1613 wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n)
e87b7833 1614 { return (wxString&)wxStringBase::insert(nPos, str, nStart, n); }
3c67202d 1615 // insert first n (or all if n == npos) characters of sz
e87b7833
MB
1616 wxString& insert(size_t nPos, const wxChar *sz)
1617 { return (wxString&)wxStringBase::insert(nPos, sz); }
1618 wxString& insert(size_t nPos, const wxChar *sz, size_t n)
1619 { return (wxString&)wxStringBase::insert(nPos, sz, n); }
3c67202d 1620 // insert n copies of ch
c9f78968 1621 wxString& insert(size_t nPos, size_t n, wxUniChar ch)
e87b7833 1622 { return (wxString&)wxStringBase::insert(nPos, n, ch); }
c9f78968 1623 iterator insert(iterator it, wxUniChar ch)
1c2d1459 1624 { return wxStringBase::insert(it, ch); }
e87b7833
MB
1625 void insert(iterator it, const_iterator first, const_iterator last)
1626 { wxStringBase::insert(it, first, last); }
c9f78968 1627 void insert(iterator it, size_type n, wxUniChar ch)
e87b7833 1628 { wxStringBase::insert(it, n, ch); }
3c67202d
VZ
1629
1630 // delete characters from nStart to nStart + nLen
e87b7833
MB
1631 wxString& erase(size_type pos = 0, size_type n = npos)
1632 { return (wxString&)wxStringBase::erase(pos, n); }
1633 iterator erase(iterator first, iterator last)
1634 { return wxStringBase::erase(first, last); }
1635 iterator erase(iterator first)
1636 { return wxStringBase::erase(first); }
1637
1638#ifdef wxSTRING_BASE_HASNT_CLEAR
1639 void clear() { erase(); }
1640#endif
3c67202d
VZ
1641
1642 // replaces the substring of length nLen starting at nStart
e87b7833
MB
1643 wxString& replace(size_t nStart, size_t nLen, const wxChar* sz)
1644 { return (wxString&)wxStringBase::replace(nStart, nLen, sz); }
1645 // replaces the substring of length nLen starting at nStart
1646 wxString& replace(size_t nStart, size_t nLen, const wxString& str)
1647 { return (wxString&)wxStringBase::replace(nStart, nLen, str); }
3c67202d 1648 // replaces the substring with nCount copies of ch
c9f78968 1649 wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxUniChar ch)
e87b7833 1650 { return (wxString&)wxStringBase::replace(nStart, nLen, nCount, ch); }
3c67202d
VZ
1651 // replaces a substring with another substring
1652 wxString& replace(size_t nStart, size_t nLen,
e87b7833
MB
1653 const wxString& str, size_t nStart2, size_t nLen2)
1654 { return (wxString&)wxStringBase::replace(nStart, nLen, str,
1655 nStart2, nLen2); }
1656 // replaces the substring with first nCount chars of sz
fb20fa43 1657 wxString& replace(size_t nStart, size_t nLen,
e87b7833
MB
1658 const wxChar* sz, size_t nCount)
1659 { return (wxString&)wxStringBase::replace(nStart, nLen, sz, nCount); }
1660 wxString& replace(iterator first, iterator last, const_pointer s)
1661 { return (wxString&)wxStringBase::replace(first, last, s); }
1662 wxString& replace(iterator first, iterator last, const_pointer s,
1663 size_type n)
1664 { return (wxString&)wxStringBase::replace(first, last, s, n); }
1665 wxString& replace(iterator first, iterator last, const wxString& s)
1666 { return (wxString&)wxStringBase::replace(first, last, s); }
c9f78968 1667 wxString& replace(iterator first, iterator last, size_type n, wxUniChar c)
e87b7833
MB
1668 { return (wxString&)wxStringBase::replace(first, last, n, c); }
1669 wxString& replace(iterator first, iterator last,
1670 const_iterator first1, const_iterator last1)
1671 { return (wxString&)wxStringBase::replace(first, last, first1, last1); }
3c67202d 1672
e87b7833
MB
1673 // string += string
1674 wxString& operator+=(const wxString& s)
1675 { return (wxString&)wxStringBase::operator+=(s); }
1676 // string += C string
1677 wxString& operator+=(const wxChar *psz)
1678 { return (wxString&)wxStringBase::operator+=(psz); }
c9f78968
VS
1679 wxString& operator+=(const wxCStrData& s)
1680 { return (wxString&)wxStringBase::operator+=(s.AsString()); }
e87b7833 1681 // string += char
c9f78968 1682 wxString& operator+=(wxUniChar ch)
e87b7833 1683 { return (wxString&)wxStringBase::operator+=(ch); }
c9f78968
VS
1684 wxString& operator+=(wxUniCharRef ch) { return *this += wxUniChar(ch); }
1685 wxString& operator+=(char ch) { return *this += wxUniChar(ch); }
b77afb41 1686 wxString& operator+=(unsigned char ch) { return *this += wxUniChar(ch); }
c9f78968 1687 wxString& operator+=(wchar_t ch) { return *this += wxUniChar(ch); }
d8a4b666
VS
1688
1689private:
992527a5 1690#if !wxUSE_STL_BASED_WXSTRING
d8a4b666
VS
1691 // helpers for wxStringBuffer and wxStringBufferLength
1692 wxChar *DoGetWriteBuf(size_t nLen);
1693 void DoUngetWriteBuf();
1694 void DoUngetWriteBuf(size_t nLen);
1695
1696 friend class WXDLLIMPEXP_BASE wxStringBuffer;
1697 friend class WXDLLIMPEXP_BASE wxStringBufferLength;
1698#endif
c9f78968
VS
1699
1700#ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN
1701 int DoPrintf(const wxChar *format, ...) ATTRIBUTE_PRINTF_2;
1702 static wxString DoFormat(const wxChar *format, ...) ATTRIBUTE_PRINTF_1;
1703#endif
c801d85f
KB
1704};
1705
c9f78968
VS
1706#ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1707 #pragma warning (default:4275)
1708#endif
1709
1fc8cfbd
VZ
1710// notice that even though for many compilers the friend declarations above are
1711// enough, from the point of view of C++ standard we must have the declarations
1712// here as friend ones are not injected in the enclosing namespace and without
1713// them the code fails to compile with conforming compilers such as xlC or g++4
c9f78968 1714wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, const wxString& string2);
b7146cbe
VZ
1715wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const wxChar *psz);
1716wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz, const wxString& string);
1fc8cfbd 1717
c9f78968
VS
1718wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxUniChar ch);
1719wxString WXDLLIMPEXP_BASE operator+(wxUniChar ch, const wxString& string);
1720
1721inline wxString operator+(const wxString& string, wxUniCharRef ch)
1722 { return string + (wxUniChar)ch; }
1723inline wxString operator+(const wxString& string, char ch)
1724 { return string + wxUniChar(ch); }
1725inline wxString operator+(const wxString& string, wchar_t ch)
1726 { return string + wxUniChar(ch); }
1727inline wxString operator+(wxUniCharRef ch, const wxString& string)
1728 { return (wxUniChar)ch + string; }
1729inline wxString operator+(char ch, const wxString& string)
1730 { return wxUniChar(ch) + string; }
1731inline wxString operator+(wchar_t ch, const wxString& string)
1732 { return wxUniChar(ch) + string; }
1733
b7146cbe 1734
992527a5 1735#if wxUSE_STL_BASED_WXSTRING
07170120 1736 // return an empty wxString (not very useful with wxUSE_STL == 1)
12f99210 1737 inline const wxString wxGetEmptyString() { return wxString(); }
992527a5 1738#else // !wxUSE_STL_BASED_WXSTRING
07170120
VZ
1739 // return an empty wxString (more efficient than wxString() here)
1740 inline const wxString& wxGetEmptyString()
1741 {
1742 return *(wxString *)&wxEmptyString;
1743 }
992527a5 1744#endif // wxUSE_STL_BASED_WXSTRING/!wxUSE_STL_BASED_WXSTRING
07170120 1745
1d218550
VZ
1746// ----------------------------------------------------------------------------
1747// wxStringBuffer: a tiny class allowing to get a writable pointer into string
1748// ----------------------------------------------------------------------------
1749
992527a5 1750#if wxUSE_STL_BASED_WXSTRING
941b78cc
MB
1751
1752class WXDLLIMPEXP_BASE wxStringBuffer
1753{
1754public:
1755 wxStringBuffer(wxString& str, size_t lenWanted = 1024)
e87b7833 1756 : m_str(str), m_buf(lenWanted)
941b78cc
MB
1757 { }
1758
fe5fc682 1759 ~wxStringBuffer() { m_str.assign(m_buf.data(), wxStrlen(m_buf.data())); }
941b78cc
MB
1760
1761 operator wxChar*() { return m_buf.data(); }
1762
1763private:
1764 wxString& m_str;
1765#if wxUSE_UNICODE
1766 wxWCharBuffer m_buf;
1767#else
1768 wxCharBuffer m_buf;
1769#endif
941b78cc
MB
1770
1771 DECLARE_NO_COPY_CLASS(wxStringBuffer)
1772};
1773
1774class WXDLLIMPEXP_BASE wxStringBufferLength
1775{
1776public:
1777 wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
1778 : m_str(str), m_buf(lenWanted), m_len(0), m_lenSet(false)
1779 { }
1780
1781 ~wxStringBufferLength()
1782 {
1783 wxASSERT(m_lenSet);
1784 m_str.assign(m_buf.data(), m_len);
1785 }
1786
1787 operator wxChar*() { return m_buf.data(); }
1788 void SetLength(size_t length) { m_len = length; m_lenSet = true; }
1789
1790private:
1791 wxString& m_str;
1792#if wxUSE_UNICODE
1793 wxWCharBuffer m_buf;
1794#else
1795 wxCharBuffer m_buf;
1796#endif
1797 size_t m_len;
1798 bool m_lenSet;
1799
1800 DECLARE_NO_COPY_CLASS(wxStringBufferLength)
1801};
1802
992527a5 1803#else // if !wxUSE_STL_BASED_WXSTRING
941b78cc 1804
bddd7a8d 1805class WXDLLIMPEXP_BASE wxStringBuffer
1d218550
VZ
1806{
1807public:
1808 wxStringBuffer(wxString& str, size_t lenWanted = 1024)
b1801e0e 1809 : m_str(str), m_buf(NULL)
d8a4b666 1810 { m_buf = m_str.DoGetWriteBuf(lenWanted); }
e015c2a3 1811
d8a4b666 1812 ~wxStringBuffer() { m_str.DoUngetWriteBuf(); }
e015c2a3 1813
1d218550 1814 operator wxChar*() const { return m_buf; }
e015c2a3 1815
1d218550
VZ
1816private:
1817 wxString& m_str;
1818 wxChar *m_buf;
e015c2a3
VZ
1819
1820 DECLARE_NO_COPY_CLASS(wxStringBuffer)
1d218550
VZ
1821};
1822
941b78cc
MB
1823class WXDLLIMPEXP_BASE wxStringBufferLength
1824{
1825public:
1826 wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
1827 : m_str(str), m_buf(NULL), m_len(0), m_lenSet(false)
4055ed82 1828 {
d8a4b666 1829 m_buf = m_str.DoGetWriteBuf(lenWanted);
494b978f
RN
1830 wxASSERT(m_buf != NULL);
1831 }
941b78cc
MB
1832
1833 ~wxStringBufferLength()
1834 {
1835 wxASSERT(m_lenSet);
d8a4b666 1836 m_str.DoUngetWriteBuf(m_len);
941b78cc
MB
1837 }
1838
1839 operator wxChar*() const { return m_buf; }
1840 void SetLength(size_t length) { m_len = length; m_lenSet = true; }
1841
1842private:
1843 wxString& m_str;
1844 wxChar *m_buf;
1845 size_t m_len;
1846 bool m_lenSet;
1847
1848 DECLARE_NO_COPY_CLASS(wxStringBufferLength)
1849};
1850
992527a5 1851#endif // !wxUSE_STL_BASED_WXSTRING
941b78cc 1852
c801d85f 1853// ---------------------------------------------------------------------------
3c67202d 1854// wxString comparison functions: operator versions are always case sensitive
c801d85f 1855// ---------------------------------------------------------------------------
f33fee2a 1856
992527a5
VS
1857// note that when wxUSE_STL_BASED_WXSTRING == 1 the comparison operators taking
1858// std::string are used and defining them also for wxString would only result
1859// in compilation ambiguities when comparing std::string and wxString
1860#if !wxUSE_STL_BASED_WXSTRING
e87b7833 1861
0cbe5ee3
VZ
1862inline bool operator==(const wxString& s1, const wxString& s2)
1863 { return (s1.Len() == s2.Len()) && (s1.Cmp(s2) == 0); }
1864inline bool operator==(const wxString& s1, const wxChar * s2)
1865 { return s1.Cmp(s2) == 0; }
1866inline bool operator==(const wxChar * s1, const wxString& s2)
1867 { return s2.Cmp(s1) == 0; }
1868inline bool operator!=(const wxString& s1, const wxString& s2)
1869 { return (s1.Len() != s2.Len()) || (s1.Cmp(s2) != 0); }
1870inline bool operator!=(const wxString& s1, const wxChar * s2)
1871 { return s1.Cmp(s2) != 0; }
1872inline bool operator!=(const wxChar * s1, const wxString& s2)
1873 { return s2.Cmp(s1) != 0; }
1874inline bool operator< (const wxString& s1, const wxString& s2)
1875 { return s1.Cmp(s2) < 0; }
1876inline bool operator< (const wxString& s1, const wxChar * s2)
1877 { return s1.Cmp(s2) < 0; }
1878inline bool operator< (const wxChar * s1, const wxString& s2)
1879 { return s2.Cmp(s1) > 0; }
1880inline bool operator> (const wxString& s1, const wxString& s2)
1881 { return s1.Cmp(s2) > 0; }
1882inline bool operator> (const wxString& s1, const wxChar * s2)
1883 { return s1.Cmp(s2) > 0; }
1884inline bool operator> (const wxChar * s1, const wxString& s2)
1885 { return s2.Cmp(s1) < 0; }
1886inline bool operator<=(const wxString& s1, const wxString& s2)
1887 { return s1.Cmp(s2) <= 0; }
1888inline bool operator<=(const wxString& s1, const wxChar * s2)
1889 { return s1.Cmp(s2) <= 0; }
1890inline bool operator<=(const wxChar * s1, const wxString& s2)
1891 { return s2.Cmp(s1) >= 0; }
1892inline bool operator>=(const wxString& s1, const wxString& s2)
1893 { return s1.Cmp(s2) >= 0; }
1894inline bool operator>=(const wxString& s1, const wxChar * s2)
1895 { return s1.Cmp(s2) >= 0; }
1896inline bool operator>=(const wxChar * s1, const wxString& s2)
1897 { return s2.Cmp(s1) <= 0; }
3c67202d 1898
5ca07d0f
OK
1899#if wxUSE_UNICODE
1900inline bool operator==(const wxString& s1, const wxWCharBuffer& s2)
f33fee2a 1901 { return (s1.Cmp((const wchar_t *)s2) == 0); }
5ca07d0f 1902inline bool operator==(const wxWCharBuffer& s1, const wxString& s2)
f33fee2a 1903 { return (s2.Cmp((const wchar_t *)s1) == 0); }
f6bcfd97
BP
1904inline bool operator!=(const wxString& s1, const wxWCharBuffer& s2)
1905 { return (s1.Cmp((const wchar_t *)s2) != 0); }
1906inline bool operator!=(const wxWCharBuffer& s1, const wxString& s2)
1907 { return (s2.Cmp((const wchar_t *)s1) != 0); }
0cbe5ee3 1908#else // !wxUSE_UNICODE
5ca07d0f 1909inline bool operator==(const wxString& s1, const wxCharBuffer& s2)
f33fee2a 1910 { return (s1.Cmp((const char *)s2) == 0); }
5ca07d0f 1911inline bool operator==(const wxCharBuffer& s1, const wxString& s2)
f33fee2a 1912 { return (s2.Cmp((const char *)s1) == 0); }
f6bcfd97
BP
1913inline bool operator!=(const wxString& s1, const wxCharBuffer& s2)
1914 { return (s1.Cmp((const char *)s2) != 0); }
1915inline bool operator!=(const wxCharBuffer& s1, const wxString& s2)
1916 { return (s2.Cmp((const char *)s1) != 0); }
0cbe5ee3 1917#endif // wxUSE_UNICODE/!wxUSE_UNICODE
5ca07d0f 1918
028a2b5d 1919#if wxUSE_UNICODE
6d56eb5c 1920inline wxString operator+(const wxString& string, const wxWCharBuffer& buf)
e90c1d2a 1921 { return string + (const wchar_t *)buf; }
6d56eb5c 1922inline wxString operator+(const wxWCharBuffer& buf, const wxString& string)
e90c1d2a 1923 { return (const wchar_t *)buf + string; }
0cbe5ee3 1924#else // !wxUSE_UNICODE
6d56eb5c 1925inline wxString operator+(const wxString& string, const wxCharBuffer& buf)
e90c1d2a 1926 { return string + (const char *)buf; }
6d56eb5c 1927inline wxString operator+(const wxCharBuffer& buf, const wxString& string)
e90c1d2a 1928 { return (const char *)buf + string; }
0cbe5ee3 1929#endif // wxUSE_UNICODE/!wxUSE_UNICODE
f04f3991 1930
992527a5 1931#endif // !wxUSE_STL_BASED_WXSTRING
e51b17a1
VZ
1932
1933// comparison with char (those are not defined by std::[w]string and so should
1934// be always available)
c9f78968
VS
1935inline bool operator==(const wxUniChar& c, const wxString& s) { return s.IsSameAs(c); }
1936inline bool operator==(const wxUniCharRef& c, const wxString& s) { return s.IsSameAs(c); }
1937inline bool operator==(char c, const wxString& s) { return s.IsSameAs(c); }
1938inline bool operator==(wchar_t c, const wxString& s) { return s.IsSameAs(c); }
1939inline bool operator==(int c, const wxString& s) { return s.IsSameAs(c); }
1940inline bool operator==(const wxString& s, const wxUniChar& c) { return s.IsSameAs(c); }
1941inline bool operator==(const wxString& s, const wxUniCharRef& c) { return s.IsSameAs(c); }
1942inline bool operator==(const wxString& s, char c) { return s.IsSameAs(c); }
1943inline bool operator==(const wxString& s, wchar_t c) { return s.IsSameAs(c); }
1944inline bool operator!=(const wxUniChar& c, const wxString& s) { return !s.IsSameAs(c); }
1945inline bool operator!=(const wxUniCharRef& c, const wxString& s) { return !s.IsSameAs(c); }
1946inline bool operator!=(char c, const wxString& s) { return !s.IsSameAs(c); }
1947inline bool operator!=(wchar_t c, const wxString& s) { return !s.IsSameAs(c); }
1948inline bool operator!=(int c, const wxString& s) { return !s.IsSameAs(c); }
1949inline bool operator!=(const wxString& s, const wxUniChar& c) { return !s.IsSameAs(c); }
1950inline bool operator!=(const wxString& s, const wxUniCharRef& c) { return !s.IsSameAs(c); }
1951inline bool operator!=(const wxString& s, char c) { return !s.IsSameAs(c); }
1952inline bool operator!=(const wxString& s, wchar_t c) { return !s.IsSameAs(c); }
e51b17a1 1953
d7330233
VS
1954// comparison with C string in Unicode build
1955#if wxUSE_UNICODE
1956inline bool operator==(const wxString& s1, const char* s2)
1957 { return s1 == wxString(s2); }
1958inline bool operator==(const char* s1, const wxString& s2)
1959 { return wxString(s1) == s2; }
1960inline bool operator!=(const wxString& s1, const char* s2)
1961 { return s1 != wxString(s2); }
1962inline bool operator!=(const char* s1, const wxString& s2)
1963 { return wxString(s1) != s2; }
1964inline bool operator< (const wxString& s1, const char* s2)
1965 { return s1 < wxString(s2); }
1966inline bool operator< (const char* s1, const wxString& s2)
1967 { return wxString(s1) < s2; }
1968inline bool operator> (const wxString& s1, const char* s2)
1969 { return s1 > wxString(s2); }
1970inline bool operator> (const char* s1, const wxString& s2)
1971 { return wxString(s1) > s2; }
1972inline bool operator<=(const wxString& s1, const char* s2)
1973 { return s1 <= wxString(s2); }
1974inline bool operator<=(const char* s1, const wxString& s2)
1975 { return wxString(s1) <= s2; }
1976inline bool operator>=(const wxString& s1, const char* s2)
1977 { return s1 >= wxString(s2); }
1978inline bool operator>=(const char* s1, const wxString& s2)
1979 { return wxString(s1) >= s2; }
1980#endif // wxUSE_UNICODE
1981
c801d85f 1982// ---------------------------------------------------------------------------
3c67202d 1983// Implementation only from here until the end of file
c801d85f
KB
1984// ---------------------------------------------------------------------------
1985
e90c1d2a 1986// don't pollute the library user's name space
5737d05f 1987#undef wxASSERT_VALID_INDEX
e90c1d2a 1988
e87b7833 1989#if wxUSE_STD_IOSTREAM
c801d85f 1990
65f19af1 1991#include "wx/iosfwrap.h"
c801d85f 1992
bddd7a8d 1993WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxString&);
c9f78968 1994WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxCStrData&);
c801d85f 1995
3c67202d 1996#endif // wxSTD_STRING_COMPATIBILITY
c801d85f 1997
c9f78968
VS
1998// ---------------------------------------------------------------------------
1999// wxCStrData implementation
2000// ---------------------------------------------------------------------------
2001
2002inline wxCStrData::wxCStrData(char *buf)
2003 : m_str(new wxString(buf)), m_offset(0), m_owned(true) {}
2004inline wxCStrData::wxCStrData(wchar_t *buf)
2005 : m_str(new wxString(buf)), m_offset(0), m_owned(true) {}
2006
2007inline wxCStrData::~wxCStrData()
2008{
2009 if ( m_owned )
2010 delete m_str;
2011}
2012
2013#if wxUSE_UNICODE
2014inline const wchar_t* wxCStrData::AsWChar() const
2015#else
2016inline const char* wxCStrData::AsChar() const
2017#endif
2018{
2019 if ( m_offset == 0 )
2020 return m_str->wx_str(); // FIXME
2021 else
2022 return (const wxChar*)(m_str->begin() + m_offset);
2023}
2024
2025inline wxString wxCStrData::AsString() const
2026{
2027 if ( m_offset == 0 )
2028 return *m_str;
2029 else
2030 return m_str->Mid(m_offset);
2031}
2032
2033inline wxCStrData::operator wxString() const { return AsString(); }
2034
2035inline wxUniChar wxCStrData::operator*() const
2036{
2037 if ( m_str->empty() )
2038 return wxUniChar(_T('\0'));
2039 else
2040 return (*m_str)[m_offset];
2041}
2042
2043inline wxUniChar wxCStrData::operator[](size_t n) const
2044{
2045 return m_str->at(m_offset + n);
2046}
2047
c8eb8172
VZ
2048// ----------------------------------------------------------------------------
2049// implementation of wxString inline methods using wxCStrData
2050// ----------------------------------------------------------------------------
2051
2052inline wxString& wxString::operator=(const wxCStrData& cstr)
2053{
2054 return *this = cstr.AsString();
2055}
2056
414b7b40
VZ
2057// ----------------------------------------------------------------------------
2058// implementation of wx[W]CharBuffer inline methods using wxCStrData
2059// ----------------------------------------------------------------------------
2060
2061#if wxUSE_UNICODE
2062
2063inline wxWCharBuffer::wxWCharBuffer(const wxCStrData& cstr)
2064 : m_str(wxStrdupW(cstr))
2065{
2066}
2067
2068#else // !wxUSE_UNICODE
2069
2070inline wxCharBuffer::wxCharBuffer(const wxCStrData& cstr)
2071 : m_str(wxStrdupA(cstr))
2072{
2073}
2074
2075#endif // wxUSE_UNICODE/!wxUSE_UNICODE
2076
34138703 2077#endif // _WX_WXSTRINGH__