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