]> git.saurik.com Git - wxWidgets.git/blame - include/wx/string.h
Applied FreeBSD patch
[wxWidgets.git] / include / wx / string.h
CommitLineData
3c67202d 1///////////////////////////////////////////////////////////////////////////////
c801d85f 2// Name: 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>
dd1eaa89 9// Licence: wxWindows license
3c67202d 10///////////////////////////////////////////////////////////////////////////////
c801d85f 11
34138703
JS
12#ifndef _WX_WXSTRINGH__
13#define _WX_WXSTRINGH__
c801d85f
KB
14
15#ifdef __GNUG__
0d3820b3 16#pragma interface "string.h"
c801d85f
KB
17#endif
18
17dff81c 19#ifdef __WXMAC__
3f4a0c5b 20 #include <ctype.h>
17dff81c 21#endif
3f4a0c5b 22
c801d85f
KB
23#include <string.h>
24#include <stdio.h>
25#include <stdarg.h>
26#include <limits.h>
dd1eaa89 27#include <stdlib.h>
c801d85f 28
57493f9f 29#ifdef HAVE_STRINGS_H
1bfcb0b6
VZ
30 #include <strings.h> // for strcasecmp()
31#endif // AIX
32
8fd0f20b 33#ifndef WX_PRECOMP
3f4a0c5b
VZ
34 #include "wx/defs.h"
35
dd1eaa89
VZ
36 #ifdef WXSTRING_IS_WXOBJECT
37 #include "wx/object.h"
38 #endif
3f4a0c5b 39#endif // !PCH
8fd0f20b 40
c801d85f 41#include "wx/debug.h"
2bb67b80
OK
42#include "wx/wxchar.h"
43#include "wx/buffer.h"
c801d85f 44
3c67202d
VZ
45/*
46 Efficient string class [more or less] compatible with MFC CString,
47 wxWindows version 1 wxString and std::string and some handy functions
48 missing from string.h.
49*/
c801d85f
KB
50
51// ---------------------------------------------------------------------------
52// macros
53// ---------------------------------------------------------------------------
54
3c67202d
VZ
55// compile the std::string compatibility functions if defined
56#define wxSTD_STRING_COMPATIBILITY
c801d85f 57
3c67202d 58// define to derive wxString from wxObject
a3ef5bf5 59#ifdef WXSTRING_IS_WXOBJECT
c801d85f 60#undef WXSTRING_IS_WXOBJECT
a3ef5bf5 61#endif
c801d85f 62
3c67202d 63// maximum possible length for a string means "take all string" everywhere
c801d85f 64// (as sizeof(StringData) is unknown here we substract 100)
566b84d2 65const unsigned int wxSTRING_MAXLEN = UINT_MAX - 100;
c801d85f
KB
66
67// 'naughty' cast
2bb67b80 68#define WXSTRINGCAST (wxChar *)(const wxChar *)
6f841509 69#define WXCSTRINGCAST (wxChar *)(const wxChar *)
2bb67b80
OK
70#define MBSTRINGCAST (char *)(const char *)
71#define WCSTRINGCAST (wchar_t *)(const wchar_t *)
c801d85f 72
3c67202d 73// implementation only
b1269691 74#define ASSERT_VALID_INDEX(i) wxASSERT( (unsigned)(i) <= Len() )
c801d85f
KB
75
76// ---------------------------------------------------------------------------
3c67202d
VZ
77// Global functions complementing standard C string library replacements for
78// strlen() and portable strcasecmp()
79//---------------------------------------------------------------------------
2bb67b80 80// USE wx* FUNCTIONS IN wx/wxchar.h INSTEAD - THIS IS ONLY FOR BINARY COMPATIBILITY
88150e60 81
3c67202d 82// checks whether the passed in pointer is NULL and if the string is empty
dbda9e86 83inline bool WXDLLEXPORT IsEmpty(const char *p) { return (!p || !*p); }
c801d85f 84
3c67202d
VZ
85// safe version of strlen() (returns 0 if passed NULL pointer)
86inline size_t WXDLLEXPORT Strlen(const char *psz)
c801d85f
KB
87 { return psz ? strlen(psz) : 0; }
88
3c67202d 89// portable strcasecmp/_stricmp
dd1eaa89
VZ
90inline int WXDLLEXPORT Stricmp(const char *psz1, const char *psz2)
91{
8be97d65 92#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
dd1eaa89 93 return _stricmp(psz1, psz2);
2432b92d
JS
94#elif defined(__SC__)
95 return _stricmp(psz1, psz2);
a3ef5bf5
JS
96#elif defined(__SALFORDC__)
97 return stricmp(psz1, psz2);
dd1eaa89
VZ
98#elif defined(__BORLANDC__)
99 return stricmp(psz1, psz2);
7be1f0d9
JS
100#elif defined(__WATCOMC__)
101 return stricmp(psz1, psz2);
d4b67f95 102#elif defined(__UNIX__) || defined(__GNUWIN32__)
dd1eaa89 103 return strcasecmp(psz1, psz2);
8be97d65 104#elif defined(__MWERKS__) && !defined(__INTEL__)
17dff81c
SC
105 register char c1, c2;
106 do {
107 c1 = tolower(*psz1++);
108 c2 = tolower(*psz2++);
109 } while ( c1 && (c1 == c2) );
110
111 return c1 - c2;
dd1eaa89
VZ
112#else
113 // almost all compilers/libraries provide this function (unfortunately under
114 // different names), that's why we don't implement our own which will surely
115 // be more efficient than this code (uncomment to use):
116 /*
117 register char c1, c2;
118 do {
119 c1 = tolower(*psz1++);
120 c2 = tolower(*psz2++);
121 } while ( c1 && (c1 == c2) );
122
123 return c1 - c2;
124 */
125
126 #error "Please define string case-insensitive compare for your OS/compiler"
127#endif // OS/compiler
128}
c801d85f 129
f04f3991
VZ
130// ----------------------------------------------------------------------------
131// global data
132// ----------------------------------------------------------------------------
133
2bb67b80 134WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
3c67202d 135
f04f3991 136// global pointer to empty string
2bb67b80 137WXDLLEXPORT_DATA(extern const wxChar*) g_szNul;
f04f3991
VZ
138
139// return an empty wxString
f7bd2698 140class WXDLLEXPORT wxString; // not yet defined
f04f3991
VZ
141inline const wxString& wxGetEmptyString() { return *(wxString *)&g_szNul; }
142
c801d85f 143// ---------------------------------------------------------------------------
f04f3991 144// string data prepended with some housekeeping info (used by wxString class),
c801d85f
KB
145// is never used directly (but had to be put here to allow inlining)
146// ---------------------------------------------------------------------------
147struct WXDLLEXPORT wxStringData
148{
149 int nRefs; // reference count
3c024cc2 150 size_t nDataLength, // actual string length
c801d85f
KB
151 nAllocLength; // allocated memory size
152
2bb67b80
OK
153 // mimics declaration 'wxChar data[nAllocLength]'
154 wxChar* data() const { return (wxChar*)(this + 1); }
c801d85f
KB
155
156 // empty string has a special ref count so it's never deleted
dbda9e86
JS
157 bool IsEmpty() const { return (nRefs == -1); }
158 bool IsShared() const { return (nRefs > 1); }
c801d85f
KB
159
160 // lock/unlock
dd1eaa89
VZ
161 void Lock() { if ( !IsEmpty() ) nRefs++; }
162 void Unlock() { if ( !IsEmpty() && --nRefs == 0) free(this); }
8fd0f20b 163
dd1eaa89 164 // if we had taken control over string memory (GetWriteBuf), it's
8fd0f20b 165 // intentionally put in invalid state
dbda9e86
JS
166 void Validate(bool b) { nRefs = (b ? 1 : 0); }
167 bool IsValid() const { return (nRefs != 0); }
c801d85f
KB
168};
169
2bb67b80
OK
170// ---------------------------------------------------------------------------
171// types of multibyte<->Unicode conversions
172// ---------------------------------------------------------------------------
6f841509 173#if wxUSE_WCHAR_T
2bb67b80
OK
174class WXDLLEXPORT wxMBConv
175{
176 public:
177 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const;
178 virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const;
179 const wxWCharBuffer cMB2WC(const char *psz) const
180 {
d9e89b15
OK
181 if (psz) {
182 size_t nLen = MB2WC((wchar_t *) NULL, psz, 0);
183 wxWCharBuffer buf(nLen);
184 MB2WC(WCSTRINGCAST buf, psz, nLen);
185 return buf;
186 } else return wxWCharBuffer((wchar_t *) NULL);
2bb67b80
OK
187 }
188 const wxCharBuffer cWC2MB(const wchar_t *psz) const
189 {
d9e89b15
OK
190 if (psz) {
191 size_t nLen = WC2MB((char *) NULL, psz, 0);
192 wxCharBuffer buf(nLen);
193 WC2MB(MBSTRINGCAST buf, psz, nLen);
194 return buf;
195 } else return wxCharBuffer((char *) NULL);
2bb67b80
OK
196 }
197#if wxUSE_UNICODE
198 const wxWCharBuffer cMB2WX(const char *psz) const { return cMB2WC(psz); }
199 const wxCharBuffer cWX2MB(const wchar_t *psz) const { return cWC2MB(psz); }
200 const wchar_t* cWC2WX(const wchar_t *psz) const { return psz; }
201 const wchar_t* cMB2WC(const wchar_t *psz) const { return psz; }
202#else
203 const char* cMB2WX(const char *psz) const { return psz; }
204 const char* cWX2MB(const char *psz) const { return psz; }
205 const wxCharBuffer cWC2WX(const wchar_t *psz) const { return cWC2MB(psz); }
206 const wxWCharBuffer cWX2WC(const char *psz) const { return cMB2WC(psz); }
207#endif
208};
5f709e67
OK
209WXDLLEXPORT_DATA(extern wxMBConv) wxConvLibc;
210#define wxConv_libc wxConvLibc
2bb67b80 211
d41bba91
OK
212#define wxANOTHER_MBCONV(type) \
213class type : public wxMBConv { \
214 public: \
215 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const; \
216 virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const; \
217}
218
5f709e67
OK
219WXDLLEXPORT_DATA(extern wxANOTHER_MBCONV(wxMBConvFile)) wxConvFile;
220#define wxConv_file wxConvFile
221WXDLLEXPORT_DATA(extern wxANOTHER_MBCONV(wxMBConvUTF7)) wxConvUTF7;
222WXDLLEXPORT_DATA(extern wxANOTHER_MBCONV(wxMBConvUTF8)) wxConvUTF8;
223#define wxConv_UTF8 wxConvUTF8
e5ea3f7a 224#if defined(__WXGTK12__)
5f709e67
OK
225 WXDLLEXPORT_DATA(extern wxANOTHER_MBCONV(wxMBConvGdk)) wxConvGdk;
226 #define wxConv_gdk wxConvGdk
2f000c95 227#endif // GTK > 1.0
d41bba91 228
a69f7aa8 229class wxCharacterSet;
d41bba91 230class WXDLLEXPORT wxCSConv : public wxMBConv
2bb67b80
OK
231{
232 private:
a86f1d4a
OK
233 wxChar *m_name;
234 wxCharacterSet *m_cset;
235 bool m_deferred;
551df6f2 236 void SetName(const wxChar *charset);
2bb67b80
OK
237 public:
238 wxCSConv(const wxChar *charset);
a86f1d4a
OK
239 virtual ~wxCSConv();
240 void LoadNow();
4300d6cb
OK
241 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const;
242 virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const;
2bb67b80
OK
243};
244
5f709e67
OK
245WXDLLEXPORT_DATA(extern wxCSConv) wxConvLocal;
246#define wxConv_local wxConvLocal
a69f7aa8 247
5f709e67
OK
248WXDLLEXPORT_DATA(extern wxMBConv *) wxConvCurrent;
249#define wxConv_current wxConvCurrent
a69f7aa8 250
2bb67b80 251// filenames are multibyte on Unix and probably widechar on Windows?
111edd48 252#if defined(__UNIX__) || defined(__BORLANDC__)
2bb67b80
OK
253#define wxMBFILES 1
254#else
255#define wxMBFILES 0
256#endif
257
258#if wxMBFILES
5f709e67 259#define wxFNCONV(name) wxConvFile.cWX2MB(name)
2bb67b80
OK
260#define FNSTRINGCAST MBSTRINGCAST
261#else
262#define wxFNCONV(name) name
263#define FNSTRINGCAST WXSTRINGCAST
264#endif
6f841509 265#else//!wxUSE_WCHAR_T
a55268db
OK
266class WXDLLEXPORT wxMBConv {
267 const char* cMB2WX(const char *psz) const { return psz; }
268 const char* cWX2MB(const char *psz) const { return psz; }
269};
c50c1ddc
OK
270WXDLLEXPORT_DATA(extern wxMBConv) wxConvLibc, wxConvFile;
271#define wxConv_libc wxConvLibc
272#define wxConv_file wxConvFile
273WXDLLEXPORT_DATA(extern wxMBConv *) wxConvCurrent;
274#define wxConv_current wxConvCurrent
6776a0b2
JS
275#define wxFNCONV(name) name
276#define FNSTRINGCAST WXSTRINGCAST
6f841509 277#endif//wxUSE_WCHAR_T
2bb67b80 278
c801d85f 279// ---------------------------------------------------------------------------
3c67202d
VZ
280// This is (yet another one) String class for C++ programmers. It doesn't use
281// any of "advanced" C++ features (i.e. templates, exceptions, namespaces...)
282// thus you should be able to compile it with practicaly any C++ compiler.
283// This class uses copy-on-write technique, i.e. identical strings share the
284// same memory as long as neither of them is changed.
285//
286// This class aims to be as compatible as possible with the new standard
287// std::string class, but adds some additional functions and should be at
288// least as efficient than the standard implementation.
289//
290// Performance note: it's more efficient to write functions which take "const
291// String&" arguments than "const char *" if you assign the argument to
292// another string.
293//
294// It was compiled and tested under Win32, Linux (libc 5 & 6), Solaris 5.5.
295//
296// To do:
297// - ressource support (string tables in ressources)
298// - more wide character (UNICODE) support
299// - regular expressions support
c801d85f 300// ---------------------------------------------------------------------------
3c67202d 301
c801d85f 302#ifdef WXSTRING_IS_WXOBJECT
3c67202d
VZ
303class WXDLLEXPORT wxString : public wxObject
304{
c801d85f
KB
305 DECLARE_DYNAMIC_CLASS(wxString)
306#else //WXSTRING_IS_WXOBJECT
3c67202d
VZ
307class WXDLLEXPORT wxString
308{
c801d85f
KB
309#endif //WXSTRING_IS_WXOBJECT
310
fbcb4166 311friend class WXDLLEXPORT wxArrayString;
c801d85f 312
3c67202d
VZ
313 // NB: special care was taken in arranging the member functions in such order
314 // that all inline functions can be effectively inlined, verify that all
315 // performace critical functions are still inlined if you change order!
dd1eaa89
VZ
316private:
317 // points to data preceded by wxStringData structure with ref count info
2bb67b80 318 wxChar *m_pchData;
dd1eaa89
VZ
319
320 // accessor to string data
321 wxStringData* GetStringData() const { return (wxStringData*)m_pchData - 1; }
322
6b95b20d
VZ
323 // string (re)initialization functions
324 // initializes the string to the empty value (must be called only from
325 // ctors, use Reinit() otherwise)
2bb67b80 326 void Init() { m_pchData = (wxChar *)g_szNul; }
6b95b20d 327 // initializaes the string with (a part of) C-string
2bb67b80 328 void InitWith(const wxChar *psz, size_t nPos = 0, size_t nLen = wxSTRING_MAXLEN);
6b95b20d
VZ
329 // as Init, but also frees old data
330 void Reinit() { GetStringData()->Unlock(); Init(); }
331
332 // memory allocation
333 // allocates memory for string of lenght nLen
334 void AllocBuffer(size_t nLen);
335 // copies data to another string
336 void AllocCopy(wxString&, int, int) const;
337 // effectively copies data to string
2bb67b80 338 void AssignCopy(size_t, const wxChar *);
6b95b20d
VZ
339
340 // append a (sub)string
2bb67b80 341 void ConcatSelf(int nLen, const wxChar *src);
6b95b20d
VZ
342
343 // functions called before writing to the string: they copy it if there
344 // are other references to our data (should be the only owner when writing)
345 void CopyBeforeWrite();
346 void AllocBeforeWrite(size_t);
347
c606a9a4
VZ
348 // this method is not implemented - there is _no_ conversion from int to
349 // string, you're doing something wrong if the compiler wants to call it!
350 //
351 // try `s << i' or `s.Printf("%d", i)' instead
352 wxString(int);
353 wxString(long);
354
c801d85f 355public:
3c67202d
VZ
356 // constructors and destructor
357 // ctor for an empty string
6b95b20d 358 wxString() { Init(); }
3c67202d 359 // copy ctor
6b95b20d
VZ
360 wxString(const wxString& stringSrc)
361 {
362 wxASSERT( stringSrc.GetStringData()->IsValid() );
363
364 if ( stringSrc.IsEmpty() ) {
365 // nothing to do for an empty string
366 Init();
367 }
368 else {
369 m_pchData = stringSrc.m_pchData; // share same data
370 GetStringData()->Lock(); // => one more copy
371 }
372 }
3c67202d 373 // string containing nRepeat copies of ch
2bb67b80 374 wxString(wxChar ch, size_t nRepeat = 1);
3c67202d 375 // ctor takes first nLength characters from C string
566b84d2 376 // (default value of wxSTRING_MAXLEN means take all the string)
2bb67b80 377 wxString(const wxChar *psz, size_t nLength = wxSTRING_MAXLEN)
6b95b20d 378 { InitWith(psz, 0, nLength); }
2bb67b80
OK
379#if wxUSE_UNICODE
380 // from multibyte string
381 // (NB: nLength is right now number of Unicode characters, not
382 // characters in psz! So try not to use it yet!)
5f709e67 383 wxString(const char *psz, wxMBConv& conv = wxConvLibc, size_t nLength = wxSTRING_MAXLEN);
2bb67b80
OK
384 // from wxWCharBuffer (i.e. return from wxGetString)
385 wxString(const wxWCharBuffer& psz)
386 { InitWith(psz, 0, wxSTRING_MAXLEN); }
387#else
3c67202d 388 // from C string (for compilers using unsigned char)
2bb67b80
OK
389 wxString(const unsigned char* psz, size_t nLength = wxSTRING_MAXLEN)
390 { InitWith((const char*)psz, 0, nLength); }
3a309a64
OK
391 // from multibyte string
392 wxString(const char *psz, wxMBConv& WXUNUSED(conv), size_t nLength = wxSTRING_MAXLEN)
393 { InitWith(psz, 0, nLength); }
6f841509 394#if wxUSE_WCHAR_T
2bb67b80 395 // from wide (Unicode) string
c801d85f 396 wxString(const wchar_t *pwz);
6f841509 397#endif
2bb67b80
OK
398 // from wxCharBuffer
399 wxString(const wxCharBuffer& psz)
400 { InitWith(psz, 0, wxSTRING_MAXLEN); }
401#endif
3c67202d 402 // dtor is not virtual, this class must not be inherited from!
6b95b20d 403 ~wxString() { GetStringData()->Unlock(); }
c801d85f 404
3c67202d
VZ
405 // generic attributes & operations
406 // as standard strlen()
47d67540 407 size_t Len() const { return GetStringData()->nDataLength; }
3c67202d 408 // string contains any characters?
dd1eaa89 409 bool IsEmpty() const { return Len() == 0; }
dcfde592
VZ
410 // empty string is "FALSE", so !str will return TRUE
411 bool operator!() const { return IsEmpty(); }
3c67202d 412 // empty string contents
dd1eaa89
VZ
413 void Empty()
414 {
2c3b684c 415 if ( !IsEmpty() )
dd1eaa89
VZ
416 Reinit();
417
7be07660 418 // should be empty
dd1eaa89 419 wxASSERT( GetStringData()->nDataLength == 0 );
7be07660 420 }
3c67202d 421 // empty the string and free memory
7be07660
VZ
422 void Clear()
423 {
424 if ( !GetStringData()->IsEmpty() )
425 Reinit();
426
427 wxASSERT( GetStringData()->nDataLength == 0 ); // should be empty
428 wxASSERT( GetStringData()->nAllocLength == 0 ); // and not own any memory
dd1eaa89
VZ
429 }
430
3c67202d
VZ
431 // contents test
432 // Is an ascii value
c801d85f 433 bool IsAscii() const;
3c67202d 434 // Is a number
c801d85f 435 bool IsNumber() const;
3c67202d 436 // Is a word
c801d85f 437 bool IsWord() const;
c801d85f 438
3c67202d
VZ
439 // data access (all indexes are 0 based)
440 // read access
2bb67b80 441 wxChar GetChar(size_t n) const
dd1eaa89 442 { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
3c67202d 443 // read/write access
2bb67b80 444 wxChar& GetWritableChar(size_t n)
dd1eaa89 445 { ASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }
3c67202d 446 // write access
2bb67b80 447 void SetChar(size_t n, wxChar ch)
c801d85f
KB
448 { ASSERT_VALID_INDEX( n ); CopyBeforeWrite(); m_pchData[n] = ch; }
449
3c67202d 450 // get last character
2bb67b80 451 wxChar Last() const
c801d85f 452 { wxASSERT( !IsEmpty() ); return m_pchData[Len() - 1]; }
3c67202d 453 // get writable last character
2bb67b80 454 wxChar& Last()
c801d85f
KB
455 { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData[Len()-1]; }
456
57493f9f
VZ
457 // under Unix it is tested with configure, assume it works on other
458 // platforms (there might be overloading problems if size_t and int are
459 // the same type)
227b5cd7 460#if !defined(__UNIX__) || wxUSE_SIZE_T_STRING_OPERATOR
3c67202d 461 // operator version of GetChar
2bb67b80 462 wxChar operator[](size_t n) const
c801d85f 463 { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
22552603 464#endif
c5248639 465
3c67202d 466 // operator version of GetChar
2bb67b80 467 wxChar operator[](int n) const
c801d85f 468 { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
3c67202d 469 // operator version of GetWritableChar
2bb67b80 470 wxChar& operator[](size_t n)
c801d85f
KB
471 { ASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }
472
3c67202d 473 // implicit conversion to C string
2bb67b80 474 operator const wxChar*() const { return m_pchData; }
3c67202d 475 // explicit conversion to C string (use this with printf()!)
2bb67b80 476 const wxChar* c_str() const { return m_pchData; }
6f841509
OK
477 // (and this with [wx]Printf()!)
478 const wxChar* wx_str() const { return m_pchData; }
3c67202d 479 //
2bb67b80
OK
480 const wxChar* GetData() const { return m_pchData; }
481#if wxUSE_UNICODE
5f709e67
OK
482 const wxCharBuffer mb_str(wxMBConv& conv = wxConvLibc) const { return conv.cWC2MB(m_pchData); }
483 const wxChar* wc_str(wxMBConv& WXUNUSED(conv) = wxConvLibc) const { return m_pchData; }
2bb67b80 484#if wxMBFILES
5f709e67 485 const wxCharBuffer fn_str() const { return mb_str(wxConvFile); }
2bb67b80
OK
486#else
487 const wxChar* fn_str() const { return m_pchData; }
488#endif
489#else
5f709e67 490 const wxChar* mb_str(wxMBConv& WXUNUSED(conv) = wxConvLibc ) const { return m_pchData; }
6f841509 491#if wxUSE_WCHAR_T
2bb67b80 492 const wxWCharBuffer wc_str(wxMBConv& conv) const { return conv.cMB2WC(m_pchData); }
6f841509 493#endif
2bb67b80
OK
494 const wxChar* fn_str() const { return m_pchData; }
495#endif
a69f7aa8 496 // for convenience
5f709e67 497 const wxWX2MBbuf mbc_str() const { return mb_str(*wxConvCurrent); }
c801d85f 498
3c67202d
VZ
499 // overloaded assignment
500 // from another wxString
c801d85f 501 wxString& operator=(const wxString& stringSrc);
3c67202d 502 // from a character
2bb67b80 503 wxString& operator=(wxChar ch);
3c67202d 504 // from a C string
2bb67b80 505 wxString& operator=(const wxChar *psz);
111bb7f2
OK
506#if wxUSE_UNICODE
507 // from wxWCharBuffer
508 wxString& operator=(const wxWCharBuffer& psz) { return operator=((const wchar_t *)psz); }
509#else
3c67202d 510 // from another kind of C string
c801d85f 511 wxString& operator=(const unsigned char* psz);
6f841509 512#if wxUSE_WCHAR_T
3c67202d 513 // from a wide string
c801d85f 514 wxString& operator=(const wchar_t *pwz);
6f841509 515#endif
111bb7f2
OK
516 // from wxCharBuffer
517 wxString& operator=(const wxCharBuffer& psz) { return operator=((const char *)psz); }
2bb67b80 518#endif
3c67202d
VZ
519
520 // string concatenation
521 // in place concatenation
522 /*
523 Concatenate and return the result. Note that the left to right
524 associativity of << allows to write things like "str << str1 << str2
525 << ..." (unlike with +=)
526 */
527 // string += string
dd1eaa89
VZ
528 wxString& operator<<(const wxString& s)
529 {
530 wxASSERT( s.GetStringData()->IsValid() );
531
532 ConcatSelf(s.Len(), s);
533 return *this;
534 }
3c67202d 535 // string += C string
2bb67b80
OK
536 wxString& operator<<(const wxChar *psz)
537 { ConcatSelf(wxStrlen(psz), psz); return *this; }
3c67202d 538 // string += char
2bb67b80 539 wxString& operator<<(wxChar ch) { ConcatSelf(1, &ch); return *this; }
dd1eaa89 540
3c67202d 541 // string += string
6b95b20d 542 void operator+=(const wxString& s) { (void)operator<<(s); }
3c67202d 543 // string += C string
2bb67b80 544 void operator+=(const wxChar *psz) { (void)operator<<(psz); }
3c67202d 545 // string += char
2bb67b80
OK
546 void operator+=(wxChar ch) { (void)operator<<(ch); }
547
548 // string += buffer (i.e. from wxGetString)
549#if wxUSE_UNICODE
550 wxString& operator<<(const wxWCharBuffer& s) { (void)operator<<((const wchar_t *)s); return *this; }
551 void operator+=(const wxWCharBuffer& s) { (void)operator<<((const wchar_t *)s); }
552#else
553 wxString& operator<<(const wxCharBuffer& s) { (void)operator<<((const char *)s); return *this; }
554 void operator+=(const wxCharBuffer& s) { (void)operator<<((const char *)s); }
555#endif
6b95b20d 556
3c67202d 557 // string += C string
2bb67b80
OK
558 wxString& Append(const wxChar* psz)
559 { ConcatSelf(wxStrlen(psz), psz); return *this; }
3c67202d 560 // append count copies of given character
2bb67b80 561 wxString& Append(wxChar ch, size_t count = 1u)
3c67202d
VZ
562 { wxString str(ch, count); return *this << str; }
563
564 // prepend a string, return the string itself
565 wxString& Prepend(const wxString& str)
566 { *this = str + *this; return *this; }
567
568 // non-destructive concatenation
569 //
c33534e5 570 friend wxString WXDLLEXPORT operator+(const wxString& string1, const wxString& string2);
3c67202d 571 //
2bb67b80 572 friend wxString WXDLLEXPORT operator+(const wxString& string, wxChar ch);
3c67202d 573 //
2bb67b80 574 friend wxString WXDLLEXPORT operator+(wxChar ch, const wxString& string);
3c67202d 575 //
2bb67b80 576 friend wxString WXDLLEXPORT operator+(const wxString& string, const wxChar *psz);
3c67202d 577 //
2bb67b80 578 friend wxString WXDLLEXPORT operator+(const wxChar *psz, const wxString& string);
3c67202d
VZ
579
580 // stream-like functions
581 // insert an int into string
582 wxString& operator<<(int i);
583 // insert a float into string
584 wxString& operator<<(float f);
585 // insert a double into string
586 wxString& operator<<(double d);
c84c52de 587
3c67202d 588 // string comparison
30b21f9a 589 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
2bb67b80 590 int Cmp(const wxChar *psz) const { return wxStrcmp(c_str(), psz); }
3c67202d 591 // same as Cmp() but not case-sensitive
2bb67b80 592 int CmpNoCase(const wxChar *psz) const { return wxStricmp(c_str(), psz); }
3c67202d
VZ
593 // test for the string equality, either considering case or not
594 // (if compareWithCase then the case matters)
2bb67b80 595 bool IsSameAs(const wxChar *psz, bool compareWithCase = TRUE) const
3c67202d
VZ
596 { return (compareWithCase ? Cmp(psz) : CmpNoCase(psz)) == 0; }
597
598 // simple sub-string extraction
599 // return substring starting at nFirst of length nCount (or till the end
600 // if nCount = default value)
566b84d2 601 wxString Mid(size_t nFirst, size_t nCount = wxSTRING_MAXLEN) const;
3c67202d
VZ
602
603 // operator version of Mid()
604 wxString operator()(size_t start, size_t len) const
605 { return Mid(start, len); }
606
607 // get first nCount characters
c801d85f 608 wxString Left(size_t nCount) const;
3c67202d 609 // get last nCount characters
c801d85f 610 wxString Right(size_t nCount) const;
3c67202d
VZ
611 // get all characters before the first occurence of ch
612 // (returns the whole string if ch not found)
2bb67b80 613 wxString BeforeFirst(wxChar ch) const;
3c67202d
VZ
614 // get all characters before the last occurence of ch
615 // (returns empty string if ch not found)
2bb67b80 616 wxString BeforeLast(wxChar ch) const;
3c67202d
VZ
617 // get all characters after the first occurence of ch
618 // (returns empty string if ch not found)
2bb67b80 619 wxString AfterFirst(wxChar ch) const;
3c67202d
VZ
620 // get all characters after the last occurence of ch
621 // (returns the whole string if ch not found)
2bb67b80 622 wxString AfterLast(wxChar ch) const;
3c67202d
VZ
623
624 // for compatibility only, use more explicitly named functions above
2bb67b80
OK
625 wxString Before(wxChar ch) const { return BeforeLast(ch); }
626 wxString After(wxChar ch) const { return AfterFirst(ch); }
3c67202d
VZ
627
628 // case conversion
c84c52de 629 // convert to upper case in place, return the string itself
c801d85f 630 wxString& MakeUpper();
c84c52de 631 // convert to upper case, return the copy of the string
03ab016d
JS
632 // Here's something to remember: BC++ doesn't like returns in inlines.
633 wxString Upper() const ;
c84c52de 634 // convert to lower case in place, return the string itself
c801d85f 635 wxString& MakeLower();
c84c52de 636 // convert to lower case, return the copy of the string
03ab016d 637 wxString Lower() const ;
c801d85f 638
3c67202d
VZ
639 // trimming/padding whitespace (either side) and truncating
640 // remove spaces from left or from right (default) side
c801d85f 641 wxString& Trim(bool bFromRight = TRUE);
3c67202d 642 // add nCount copies chPad in the beginning or at the end (default)
2bb67b80 643 wxString& Pad(size_t nCount, wxChar chPad = _T(' '), bool bFromRight = TRUE);
3c67202d 644 // truncate string to given length
c801d85f 645 wxString& Truncate(size_t uiLen);
dd1eaa89 646
3c67202d
VZ
647 // searching and replacing
648 // searching (return starting index, or -1 if not found)
2bb67b80 649 int Find(wxChar ch, bool bFromEnd = FALSE) const; // like strchr/strrchr
3c67202d 650 // searching (return starting index, or -1 if not found)
2bb67b80 651 int Find(const wxChar *pszSub) const; // like strstr
3c67202d
VZ
652 // replace first (or all of bReplaceAll) occurences of substring with
653 // another string, returns the number of replacements made
2bb67b80
OK
654 size_t Replace(const wxChar *szOld,
655 const wxChar *szNew,
3c67202d
VZ
656 bool bReplaceAll = TRUE);
657
658 // check if the string contents matches a mask containing '*' and '?'
2bb67b80 659 bool Matches(const wxChar *szMask) const;
c801d85f 660
3c67202d
VZ
661 // formated input/output
662 // as sprintf(), returns the number of characters written or < 0 on error
2bb67b80 663 int Printf(const wxChar *pszFormat, ...);
3c67202d 664 // as vprintf(), returns the number of characters written or < 0 on error
2bb67b80 665 int PrintfV(const wxChar* pszFormat, va_list argptr);
dd1eaa89 666
3c67202d
VZ
667 // raw access to string memory
668 // ensure that string has space for at least nLen characters
dd1eaa89 669 // only works if the data of this string is not shared
c86f1403 670 void Alloc(size_t nLen);
3c67202d 671 // minimize the string's memory
dd1eaa89
VZ
672 // only works if the data of this string is not shared
673 void Shrink();
3c67202d
VZ
674 // get writable buffer of at least nLen bytes. Unget() *must* be called
675 // a.s.a.p. to put string back in a reasonable state!
2bb67b80 676 wxChar *GetWriteBuf(size_t nLen);
3c67202d 677 // call this immediately after GetWriteBuf() has been used
8fd0f20b 678 void UngetWriteBuf();
c801d85f 679
3c67202d
VZ
680 // wxWindows version 1 compatibility functions
681
682 // use Mid()
683 wxString SubString(size_t from, size_t to) const
684 { return Mid(from, (to - from + 1)); }
685 // values for second parameter of CompareTo function
c801d85f 686 enum caseCompare {exact, ignoreCase};
3c67202d 687 // values for first parameter of Strip function
c801d85f 688 enum stripType {leading = 0x1, trailing = 0x2, both = 0x3};
8870c26e 689
3c67202d 690 // use Printf()
2bb67b80 691 int sprintf(const wxChar *pszFormat, ...);
c801d85f 692
3c67202d 693 // use Cmp()
2bb67b80 694 inline int CompareTo(const wxChar* psz, caseCompare cmp = exact) const
6b95b20d 695 { return cmp == exact ? Cmp(psz) : CmpNoCase(psz); }
c801d85f 696
3c67202d 697 // use Len
c801d85f 698 size_t Length() const { return Len(); }
3c67202d 699 // Count the number of characters
2bb67b80 700 int Freq(wxChar ch) const;
3c67202d 701 // use MakeLower
c801d85f 702 void LowerCase() { MakeLower(); }
3c67202d 703 // use MakeUpper
c801d85f 704 void UpperCase() { MakeUpper(); }
3c67202d 705 // use Trim except that it doesn't change this string
c801d85f
KB
706 wxString Strip(stripType w = trailing) const;
707
3c67202d 708 // use Find (more general variants not yet supported)
2bb67b80
OK
709 size_t Index(const wxChar* psz) const { return Find(psz); }
710 size_t Index(wxChar ch) const { return Find(ch); }
3c67202d 711 // use Truncate
c801d85f
KB
712 wxString& Remove(size_t pos) { return Truncate(pos); }
713 wxString& RemoveLast() { return Truncate(Len() - 1); }
714
3ed358cb 715 wxString& Remove(size_t nStart, size_t nLen) { return erase( nStart, nLen ); }
dd1eaa89 716
3c67202d 717 // use Find()
2bb67b80
OK
718 int First( const wxChar ch ) const { return Find(ch); }
719 int First( const wxChar* psz ) const { return Find(psz); }
3ed358cb 720 int First( const wxString &str ) const { return Find(str); }
2bb67b80 721 int Last( const wxChar ch ) const { return Find(ch, TRUE); }
3c67202d 722 bool Contains(const wxString& str) const { return Find(str) != -1; }
c801d85f 723
3c67202d 724 // use IsEmpty()
c801d85f 725 bool IsNull() const { return IsEmpty(); }
c801d85f 726
3c67202d
VZ
727#ifdef wxSTD_STRING_COMPATIBILITY
728 // std::string compatibility functions
dd1eaa89 729
3c67202d 730 // an 'invalid' value for string index
c801d85f 731 static const size_t npos;
dd1eaa89 732
3c67202d
VZ
733 // constructors
734 // take nLen chars starting at nPos
735 wxString(const wxString& str, size_t nPos, size_t nLen)
736 {
737 wxASSERT( str.GetStringData()->IsValid() );
738 InitWith(str.c_str(), nPos, nLen == npos ? 0 : nLen);
739 }
740 // take all characters from pStart to pEnd
741 wxString(const void *pStart, const void *pEnd);
742
743 // lib.string.capacity
744 // return the length of the string
745 size_t size() const { return Len(); }
746 // return the length of the string
747 size_t length() const { return Len(); }
748 // return the maximum size of the string
566b84d2 749 size_t max_size() const { return wxSTRING_MAXLEN; }
3c67202d 750 // resize the string, filling the space with c if c != 0
2bb67b80 751 void resize(size_t nSize, wxChar ch = _T('\0'));
3c67202d
VZ
752 // delete the contents of the string
753 void clear() { Empty(); }
754 // returns true if the string is empty
755 bool empty() const { return IsEmpty(); }
756
757 // lib.string.access
758 // return the character at position n
2bb67b80 759 wxChar at(size_t n) const { return GetChar(n); }
3c67202d 760 // returns the writable character at position n
2bb67b80 761 wxChar& at(size_t n) { return GetWritableChar(n); }
3c67202d
VZ
762
763 // lib.string.modifiers
764 // append a string
765 wxString& append(const wxString& str)
766 { *this += str; return *this; }
767 // append elements str[pos], ..., str[pos+n]
768 wxString& append(const wxString& str, size_t pos, size_t n)
769 { ConcatSelf(n, str.c_str() + pos); return *this; }
770 // append first n (or all if n == npos) characters of sz
2bb67b80
OK
771 wxString& append(const wxChar *sz, size_t n = npos)
772 { ConcatSelf(n == npos ? wxStrlen(sz) : n, sz); return *this; }
3c67202d
VZ
773
774 // append n copies of ch
2bb67b80 775 wxString& append(size_t n, wxChar ch) { return Pad(n, ch); }
3c67202d
VZ
776
777 // same as `this_string = str'
778 wxString& assign(const wxString& str) { return (*this) = str; }
779 // same as ` = str[pos..pos + n]
780 wxString& assign(const wxString& str, size_t pos, size_t n)
2bb67b80 781 { return *this = wxString((const wxChar *)str + pos, n); }
3c67202d 782 // same as `= first n (or all if n == npos) characters of sz'
2bb67b80 783 wxString& assign(const wxChar *sz, size_t n = npos)
3c67202d
VZ
784 { return *this = wxString(sz, n); }
785 // same as `= n copies of ch'
2bb67b80 786 wxString& assign(size_t n, wxChar ch)
3c67202d
VZ
787 { return *this = wxString(ch, n); }
788
789 // insert another string
790 wxString& insert(size_t nPos, const wxString& str);
791 // insert n chars of str starting at nStart (in str)
792 wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n)
2bb67b80 793 { return insert(nPos, wxString((const wxChar *)str + nStart, n)); }
3c67202d
VZ
794
795 // insert first n (or all if n == npos) characters of sz
2bb67b80 796 wxString& insert(size_t nPos, const wxChar *sz, size_t n = npos)
3c67202d
VZ
797 { return insert(nPos, wxString(sz, n)); }
798 // insert n copies of ch
2bb67b80 799 wxString& insert(size_t nPos, size_t n, wxChar ch)
3c67202d
VZ
800 { return insert(nPos, wxString(ch, n)); }
801
802 // delete characters from nStart to nStart + nLen
803 wxString& erase(size_t nStart = 0, size_t nLen = npos);
804
805 // replaces the substring of length nLen starting at nStart
2bb67b80 806 wxString& replace(size_t nStart, size_t nLen, const wxChar* sz);
3c67202d 807 // replaces the substring with nCount copies of ch
2bb67b80 808 wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxChar ch);
3c67202d
VZ
809 // replaces a substring with another substring
810 wxString& replace(size_t nStart, size_t nLen,
811 const wxString& str, size_t nStart2, size_t nLen2);
812 // replaces the substring with first nCount chars of sz
813 wxString& replace(size_t nStart, size_t nLen,
2bb67b80 814 const wxChar* sz, size_t nCount);
3c67202d
VZ
815
816 // swap two strings
817 void swap(wxString& str);
818
819 // All find() functions take the nStart argument which specifies the
820 // position to start the search on, the default value is 0. All functions
821 // return npos if there were no match.
822
823 // find a substring
824 size_t find(const wxString& str, size_t nStart = 0) const;
825
826 // VC++ 1.5 can't cope with this syntax.
3f4a0c5b 827#if !defined(__VISUALC__) || defined(__WIN32__)
3c67202d 828 // find first n characters of sz
2bb67b80 829 size_t find(const wxChar* sz, size_t nStart = 0, size_t n = npos) const;
6b0eb19f 830#endif
3c67202d
VZ
831
832 // Gives a duplicate symbol (presumably a case-insensitivity problem)
62448488 833#if !defined(__BORLANDC__)
3c67202d 834 // find the first occurence of character ch after nStart
2bb67b80 835 size_t find(wxChar ch, size_t nStart = 0) const;
62448488 836#endif
3c67202d
VZ
837 // rfind() family is exactly like find() but works right to left
838
839 // as find, but from the end
840 size_t rfind(const wxString& str, size_t nStart = npos) const;
841
842 // VC++ 1.5 can't cope with this syntax.
3f4a0c5b 843#if !defined(__VISUALC__) || defined(__WIN32__)
3c67202d 844 // as find, but from the end
2bb67b80 845 size_t rfind(const wxChar* sz, size_t nStart = npos,
3c67202d
VZ
846 size_t n = npos) const;
847 // as find, but from the end
2bb67b80 848 size_t rfind(wxChar ch, size_t nStart = npos) const;
c801d85f 849#endif
3c67202d
VZ
850
851 // find first/last occurence of any character in the set
852
853 //
854 size_t find_first_of(const wxString& str, size_t nStart = 0) const;
855 //
2bb67b80 856 size_t find_first_of(const wxChar* sz, size_t nStart = 0) const;
3c67202d 857 // same as find(char, size_t)
2bb67b80 858 size_t find_first_of(wxChar c, size_t nStart = 0) const;
3c67202d
VZ
859 //
860 size_t find_last_of (const wxString& str, size_t nStart = npos) const;
861 //
2bb67b80 862 size_t find_last_of (const wxChar* s, size_t nStart = npos) const;
3c67202d 863 // same as rfind(char, size_t)
2bb67b80 864 size_t find_last_of (wxChar c, size_t nStart = npos) const;
3c67202d
VZ
865
866 // find first/last occurence of any character not in the set
867
868 //
869 size_t find_first_not_of(const wxString& str, size_t nStart = 0) const;
870 //
2bb67b80 871 size_t find_first_not_of(const wxChar* s, size_t nStart = 0) const;
3c67202d 872 //
2bb67b80 873 size_t find_first_not_of(wxChar ch, size_t nStart = 0) const;
3c67202d
VZ
874 //
875 size_t find_last_not_of(const wxString& str, size_t nStart=npos) const;
876 //
2bb67b80 877 size_t find_last_not_of(const wxChar* s, size_t nStart = npos) const;
3c67202d 878 //
2bb67b80 879 size_t find_last_not_of(wxChar ch, size_t nStart = npos) const;
3c67202d
VZ
880
881 // All compare functions return -1, 0 or 1 if the [sub]string is less,
882 // equal or greater than the compare() argument.
883
884 // just like strcmp()
885 int compare(const wxString& str) const { return Cmp(str); }
886 // comparison with a substring
887 int compare(size_t nStart, size_t nLen, const wxString& str) const;
888 // comparison of 2 substrings
889 int compare(size_t nStart, size_t nLen,
890 const wxString& str, size_t nStart2, size_t nLen2) const;
891 // just like strcmp()
2bb67b80 892 int compare(const wxChar* sz) const { return Cmp(sz); }
3c67202d
VZ
893 // substring comparison with first nCount characters of sz
894 int compare(size_t nStart, size_t nLen,
2bb67b80 895 const wxChar* sz, size_t nCount = npos) const;
3c67202d
VZ
896
897 // substring extraction
898 wxString substr(size_t nStart = 0, size_t nLen = npos) const;
899#endif // wxSTD_STRING_COMPATIBILITY
c801d85f
KB
900};
901
902// ----------------------------------------------------------------------------
3c67202d
VZ
903// The string array uses it's knowledge of internal structure of the wxString
904// class to optimize string storage. Normally, we would store pointers to
905// string, but as wxString is, in fact, itself a pointer (sizeof(wxString) is
906// sizeof(char *)) we store these pointers instead. The cast to "wxString *" is
907// really all we need to turn such pointer into a string!
908//
909// Of course, it can be called a dirty hack, but we use twice less memory and
910// this approach is also more speed efficient, so it's probably worth it.
911//
912// Usage notes: when a string is added/inserted, a new copy of it is created,
913// so the original string may be safely deleted. When a string is retrieved
914// from the array (operator[] or Item() method), a reference is returned.
c801d85f 915// ----------------------------------------------------------------------------
fbcb4166 916class WXDLLEXPORT wxArrayString
c801d85f
KB
917{
918public:
30b21f9a
VZ
919 // type of function used by wxArrayString::Sort()
920 typedef int (*CompareFunction)(const wxString& first,
921 const wxString& second);
922
3c67202d
VZ
923 // constructors and destructor
924 // default ctor
c801d85f 925 wxArrayString();
3c67202d 926 // copy ctor
c801d85f 927 wxArrayString(const wxArrayString& array);
3c67202d 928 // assignment operator
c801d85f 929 wxArrayString& operator=(const wxArrayString& src);
3c67202d 930 // not virtual, this class should not be derived from
c801d85f 931 ~wxArrayString();
c801d85f 932
3c67202d
VZ
933 // memory management
934 // empties the list, but doesn't release memory
c801d85f 935 void Empty();
3c67202d 936 // empties the list and releases memory
c801d85f 937 void Clear();
3c67202d 938 // preallocates memory for given number of items
c801d85f 939 void Alloc(size_t nCount);
3c67202d 940 // minimzes the memory usage (by freeing all extra memory)
dd1eaa89 941 void Shrink();
3c67202d
VZ
942
943 // simple accessors
944 // number of elements in the array
945 size_t GetCount() const { return m_nCount; }
946 // is it empty?
947 bool IsEmpty() const { return m_nCount == 0; }
948 // number of elements in the array (GetCount is preferred API)
949 size_t Count() const { return m_nCount; }
950
951 // items access (range checking is done in debug version)
952 // get item at position uiIndex
c801d85f
KB
953 wxString& Item(size_t nIndex) const
954 { wxASSERT( nIndex < m_nCount ); return *(wxString *)&(m_pItems[nIndex]); }
3c67202d 955 // same as Item()
c801d85f 956 wxString& operator[](size_t nIndex) const { return Item(nIndex); }
3c67202d 957 // get last item
c801d85f 958 wxString& Last() const { wxASSERT( !IsEmpty() ); return Item(Count() - 1); }
3c67202d
VZ
959
960 // item management
961 // Search the element in the array, starting from the beginning if
962 // bFromEnd is FALSE or from end otherwise. If bCase, comparison is case
963 // sensitive (default). Returns index of the first item matched or
964 // wxNOT_FOUND
2bb67b80 965 int Index (const wxChar *sz, bool bCase = TRUE, bool bFromEnd = FALSE) const;
3c67202d
VZ
966 // add new element at the end
967 void Add(const wxString& str);
968 // add new element at given position
c86f1403 969 void Insert(const wxString& str, size_t uiIndex);
3c67202d 970 // remove first item matching this value
2bb67b80 971 void Remove(const wxChar *sz);
3c67202d 972 // remove item by index
c801d85f 973 void Remove(size_t nIndex);
c801d85f 974
30b21f9a
VZ
975 // sorting
976 // sort array elements in alphabetical order (or reversed alphabetical
977 // order if reverseOrder parameter is TRUE)
978 void Sort(bool reverseOrder = FALSE);
979 // sort array elements using specified comparaison function
980 void Sort(CompareFunction compareFunction);
c801d85f
KB
981
982private:
983 void Grow(); // makes array bigger if needed
984 void Free(); // free the string stored
985
30b21f9a
VZ
986 void DoSort(); // common part of all Sort() variants
987
3c67202d 988 size_t m_nSize, // current size of the array
c801d85f
KB
989 m_nCount; // current number of elements
990
2bb67b80 991 wxChar **m_pItems; // pointer to data
c801d85f
KB
992};
993
c801d85f 994// ---------------------------------------------------------------------------
3c67202d 995// wxString comparison functions: operator versions are always case sensitive
c801d85f 996// ---------------------------------------------------------------------------
3c67202d 997//
a3ef5bf5 998inline bool operator==(const wxString& s1, const wxString& s2) { return (s1.Cmp(s2) == 0); }
3c67202d 999//
2bb67b80 1000inline bool operator==(const wxString& s1, const wxChar * s2) { return (s1.Cmp(s2) == 0); }
3c67202d 1001//
2bb67b80 1002inline bool operator==(const wxChar * s1, const wxString& s2) { return (s2.Cmp(s1) == 0); }
3c67202d 1003//
a3ef5bf5 1004inline bool operator!=(const wxString& s1, const wxString& s2) { return (s1.Cmp(s2) != 0); }
3c67202d 1005//
2bb67b80 1006inline bool operator!=(const wxString& s1, const wxChar * s2) { return (s1.Cmp(s2) != 0); }
3c67202d 1007//
2bb67b80 1008inline bool operator!=(const wxChar * s1, const wxString& s2) { return (s2.Cmp(s1) != 0); }
3c67202d 1009//
a3ef5bf5 1010inline bool operator< (const wxString& s1, const wxString& s2) { return (s1.Cmp(s2) < 0); }
3c67202d 1011//
2bb67b80 1012inline bool operator< (const wxString& s1, const wxChar * s2) { return (s1.Cmp(s2) < 0); }
3c67202d 1013//
2bb67b80 1014inline bool operator< (const wxChar * s1, const wxString& s2) { return (s2.Cmp(s1) > 0); }
3c67202d 1015//
a3ef5bf5 1016inline bool operator> (const wxString& s1, const wxString& s2) { return (s1.Cmp(s2) > 0); }
3c67202d 1017//
2bb67b80 1018inline bool operator> (const wxString& s1, const wxChar * s2) { return (s1.Cmp(s2) > 0); }
3c67202d 1019//
2bb67b80 1020inline bool operator> (const wxChar * s1, const wxString& s2) { return (s2.Cmp(s1) < 0); }
3c67202d 1021//
a3ef5bf5 1022inline bool operator<=(const wxString& s1, const wxString& s2) { return (s1.Cmp(s2) <= 0); }
3c67202d 1023//
2bb67b80 1024inline bool operator<=(const wxString& s1, const wxChar * s2) { return (s1.Cmp(s2) <= 0); }
3c67202d 1025//
2bb67b80 1026inline bool operator<=(const wxChar * s1, const wxString& s2) { return (s2.Cmp(s1) >= 0); }
3c67202d 1027//
a3ef5bf5 1028inline bool operator>=(const wxString& s1, const wxString& s2) { return (s1.Cmp(s2) >= 0); }
3c67202d 1029//
2bb67b80 1030inline bool operator>=(const wxString& s1, const wxChar * s2) { return (s1.Cmp(s2) >= 0); }
3c67202d 1031//
2bb67b80 1032inline bool operator>=(const wxChar * s1, const wxString& s2) { return (s2.Cmp(s1) <= 0); }
3c67202d 1033
ed7174ba 1034wxString WXDLLEXPORT operator+(const wxString& string1, const wxString& string2);
2bb67b80
OK
1035wxString WXDLLEXPORT operator+(const wxString& string, wxChar ch);
1036wxString WXDLLEXPORT operator+(wxChar ch, const wxString& string);
1037wxString WXDLLEXPORT operator+(const wxString& string, const wxChar *psz);
1038wxString WXDLLEXPORT operator+(const wxChar *psz, const wxString& string);
028a2b5d 1039#if wxUSE_UNICODE
c6cee672 1040inline wxString WXDLLEXPORT operator+(const wxString& string, const wxWCharBuffer& buf)
028a2b5d 1041{ return string + (const wchar_t *)buf; }
c6cee672 1042inline wxString WXDLLEXPORT operator+(const wxWCharBuffer& buf, const wxString& string)
bf88baa6 1043{ return (const wchar_t *)buf + string; }
028a2b5d 1044#else
c6cee672 1045inline wxString WXDLLEXPORT operator+(const wxString& string, const wxCharBuffer& buf)
028a2b5d 1046{ return string + (const char *)buf; }
c6cee672 1047inline wxString WXDLLEXPORT operator+(const wxCharBuffer& buf, const wxString& string)
bf88baa6 1048{ return (const char *)buf + string; }
028a2b5d 1049#endif
f04f3991 1050
c801d85f 1051// ---------------------------------------------------------------------------
3c67202d 1052// Implementation only from here until the end of file
c801d85f
KB
1053// ---------------------------------------------------------------------------
1054
3c67202d 1055#ifdef wxSTD_STRING_COMPATIBILITY
c801d85f 1056
3f4a0c5b 1057#include "wx/ioswrap.h"
c801d85f 1058
184b5d99 1059WXDLLEXPORT istream& operator>>(istream& is, wxString& str);
c801d85f 1060
3c67202d 1061#endif // wxSTD_STRING_COMPATIBILITY
c801d85f 1062
34138703 1063#endif // _WX_WXSTRINGH__