]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: string.h | |
e54c96f1 | 3 | // Purpose: interface of wxStringBuffer |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxStringBuffer | |
11 | @wxheader{string.h} | |
7c913512 FM |
12 | |
13 | This tiny class allows to conveniently access the wxString | |
23324ae1 FM |
14 | internal buffer as a writable pointer without any risk of forgetting to restore |
15 | the string to the usable state later. | |
7c913512 FM |
16 | |
17 | For example, assuming you have a low-level OS function called | |
23324ae1 FM |
18 | @c GetMeaningOfLifeAsString(char *) returning the value in the provided |
19 | buffer (which must be writable, of course) you might call it like this: | |
7c913512 | 20 | |
23324ae1 FM |
21 | @code |
22 | wxString theAnswer; | |
23 | GetMeaningOfLifeAsString(wxStringBuffer(theAnswer, 1024)); | |
24 | if ( theAnswer != "42" ) | |
25 | { | |
26 | wxLogError("Something is very wrong!"); | |
27 | } | |
28 | @endcode | |
7c913512 | 29 | |
23324ae1 FM |
30 | Note that the exact usage of this depends on whether on not wxUSE_STL is |
31 | enabled. If | |
32 | wxUSE_STL is enabled, wxStringBuffer creates a separate empty character buffer, | |
33 | and | |
34 | if wxUSE_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same | |
35 | buffer | |
36 | wxString uses intact. In other words, relying on wxStringBuffer containing the | |
7c913512 | 37 | old |
23324ae1 FM |
38 | wxString data is probably not a good idea if you want to build your program in |
39 | both | |
40 | with and without wxUSE_STL. | |
7c913512 | 41 | |
23324ae1 FM |
42 | @library{wxbase} |
43 | @category{FIXME} | |
44 | */ | |
7c913512 | 45 | class wxStringBuffer |
23324ae1 FM |
46 | { |
47 | public: | |
48 | /** | |
49 | Constructs a writable string buffer object associated with the given string | |
4cc4bfaf | 50 | and containing enough space for at least @a len characters. Basically, this |
23324ae1 FM |
51 | is equivalent to calling wxString::GetWriteBuf and |
52 | saving the result. | |
53 | */ | |
54 | wxStringBuffer(const wxString& str, size_t len); | |
55 | ||
56 | /** | |
7c913512 | 57 | Restores the string passed to the constructor to the usable state by calling |
23324ae1 FM |
58 | wxString::UngetWriteBuf on it. |
59 | */ | |
60 | ~wxStringBuffer(); | |
61 | ||
62 | /** | |
63 | Returns the writable pointer to a buffer of the size at least equal to the | |
64 | length specified in the constructor. | |
65 | */ | |
4cc4bfaf | 66 | wxChar* operator wxChar *(); |
23324ae1 FM |
67 | }; |
68 | ||
69 | ||
e54c96f1 | 70 | |
23324ae1 FM |
71 | /** |
72 | @class wxString | |
73 | @wxheader{string.h} | |
7c913512 FM |
74 | |
75 | wxString is a class representing a character string. Please see the | |
23324ae1 FM |
76 | @ref overview_wxstringoverview "wxString overview" for more information about |
77 | it. | |
7c913512 | 78 | |
23324ae1 FM |
79 | As explained there, wxString implements most of the methods of the std::string |
80 | class. | |
81 | These standard functions are not documented in this manual, please see the | |
82 | STL documentation). | |
83 | The behaviour of all these functions is identical to the behaviour described | |
84 | there. | |
7c913512 | 85 | |
23324ae1 | 86 | You may notice that wxString sometimes has many functions which do the same |
7c913512 | 87 | thing like, for example, wxString::Length, |
23324ae1 FM |
88 | wxString::Len and @c length() which all return the string |
89 | length. In all cases of such duplication the @c std::string-compatible | |
90 | method (@c length() in this case, always the lowercase version) should be | |
91 | used as it will ensure smoother transition to @c std::string when wxWidgets | |
92 | starts using it instead of wxString. | |
7c913512 | 93 | |
23324ae1 FM |
94 | @library{wxbase} |
95 | @category{data} | |
7c913512 | 96 | |
23324ae1 | 97 | @stdobjects |
e54c96f1 | 98 | ::Objects:, ::wxEmptyString, |
7c913512 | 99 | |
e54c96f1 | 100 | @see @ref overview_wxstringoverview "wxString overview", @ref overview_unicode |
23324ae1 FM |
101 | "Unicode overview" |
102 | */ | |
7c913512 | 103 | class wxString |
23324ae1 FM |
104 | { |
105 | public: | |
106 | //@{ | |
107 | /** | |
4cc4bfaf | 108 | Initializes the string from first @a nLength characters of C string. |
23324ae1 | 109 | The default value of @c wxSTRING_MAXLEN means take all the string. |
7c913512 | 110 | In Unicode build, @e conv's |
23324ae1 | 111 | wxMBConv::MB2WC method is called to |
4cc4bfaf | 112 | convert @a psz to wide string (the default converter uses current locale's |
23324ae1 | 113 | charset). It is ignored in ANSI build. |
3c4f71cc | 114 | |
4cc4bfaf FM |
115 | @see @ref overview_mbconvclasses "wxMBConv classes", @ref mbstr() |
116 | mb_str, @ref wcstr() wc_str | |
23324ae1 FM |
117 | */ |
118 | wxString(); | |
7c913512 FM |
119 | wxString(const wxString& x); |
120 | wxString(wxChar ch, size_t n = 1); | |
121 | wxString(const wxChar* psz, size_t nLength = wxSTRING_MAXLEN); | |
122 | wxString(const unsigned char* psz, | |
123 | size_t nLength = wxSTRING_MAXLEN); | |
124 | wxString(const wchar_t* psz, const wxMBConv& conv, | |
125 | size_t nLength = wxSTRING_MAXLEN); | |
126 | wxString(const char* psz, const wxMBConv& conv = wxConvLibc, | |
127 | size_t nLength = wxSTRING_MAXLEN); | |
23324ae1 FM |
128 | //@} |
129 | ||
130 | /** | |
131 | String destructor. Note that this is not virtual, so wxString must not be | |
132 | inherited from. | |
133 | */ | |
134 | ~wxString(); | |
135 | ||
136 | /** | |
137 | Gets all the characters after the first occurrence of @e ch. | |
4cc4bfaf | 138 | Returns the empty string if @a ch is not found. |
23324ae1 | 139 | */ |
328f5751 | 140 | wxString AfterFirst(wxChar ch) const; |
23324ae1 FM |
141 | |
142 | /** | |
143 | Gets all the characters after the last occurrence of @e ch. | |
4cc4bfaf | 144 | Returns the whole string if @a ch is not found. |
23324ae1 | 145 | */ |
328f5751 | 146 | wxString AfterLast(wxChar ch) const; |
23324ae1 FM |
147 | |
148 | /** | |
0367b928 VZ |
149 | Preallocate enough space for wxString to store @a nLen characters. |
150 | ||
151 | Please note that this method does the same thing as the standard | |
152 | reserve() one and shouldn't be used in new code. | |
153 | ||
154 | This function may be used to increase speed when the string is | |
155 | constructed by repeated concatenation as in | |
156 | ||
157 | @code | |
158 | // delete all vowels from the string | |
159 | wxString DeleteAllVowels(const wxString& original) | |
160 | { | |
161 | wxString result; | |
162 | ||
163 | size_t len = original.length(); | |
164 | ||
165 | result.Alloc(len); | |
166 | ||
167 | for ( size_t n = 0; n < len; n++ ) | |
168 | { | |
169 | if ( strchr("aeuio", tolower(original[n])) == NULL ) | |
170 | result += original[n]; | |
171 | } | |
172 | ||
173 | return result; | |
174 | } | |
175 | @endcode | |
176 | ||
177 | because it will avoid the need to reallocate string memory many times | |
178 | (in case of long strings). Note that it does not set the maximal length | |
179 | of a string -- it will still expand if more than @a nLen characters are | |
180 | stored in it. Also, it does not truncate the existing string (use | |
181 | Truncate() for this) even if its current length is greater than @a nLen. | |
182 | ||
183 | @return @true if memory was successfully allocated, @false otherwise. | |
23324ae1 | 184 | */ |
0367b928 | 185 | bool Alloc(size_t nLen); |
23324ae1 FM |
186 | |
187 | //@{ | |
188 | /** | |
4cc4bfaf | 189 | Concatenates character @a ch to this string, @a count times, returning a |
23324ae1 FM |
190 | reference |
191 | to it. | |
192 | */ | |
193 | wxString Append(const wxChar* psz); | |
7c913512 | 194 | wxString Append(wxChar ch, int count = 1); |
23324ae1 FM |
195 | //@} |
196 | ||
197 | /** | |
198 | Gets all characters before the first occurrence of @e ch. | |
4cc4bfaf | 199 | Returns the whole string if @a ch is not found. |
23324ae1 | 200 | */ |
328f5751 | 201 | wxString BeforeFirst(wxChar ch) const; |
23324ae1 FM |
202 | |
203 | /** | |
204 | Gets all characters before the last occurrence of @e ch. | |
4cc4bfaf | 205 | Returns the empty string if @a ch is not found. |
23324ae1 | 206 | */ |
328f5751 | 207 | wxString BeforeLast(wxChar ch) const; |
23324ae1 FM |
208 | |
209 | /** | |
210 | The MakeXXX() variants modify the string in place, while the other functions | |
211 | return a new string which contains the original text converted to the upper or | |
212 | lower case and leave the original string unchanged. | |
23324ae1 | 213 | MakeUpper() |
3c4f71cc | 214 | |
23324ae1 | 215 | Upper() |
3c4f71cc | 216 | |
23324ae1 | 217 | MakeLower() |
3c4f71cc | 218 | |
23324ae1 FM |
219 | Lower() |
220 | */ | |
221 | ||
222 | ||
223 | /** | |
224 | Many functions in this section take a character index in the string. As with C | |
225 | strings and/or arrays, the indices start from 0, so the first character of a | |
226 | string is string[0]. Attempt to access a character beyond the end of the | |
227 | string (which may be even 0 if the string is empty) will provoke an assert | |
228 | failure in @ref overview_debuggingoverview "debug build", but no checks are | |
229 | done in | |
230 | release builds. | |
23324ae1 FM |
231 | This section also contains both implicit and explicit conversions to C style |
232 | strings. Although implicit conversion is quite convenient, it is advised to use | |
233 | explicit @ref cstr() c_str method for the sake of clarity. Also | |
e54c96f1 | 234 | see overview() for the cases where it is necessary to |
23324ae1 | 235 | use it. |
23324ae1 | 236 | GetChar() |
3c4f71cc | 237 | |
23324ae1 | 238 | GetWritableChar() |
3c4f71cc | 239 | |
23324ae1 | 240 | SetChar() |
3c4f71cc | 241 | |
23324ae1 | 242 | Last() |
3c4f71cc | 243 | |
23324ae1 | 244 | @ref operatorbracket() "operator []" |
3c4f71cc | 245 | |
23324ae1 | 246 | @ref cstr() c_str |
3c4f71cc | 247 | |
23324ae1 | 248 | @ref mbstr() mb_str |
3c4f71cc | 249 | |
23324ae1 | 250 | @ref wcstr() wc_str |
3c4f71cc | 251 | |
23324ae1 | 252 | @ref fnstr() fn_str |
3c4f71cc | 253 | |
23324ae1 FM |
254 | @ref operatorconstcharpt() "operator const char*" |
255 | */ | |
256 | ||
257 | ||
258 | /** | |
259 | Empties the string and frees memory occupied by it. | |
23324ae1 FM |
260 | See also: Empty() |
261 | */ | |
262 | void Clear(); | |
263 | ||
264 | //@{ | |
265 | /** | |
266 | Case-sensitive comparison. | |
23324ae1 FM |
267 | Returns a positive value if the string is greater than the argument, zero if |
268 | it is equal to it or a negative value if it is less than the argument (same | |
269 | semantics | |
270 | as the standard @e strcmp() function). | |
23324ae1 FM |
271 | See also CmpNoCase(), IsSameAs(). |
272 | */ | |
328f5751 FM |
273 | int Cmp(const wxString& s) const; |
274 | const int Cmp(const wxChar* psz) const; | |
23324ae1 FM |
275 | //@} |
276 | ||
277 | //@{ | |
278 | /** | |
279 | Case-insensitive comparison. | |
23324ae1 FM |
280 | Returns a positive value if the string is greater than the argument, zero if |
281 | it is equal to it or a negative value if it is less than the argument (same | |
282 | semantics | |
283 | as the standard @e strcmp() function). | |
23324ae1 FM |
284 | See also Cmp(), IsSameAs(). |
285 | */ | |
328f5751 FM |
286 | int CmpNoCase(const wxString& s) const; |
287 | const int CmpNoCase(const wxChar* psz) const; | |
23324ae1 FM |
288 | //@} |
289 | ||
290 | /** | |
291 | Case-sensitive comparison. Returns 0 if equal, 1 if greater or -1 if less. | |
23324ae1 FM |
292 | This is a wxWidgets 1.xx compatibility function; use Cmp() instead. |
293 | */ | |
328f5751 | 294 | int CompareTo(const wxChar* psz, caseCompare cmp = exact) const; |
23324ae1 FM |
295 | |
296 | /** | |
297 | The default comparison function Cmp() is case-sensitive and | |
298 | so is the default version of IsSameAs(). For case | |
299 | insensitive comparisons you should use CmpNoCase() or | |
300 | give a second parameter to IsSameAs. This last function is may be more | |
301 | convenient if only equality of the strings matters because it returns a boolean | |
302 | @true value if the strings are the same and not 0 (which is usually @false in | |
303 | C) | |
304 | as @c Cmp() does. | |
23324ae1 FM |
305 | Matches() is a poor man's regular expression matcher: |
306 | it only understands '*' and '?' metacharacters in the sense of DOS command line | |
307 | interpreter. | |
23324ae1 FM |
308 | StartsWith() is helpful when parsing a line of |
309 | text which should start with some predefined prefix and is more efficient than | |
310 | doing direct string comparison as you would also have to precalculate the | |
311 | length of the prefix then. | |
23324ae1 | 312 | Cmp() |
3c4f71cc | 313 | |
23324ae1 | 314 | CmpNoCase() |
3c4f71cc | 315 | |
23324ae1 | 316 | IsSameAs() |
3c4f71cc | 317 | |
23324ae1 | 318 | Matches() |
3c4f71cc | 319 | |
23324ae1 | 320 | StartsWith() |
3c4f71cc | 321 | |
23324ae1 FM |
322 | EndsWith() |
323 | */ | |
324 | ||
325 | ||
326 | //@{ | |
327 | /** | |
3c4f71cc | 328 | |
23324ae1 FM |
329 | */ |
330 | bool operator ==(const wxString& x, const wxString& y); | |
7c913512 FM |
331 | bool operator ==(const wxString& x, const wxChar* t); |
332 | bool operator !=(const wxString& x, const wxString& y); | |
333 | bool operator !=(const wxString& x, const wxChar* t); | |
334 | bool operator(const wxString& x, const wxString& y); | |
335 | bool operator(const wxString& x, const wxChar* t); | |
336 | bool operator =(const wxString& x, const wxString& y); | |
337 | bool operator =(const wxString& x, const wxChar* t); | |
338 | bool operator(const wxString& x, const wxString& y); | |
339 | bool operator(const wxString& x, const wxChar* t); | |
340 | bool operator =(const wxString& x, const wxString& y); | |
341 | bool operator =(const wxString& x, const wxChar* t); | |
23324ae1 FM |
342 | //@} |
343 | ||
344 | /** | |
345 | Anything may be concatenated (appended to) with a string. However, you can't | |
346 | append something to a C string (including literal constants), so to do this it | |
347 | should be converted to a wxString first. | |
23324ae1 | 348 | @ref operatorout() "operator " |
3c4f71cc | 349 | |
23324ae1 | 350 | @ref plusequal() "operator +=" |
3c4f71cc | 351 | |
23324ae1 | 352 | @ref operatorplus() "operator +" |
3c4f71cc | 353 | |
23324ae1 | 354 | Append() |
3c4f71cc | 355 | |
23324ae1 FM |
356 | Prepend() |
357 | */ | |
358 | ||
359 | ||
360 | /** | |
361 | A string may be constructed either from a C string, (some number of copies of) | |
362 | a single character or a wide (UNICODE) string. For all constructors (except the | |
363 | default which creates an empty string) there is also a corresponding assignment | |
364 | operator. | |
23324ae1 | 365 | @ref construct() wxString |
3c4f71cc | 366 | |
23324ae1 | 367 | @ref operatorassign() "operator =" |
3c4f71cc | 368 | |
23324ae1 FM |
369 | @ref destruct() ~wxString |
370 | */ | |
371 | ||
372 | ||
373 | /** | |
374 | Returns @true if target appears anywhere in wxString; else @false. | |
23324ae1 FM |
375 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
376 | code. | |
377 | */ | |
328f5751 | 378 | bool Contains(const wxString& str) const; |
23324ae1 FM |
379 | |
380 | /** | |
381 | The string provides functions for conversion to signed and unsigned integer and | |
382 | floating point numbers. All three functions take a pointer to the variable to | |
383 | put the numeric value in and return @true if the @b entire string could be | |
384 | converted to a number. | |
23324ae1 | 385 | ToLong() |
3c4f71cc | 386 | |
23324ae1 | 387 | ToLongLong() |
3c4f71cc | 388 | |
23324ae1 | 389 | ToULong() |
3c4f71cc | 390 | |
23324ae1 | 391 | ToULongLong() |
3c4f71cc | 392 | |
23324ae1 FM |
393 | ToDouble() |
394 | */ | |
395 | ||
396 | ||
397 | /** | |
398 | Makes the string empty, but doesn't free memory occupied by the string. | |
23324ae1 FM |
399 | See also: Clear(). |
400 | */ | |
401 | void Empty(); | |
402 | ||
403 | /** | |
7c913512 | 404 | This function can be used to test if the string ends with the specified |
23324ae1 | 405 | @e suffix. If it does, the function will return @true and put the |
4cc4bfaf | 406 | beginning of the string before the suffix into @a rest string if it is not |
23324ae1 FM |
407 | @NULL. Otherwise, the function returns @false and doesn't |
408 | modify the @e rest. | |
409 | */ | |
328f5751 | 410 | bool EndsWith(const wxString& suffix, wxString rest = NULL) const; |
23324ae1 FM |
411 | |
412 | //@{ | |
413 | /** | |
414 | Searches for the given string. Returns the starting index, or @c wxNOT_FOUND if | |
415 | not found. | |
416 | */ | |
328f5751 FM |
417 | int Find(wxUniChar ch, bool fromEnd = false) const; |
418 | const int Find(const wxString& sub) const; | |
23324ae1 FM |
419 | //@} |
420 | ||
421 | //@{ | |
422 | /** | |
423 | Same as Find(). | |
23324ae1 FM |
424 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
425 | code. | |
426 | */ | |
328f5751 FM |
427 | int First(wxChar c) const; |
428 | int First(const wxChar* psz) const; | |
429 | const int First(const wxString& str) const; | |
23324ae1 FM |
430 | //@} |
431 | ||
432 | /** | |
7c913512 | 433 | This static function returns the string containing the result of calling |
23324ae1 | 434 | Printf() with the passed parameters on it. |
3c4f71cc | 435 | |
4cc4bfaf | 436 | @see FormatV(), Printf() |
23324ae1 | 437 | */ |
4cc4bfaf | 438 | static wxString Format(const wxChar format, ...); |
23324ae1 FM |
439 | |
440 | /** | |
7c913512 | 441 | This static function returns the string containing the result of calling |
23324ae1 | 442 | PrintfV() with the passed parameters on it. |
3c4f71cc | 443 | |
4cc4bfaf | 444 | @see Format(), PrintfV() |
23324ae1 FM |
445 | */ |
446 | static wxString FormatV(const wxChar format, va_list argptr); | |
447 | ||
448 | /** | |
4cc4bfaf | 449 | Returns the number of occurrences of @a ch in the string. |
23324ae1 FM |
450 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
451 | code. | |
452 | */ | |
328f5751 | 453 | int Freq(wxChar ch) const; |
23324ae1 FM |
454 | |
455 | //@{ | |
456 | /** | |
457 | Converts given buffer of binary data from 8-bit string to wxString. In Unicode | |
458 | build, the string is interpreted as being in ISO-8859-1 encoding. The version | |
4cc4bfaf | 459 | without @a len parameter takes NUL-terminated data. |
23324ae1 | 460 | This is a convenience method useful when storing binary data in wxString. |
3c4f71cc | 461 | |
e54c96f1 | 462 | @wxsince{2.8.4} |
3c4f71cc | 463 | |
4cc4bfaf | 464 | @see wxString::To8BitData |
23324ae1 FM |
465 | */ |
466 | static wxString From8BitData(const char* buf, size_t len); | |
7c913512 | 467 | static wxString From8BitData(const char* buf); |
23324ae1 FM |
468 | //@} |
469 | ||
470 | //@{ | |
471 | /** | |
472 | Converts the string or character from an ASCII, 7-bit form | |
473 | to the native wxString representation. Most useful when using | |
474 | a Unicode build of wxWidgets (note the use of @c char instead of @c wxChar). | |
475 | Use @ref construct() "wxString constructors" if you | |
476 | need to convert from another charset. | |
477 | */ | |
478 | static wxString FromAscii(const char* s); | |
7c913512 FM |
479 | static wxString FromAscii(const unsigned char* s); |
480 | static wxString FromAscii(const char* s, size_t len); | |
481 | static wxString FromAscii(const unsigned char* s, size_t len); | |
482 | static wxString FromAscii(char c); | |
23324ae1 FM |
483 | //@} |
484 | ||
485 | //@{ | |
486 | /** | |
487 | Converts C string encoded in UTF-8 to wxString. | |
4cc4bfaf | 488 | Note that this method assumes that @a s is a valid UTF-8 sequence and |
23324ae1 FM |
489 | doesn't do any validation in release builds, it's validity is only checked in |
490 | debug builds. | |
491 | */ | |
492 | static wxString FromUTF8(const char* s); | |
7c913512 | 493 | static wxString FromUTF8(const char* s, size_t len); |
23324ae1 FM |
494 | //@} |
495 | ||
496 | /** | |
4cc4bfaf | 497 | Returns the character at position @a n (read-only). |
23324ae1 | 498 | */ |
328f5751 | 499 | wxChar GetChar(size_t n) const; |
23324ae1 FM |
500 | |
501 | /** | |
502 | wxWidgets compatibility conversion. Returns a constant pointer to the data in | |
503 | the string. | |
504 | */ | |
328f5751 | 505 | const wxChar* GetData() const; |
23324ae1 FM |
506 | |
507 | /** | |
508 | Returns a reference to the character at position @e n. | |
509 | */ | |
510 | wxChar GetWritableChar(size_t n); | |
511 | ||
512 | /** | |
4cc4bfaf | 513 | Returns a writable buffer of at least @a len bytes. |
23324ae1 FM |
514 | It returns a pointer to a new memory block, and the |
515 | existing data will not be copied. | |
23324ae1 FM |
516 | Call UngetWriteBuf() as soon as |
517 | possible to put the string back into a reasonable state. | |
23324ae1 FM |
518 | This method is deprecated, please use |
519 | wxStringBuffer or | |
520 | wxStringBufferLength instead. | |
521 | */ | |
522 | wxChar* GetWriteBuf(size_t len); | |
523 | ||
524 | //@{ | |
525 | /** | |
526 | Same as Find(). | |
23324ae1 FM |
527 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
528 | code. | |
529 | */ | |
328f5751 FM |
530 | size_t Index(wxChar ch) const; |
531 | const size_t Index(const wxChar* sz) const; | |
23324ae1 FM |
532 | //@} |
533 | ||
534 | /** | |
535 | Returns @true if the string contains only ASCII characters. | |
23324ae1 FM |
536 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
537 | code. | |
538 | */ | |
328f5751 | 539 | bool IsAscii() const; |
23324ae1 FM |
540 | |
541 | /** | |
542 | Returns @true if the string is empty. | |
543 | */ | |
328f5751 | 544 | bool IsEmpty() const; |
23324ae1 FM |
545 | |
546 | /** | |
547 | Returns @true if the string is empty (same as wxString::IsEmpty). | |
23324ae1 FM |
548 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
549 | code. | |
550 | */ | |
328f5751 | 551 | bool IsNull() const; |
23324ae1 FM |
552 | |
553 | /** | |
554 | Returns @true if the string is an integer (with possible sign). | |
23324ae1 FM |
555 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
556 | code. | |
557 | */ | |
328f5751 | 558 | bool IsNumber() const; |
23324ae1 FM |
559 | |
560 | //@{ | |
561 | /** | |
562 | Test whether the string is equal to the single character @e c. The test is | |
4cc4bfaf | 563 | case-sensitive if @a caseSensitive is @true (default) or not if it is @c |
23324ae1 | 564 | @false. |
23324ae1 | 565 | Returns @true if the string is equal to the character, @false otherwise. |
23324ae1 FM |
566 | See also Cmp(), CmpNoCase() |
567 | */ | |
328f5751 FM |
568 | bool IsSameAs(const wxChar* psz, bool caseSensitive = true) const; |
569 | const bool IsSameAs(wxChar c, bool caseSensitive = true) const; | |
23324ae1 FM |
570 | //@} |
571 | ||
572 | /** | |
573 | Returns @true if the string is a word. | |
23324ae1 FM |
574 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
575 | code. | |
576 | */ | |
328f5751 | 577 | bool IsWord() const; |
23324ae1 FM |
578 | |
579 | //@{ | |
580 | /** | |
581 | Returns a reference to the last character (writable). | |
23324ae1 FM |
582 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
583 | code. | |
584 | */ | |
585 | wxChar Last(); | |
328f5751 | 586 | const wxChar Last(); |
23324ae1 FM |
587 | //@} |
588 | ||
589 | /** | |
4cc4bfaf | 590 | Returns the first @a count characters of the string. |
23324ae1 | 591 | */ |
328f5751 | 592 | wxString Left(size_t count) const; |
23324ae1 FM |
593 | |
594 | /** | |
595 | Returns the length of the string. | |
596 | */ | |
328f5751 | 597 | size_t Len() const; |
23324ae1 FM |
598 | |
599 | /** | |
600 | Returns the length of the string (same as Len). | |
23324ae1 FM |
601 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
602 | code. | |
603 | */ | |
328f5751 | 604 | size_t Length() const; |
23324ae1 FM |
605 | |
606 | /** | |
607 | Returns this string converted to the lower case. | |
608 | */ | |
328f5751 | 609 | wxString Lower() const; |
23324ae1 FM |
610 | |
611 | /** | |
612 | Same as MakeLower. | |
23324ae1 FM |
613 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
614 | code. | |
615 | */ | |
616 | void LowerCase(); | |
617 | ||
618 | /** | |
619 | Converts all characters to lower case and returns the result. | |
620 | */ | |
621 | wxString MakeLower(); | |
622 | ||
623 | /** | |
624 | Converts all characters to upper case and returns the result. | |
625 | */ | |
626 | wxString MakeUpper(); | |
627 | ||
628 | /** | |
629 | Returns @true if the string contents matches a mask containing '*' and '?'. | |
630 | */ | |
328f5751 | 631 | bool Matches(const wxString& mask) const; |
23324ae1 FM |
632 | |
633 | /** | |
7c913512 | 634 | These are "advanced" functions and they will be needed quite rarely. |
23324ae1 | 635 | Alloc() and Shrink() are only |
7c913512 | 636 | interesting for optimization purposes. |
23324ae1 FM |
637 | wxStringBuffer |
638 | and wxStringBufferLength classes may be very | |
639 | useful when working with some external API which requires the caller to provide | |
640 | a writable buffer. | |
23324ae1 | 641 | Alloc() |
3c4f71cc | 642 | |
23324ae1 | 643 | Shrink() |
3c4f71cc | 644 | |
23324ae1 | 645 | wxStringBuffer |
3c4f71cc | 646 | |
23324ae1 FM |
647 | wxStringBufferLength |
648 | */ | |
649 | ||
650 | ||
651 | /** | |
652 | Returns a substring starting at @e first, with length @e count, or the rest of | |
4cc4bfaf | 653 | the string if @a count is the default value. |
23324ae1 | 654 | */ |
328f5751 | 655 | wxString Mid(size_t first, size_t count = wxSTRING_MAXLEN) const; |
23324ae1 FM |
656 | |
657 | /** | |
658 | Other string functions. | |
23324ae1 | 659 | Trim() |
3c4f71cc | 660 | |
23324ae1 | 661 | Truncate() |
3c4f71cc | 662 | |
23324ae1 FM |
663 | Pad() |
664 | */ | |
665 | ||
666 | ||
667 | /** | |
4cc4bfaf | 668 | Adds @a count copies of @a pad to the beginning, or to the end of the string |
23324ae1 | 669 | (the default). |
23324ae1 FM |
670 | Removes spaces from the left or from the right (default). |
671 | */ | |
4cc4bfaf FM |
672 | wxString Pad(size_t count, wxChar pad = ' ', |
673 | bool fromRight = true); | |
23324ae1 FM |
674 | |
675 | /** | |
4cc4bfaf | 676 | Prepends @a str to this string, returning a reference to this string. |
23324ae1 FM |
677 | */ |
678 | wxString Prepend(const wxString& str); | |
679 | ||
680 | /** | |
681 | Similar to the standard function @e sprintf(). Returns the number of | |
682 | characters written, or an integer less than zero on error. | |
23324ae1 FM |
683 | Note that if @c wxUSE_PRINTF_POS_PARAMS is set to 1, then this function supports |
684 | Unix98-style positional parameters: | |
3c4f71cc | 685 | |
1f1d2182 | 686 | @note This function will use a safe version of @e vsprintf() (usually called |
23324ae1 FM |
687 | @e vsnprintf()) whenever available to always allocate the buffer of correct |
688 | size. Unfortunately, this function is not available on all platforms and the | |
689 | dangerous @e vsprintf() will be used then which may lead to buffer overflows. | |
690 | */ | |
4cc4bfaf | 691 | int Printf(const wxChar* pszFormat, ...); |
23324ae1 FM |
692 | |
693 | /** | |
694 | Similar to vprintf. Returns the number of characters written, or an integer | |
695 | less than zero | |
696 | on error. | |
697 | */ | |
698 | int PrintfV(const wxChar* pszFormat, va_list argPtr); | |
699 | ||
700 | //@{ | |
701 | /** | |
4cc4bfaf | 702 | Removes @a len characters from the string, starting at @e pos. |
23324ae1 FM |
703 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
704 | code. | |
705 | */ | |
706 | wxString Remove(size_t pos); | |
7c913512 | 707 | wxString Remove(size_t pos, size_t len); |
23324ae1 FM |
708 | //@} |
709 | ||
710 | /** | |
711 | Removes the last character. | |
712 | */ | |
713 | wxString RemoveLast(); | |
714 | ||
715 | /** | |
716 | Replace first (or all) occurrences of substring with another one. | |
23324ae1 | 717 | @e replaceAll: global replace (default), or only the first occurrence. |
23324ae1 FM |
718 | Returns the number of replacements made. |
719 | */ | |
720 | size_t Replace(const wxString& strOld, const wxString& strNew, | |
4cc4bfaf | 721 | bool replaceAll = true); |
23324ae1 FM |
722 | |
723 | /** | |
4cc4bfaf | 724 | Returns the last @a count characters. |
23324ae1 | 725 | */ |
328f5751 | 726 | wxString Right(size_t count) const; |
23324ae1 FM |
727 | |
728 | /** | |
7c913512 | 729 | These functions replace the standard @e strchr() and @e strstr() |
23324ae1 | 730 | functions. |
23324ae1 | 731 | Find() |
3c4f71cc | 732 | |
23324ae1 FM |
733 | Replace() |
734 | */ | |
735 | ||
736 | ||
737 | /** | |
738 | Sets the character at position @e n. | |
739 | */ | |
740 | void SetChar(size_t n, wxChar ch); | |
741 | ||
742 | /** | |
7c913512 | 743 | Minimizes the string's memory. This can be useful after a call to |
23324ae1 FM |
744 | Alloc() if too much memory were preallocated. |
745 | */ | |
746 | void Shrink(); | |
747 | ||
748 | /** | |
7c913512 | 749 | This function can be used to test if the string starts with the specified |
23324ae1 | 750 | @e prefix. If it does, the function will return @true and put the rest |
4cc4bfaf | 751 | of the string (i.e. after the prefix) into @a rest string if it is not |
23324ae1 FM |
752 | @NULL. Otherwise, the function returns @false and doesn't modify the |
753 | @e rest. | |
754 | */ | |
328f5751 | 755 | bool StartsWith(const wxString& prefix, wxString rest = NULL) const; |
23324ae1 FM |
756 | |
757 | /** | |
758 | These functions return the string length and check whether the string is empty | |
759 | or empty it. | |
23324ae1 | 760 | Len() |
3c4f71cc | 761 | |
23324ae1 | 762 | IsEmpty() |
3c4f71cc | 763 | |
23324ae1 | 764 | @ref operatornot() operator! |
3c4f71cc | 765 | |
23324ae1 | 766 | Empty() |
3c4f71cc | 767 | |
23324ae1 FM |
768 | Clear() |
769 | */ | |
770 | ||
771 | ||
772 | /** | |
773 | Strip characters at the front and/or end. The same as Trim except that it | |
774 | doesn't change this string. | |
23324ae1 FM |
775 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
776 | code. | |
777 | */ | |
328f5751 | 778 | wxString Strip(stripType s = trailing) const; |
23324ae1 FM |
779 | |
780 | /** | |
4cc4bfaf | 781 | Returns the part of the string between the indices @a from and @e to |
23324ae1 | 782 | inclusive. |
23324ae1 FM |
783 | This is a wxWidgets 1.xx compatibility function, use Mid() |
784 | instead (but note that parameters have different meaning). | |
785 | */ | |
328f5751 | 786 | wxString SubString(size_t from, size_t to) const; |
23324ae1 FM |
787 | |
788 | /** | |
789 | These functions allow to extract substring from this string. All of them don't | |
790 | modify the original string and return a new string containing the extracted | |
791 | substring. | |
23324ae1 | 792 | Mid() |
3c4f71cc | 793 | |
23324ae1 | 794 | @ref operatorparenth() operator |
3c4f71cc | 795 | |
23324ae1 | 796 | Left() |
3c4f71cc | 797 | |
23324ae1 | 798 | Right() |
3c4f71cc | 799 | |
23324ae1 | 800 | BeforeFirst() |
3c4f71cc | 801 | |
23324ae1 | 802 | BeforeLast() |
3c4f71cc | 803 | |
23324ae1 | 804 | AfterFirst() |
3c4f71cc | 805 | |
23324ae1 | 806 | AfterLast() |
3c4f71cc | 807 | |
23324ae1 | 808 | StartsWith() |
3c4f71cc | 809 | |
23324ae1 FM |
810 | EndsWith() |
811 | */ | |
812 | ||
813 | ||
814 | //@{ | |
815 | /** | |
816 | Converts the string to an 8-bit string in ISO-8859-1 encoding in the form of | |
817 | a wxCharBuffer (Unicode builds only). | |
23324ae1 | 818 | This is a convenience method useful when storing binary data in wxString. |
3c4f71cc | 819 | |
e54c96f1 | 820 | @wxsince{2.8.4} |
3c4f71cc | 821 | |
4cc4bfaf | 822 | @see wxString::From8BitData |
23324ae1 | 823 | */ |
328f5751 FM |
824 | const char* To8BitData() const; |
825 | const const wxCharBuffer To8BitData() const; | |
23324ae1 FM |
826 | //@} |
827 | ||
828 | //@{ | |
829 | /** | |
830 | Converts the string to an ASCII, 7-bit string in the form of | |
831 | a wxCharBuffer (Unicode builds only) or a C string (ANSI builds). | |
23324ae1 FM |
832 | Note that this conversion only works if the string contains only ASCII |
833 | characters. The @ref mbstr() mb_str method provides more | |
834 | powerful means of converting wxString to C string. | |
835 | */ | |
328f5751 FM |
836 | const char* ToAscii() const; |
837 | const const wxCharBuffer ToAscii() const; | |
23324ae1 FM |
838 | //@} |
839 | ||
840 | /** | |
841 | Attempts to convert the string to a floating point number. Returns @true on | |
842 | success (the number is stored in the location pointed to by @e val) or @false | |
4cc4bfaf | 843 | if the string does not represent such number (the value of @a val is not |
23324ae1 | 844 | modified in this case). |
3c4f71cc | 845 | |
4cc4bfaf | 846 | @see ToLong(), ToULong() |
23324ae1 | 847 | */ |
328f5751 | 848 | bool ToDouble(double val) const; |
23324ae1 FM |
849 | |
850 | /** | |
851 | Attempts to convert the string to a signed integer in base @e base. Returns | |
852 | @true on success in which case the number is stored in the location | |
4cc4bfaf FM |
853 | pointed to by @a val or @false if the string does not represent a |
854 | valid number in the given base (the value of @a val is not modified | |
23324ae1 | 855 | in this case). |
4cc4bfaf | 856 | The value of @a base must be comprised between 2 and 36, inclusive, or |
23324ae1 FM |
857 | be a special value 0 which means that the usual rules of @c C numbers are |
858 | applied: if the number starts with @c 0x it is considered to be in base | |
859 | 16, if it starts with @c 0 - in base 8 and in base 10 otherwise. Note | |
860 | that you may not want to specify the base 0 if you are parsing the numbers | |
861 | which may have leading zeroes as they can yield unexpected (to the user not | |
862 | familiar with C) results. | |
3c4f71cc | 863 | |
4cc4bfaf | 864 | @see ToDouble(), ToULong() |
23324ae1 | 865 | */ |
328f5751 | 866 | bool ToLong(long val, int base = 10) const; |
23324ae1 FM |
867 | |
868 | /** | |
869 | This is exactly the same as ToLong() but works with 64 | |
870 | bit integer numbers. | |
23324ae1 FM |
871 | Notice that currently it doesn't work (always returns @false) if parsing of 64 |
872 | bit numbers is not supported by the underlying C run-time library. Compilers | |
873 | with C99 support and Microsoft Visual C++ version 7 and higher do support this. | |
3c4f71cc | 874 | |
4cc4bfaf | 875 | @see ToLong(), ToULongLong() |
23324ae1 | 876 | */ |
328f5751 | 877 | bool ToLongLong(wxLongLong_t val, int base = 10) const; |
23324ae1 FM |
878 | |
879 | /** | |
880 | Attempts to convert the string to an unsigned integer in base @e base. | |
881 | Returns @true on success in which case the number is stored in the | |
4cc4bfaf FM |
882 | location pointed to by @a val or @false if the string does not |
883 | represent a valid number in the given base (the value of @a val is not | |
23324ae1 FM |
884 | modified in this case). Please notice that this function |
885 | behaves in the same way as the standard @c strtoul() and so it simply | |
886 | converts negative numbers to unsigned representation instead of rejecting them | |
887 | (e.g. -1 is returned as @c ULONG_MAX). | |
23324ae1 | 888 | See ToLong() for the more detailed |
4cc4bfaf | 889 | description of the @a base parameter. |
3c4f71cc | 890 | |
4cc4bfaf | 891 | @see ToDouble(), ToLong() |
23324ae1 | 892 | */ |
328f5751 | 893 | bool ToULong(unsigned long val, int base = 10) const; |
23324ae1 FM |
894 | |
895 | /** | |
896 | This is exactly the same as ToULong() but works with 64 | |
897 | bit integer numbers. | |
23324ae1 FM |
898 | Please see ToLongLong() for additional remarks. |
899 | */ | |
328f5751 | 900 | bool ToULongLong(wxULongLong_t val, int base = 10) const; |
23324ae1 FM |
901 | |
902 | //@{ | |
903 | /** | |
904 | Same as @ref wxString::utf8str utf8_str. | |
905 | */ | |
328f5751 FM |
906 | const char* ToUTF8() const; |
907 | const const wxCharBuffer ToUF8() const; | |
23324ae1 FM |
908 | //@} |
909 | ||
910 | /** | |
911 | Removes white-space (space, tabs, form feed, newline and carriage return) from | |
912 | the left or from the right end of the string (right is default). | |
913 | */ | |
4cc4bfaf | 914 | wxString Trim(bool fromRight = true); |
23324ae1 FM |
915 | |
916 | /** | |
917 | Truncate the string to the given length. | |
918 | */ | |
919 | wxString Truncate(size_t len); | |
920 | ||
921 | //@{ | |
922 | /** | |
923 | Puts the string back into a reasonable state (in which it can be used | |
924 | normally), after | |
925 | GetWriteBuf() was called. | |
4cc4bfaf | 926 | The version of the function without the @a len parameter will calculate the |
23324ae1 FM |
927 | new string length itself assuming that the string is terminated by the first |
928 | @c NUL character in it while the second one will use the specified length | |
929 | and thus is the only version which should be used with the strings with | |
7c913512 | 930 | embedded @c NULs (it is also slightly more efficient as @c strlen() |
23324ae1 | 931 | doesn't have to be called). |
23324ae1 FM |
932 | This method is deprecated, please use |
933 | wxStringBuffer or | |
934 | wxStringBufferLength instead. | |
935 | */ | |
936 | void UngetWriteBuf(); | |
7c913512 | 937 | void UngetWriteBuf(size_t len); |
23324ae1 FM |
938 | //@} |
939 | ||
940 | /** | |
941 | Returns this string converted to upper case. | |
942 | */ | |
328f5751 | 943 | wxString Upper() const; |
23324ae1 FM |
944 | |
945 | /** | |
946 | The same as MakeUpper. | |
23324ae1 FM |
947 | This is a wxWidgets 1.xx compatibility function; you should not use it in new |
948 | code. | |
949 | */ | |
950 | void UpperCase(); | |
951 | ||
952 | /** | |
953 | Both formatted versions (wxString::Printf) and stream-like | |
7c913512 | 954 | insertion operators exist (for basic types only). Additionally, the |
23324ae1 FM |
955 | Format() function allows to use simply append |
956 | formatted value to a string: | |
3c4f71cc | 957 | |
23324ae1 | 958 | Format() |
3c4f71cc | 959 | |
23324ae1 | 960 | FormatV() |
3c4f71cc | 961 | |
23324ae1 | 962 | Printf() |
3c4f71cc | 963 | |
23324ae1 | 964 | PrintfV() |
3c4f71cc | 965 | |
23324ae1 FM |
966 | @ref operatorout() "operator " |
967 | */ | |
968 | ||
969 | ||
970 | /** | |
971 | Returns a pointer to the string data (@c const char* in ANSI build, | |
972 | @c const wchar_t* in Unicode build). | |
23324ae1 FM |
973 | Note that the returned value is not convertible to @c char* or |
974 | @c wchar_t*, use @ref charstr() char_str or | |
975 | @ref wcharstr() wchar_string if you need to pass string value | |
976 | to a function expecting non-const pointer. | |
3c4f71cc | 977 | |
4cc4bfaf FM |
978 | @see @ref mbstr() mb_str, @ref wcstr() wc_str, @ref |
979 | fnstr() fn_str, @ref charstr() char_str, @ref | |
980 | wcharstr() wchar_string | |
23324ae1 | 981 | */ |
328f5751 | 982 | const wxChar* c_str() const; |
23324ae1 FM |
983 | |
984 | /** | |
985 | Returns an object with string data that is implicitly convertible to | |
986 | @c char* pointer. Note that any change to the returned buffer is lost and so | |
987 | this function is only usable for passing strings to legacy libraries that | |
988 | don't have const-correct API. Use wxStringBuffer if | |
989 | you want to modify the string. | |
3c4f71cc | 990 | |
4cc4bfaf FM |
991 | @see @ref mbstr() mb_str, @ref wcstr() wc_str, @ref |
992 | fnstr() fn_str, @ref cstr() c_str, @ref | |
993 | wcharstr() wchar_str | |
23324ae1 | 994 | */ |
328f5751 | 995 | wxWritableCharBuffer char_str(const wxMBConv& conv = wxConvLibc) const; |
23324ae1 FM |
996 | |
997 | //@{ | |
998 | /** | |
999 | Returns string representation suitable for passing to OS' functions for | |
1000 | file handling. In ANSI build, this is same as @ref cstr() c_str. | |
1001 | In Unicode build, returned value can be either wide character string | |
1002 | or C string in charset matching the @c wxConvFileName object, depending on | |
1003 | the OS. | |
3c4f71cc | 1004 | |
4cc4bfaf | 1005 | @see wxMBConv, @ref wcstr() wc_str, @ref wcstr() mb_str |
23324ae1 | 1006 | */ |
328f5751 FM |
1007 | const wchar_t* fn_str() const; |
1008 | const const char* fn_str() const; | |
1009 | const const wxCharBuffer fn_str() const; | |
23324ae1 FM |
1010 | //@} |
1011 | ||
1012 | //@{ | |
1013 | /** | |
1014 | Returns multibyte (C string) representation of the string. | |
1015 | In Unicode build, converts using @e conv's wxMBConv::cWC2MB | |
1016 | method and returns wxCharBuffer. In ANSI build, this function is same | |
1017 | as @ref cstr() c_str. | |
1018 | The macro wxWX2MBbuf is defined as the correct return type (without const). | |
3c4f71cc | 1019 | |
4cc4bfaf FM |
1020 | @see wxMBConv, @ref cstr() c_str, @ref wcstr() wc_str, @ref |
1021 | fnstr() fn_str, @ref charstr() char_str | |
23324ae1 | 1022 | */ |
328f5751 FM |
1023 | const char* mb_str(const wxMBConv& conv = wxConvLibc) const; |
1024 | const const wxCharBuffer mb_str(const wxMBConv& conv = wxConvLibc) const; | |
23324ae1 FM |
1025 | //@} |
1026 | ||
1027 | /** | |
1028 | Extraction from a stream. | |
1029 | */ | |
1030 | friend istream operator(istream& is, wxString& str); | |
1031 | ||
1032 | //@{ | |
1033 | /** | |
1034 | These functions work as C++ stream insertion operators: they insert the given | |
1035 | value into the string. Precision or format cannot be set using them, you can | |
7c913512 | 1036 | use |
23324ae1 FM |
1037 | Printf() for this. |
1038 | */ | |
1039 | wxString operator(const wxString& str); | |
7c913512 FM |
1040 | wxString operator(const wxChar* psz); |
1041 | wxString operator(wxChar ch); | |
1042 | wxString operator(int i); | |
1043 | wxString operator(float f); | |
1044 | wxString operator(double d); | |
23324ae1 FM |
1045 | //@} |
1046 | ||
1047 | /** | |
1048 | Same as Mid (substring extraction). | |
1049 | */ | |
1050 | wxString operator ()(size_t start, size_t len); | |
1051 | ||
1052 | //@{ | |
1053 | /** | |
1054 | Concatenation: all these operators return a new string equal to the | |
1055 | concatenation of the operands. | |
1056 | */ | |
1057 | wxString operator +(const wxString& x, const wxString& y); | |
7c913512 FM |
1058 | wxString operator +(const wxString& x, const wxChar* y); |
1059 | wxString operator +(const wxString& x, wxChar y); | |
1060 | wxString operator +(const wxChar* x, const wxString& y); | |
23324ae1 FM |
1061 | //@} |
1062 | ||
1063 | //@{ | |
1064 | /** | |
1065 | Concatenation in place: the argument is appended to the string. | |
1066 | */ | |
1067 | void operator +=(const wxString& str); | |
7c913512 FM |
1068 | void operator +=(const wxChar* psz); |
1069 | void operator +=(wxChar c); | |
23324ae1 FM |
1070 | //@} |
1071 | ||
1072 | //@{ | |
1073 | /** | |
1074 | Assignment: the effect of each operation is the same as for the corresponding | |
1075 | constructor (see @ref construct() "wxString constructors"). | |
1076 | */ | |
1077 | wxString operator =(const wxString& str); | |
7c913512 FM |
1078 | wxString operator =(const wxChar* psz); |
1079 | wxString operator =(wxChar c); | |
23324ae1 FM |
1080 | //@} |
1081 | ||
1082 | //@{ | |
1083 | /** | |
1084 | Element extraction. | |
1085 | */ | |
328f5751 FM |
1086 | wxChar operator [](size_t i) const; |
1087 | wxChar operator [](size_t i) const; | |
1088 | const wxChar operator [](int i) const; | |
1089 | wxChar operator [](int i) const; | |
23324ae1 FM |
1090 | //@} |
1091 | ||
1092 | /** | |
1093 | Implicit conversion to a C string. | |
1094 | */ | |
328f5751 | 1095 | operator const wxChar*() const; |
23324ae1 FM |
1096 | |
1097 | /** | |
1098 | Empty string is @false, so !string will only return @true if the string is | |
1099 | empty. | |
1100 | This allows the tests for @NULLness of a @e const wxChar * pointer and emptiness | |
1101 | of the string to look the same in the code and makes it easier to port old code | |
1102 | to wxString. | |
23324ae1 FM |
1103 | See also IsEmpty(). |
1104 | */ | |
328f5751 | 1105 | bool operator!() const; |
23324ae1 FM |
1106 | |
1107 | /** | |
1108 | The supported functions are only listed here, please see any STL reference for | |
1109 | their documentation. | |
1110 | */ | |
1111 | ||
1112 | ||
1113 | //@{ | |
1114 | /** | |
1115 | Converts the strings contents to UTF-8 and returns it either as a temporary | |
1116 | wxCharBuffer object or as a pointer to the internal string contents in | |
1117 | UTF-8 build. | |
1118 | */ | |
328f5751 FM |
1119 | const char* utf8_str() const; |
1120 | const const wxCharBuffer utf8_str() const; | |
23324ae1 FM |
1121 | //@} |
1122 | ||
1123 | //@{ | |
1124 | /** | |
1125 | Returns wide character representation of the string. | |
1126 | In ANSI build, converts using @e conv's wxMBConv::cMB2WC | |
1127 | method and returns wxWCharBuffer. In Unicode build, this function is same | |
1128 | as @ref cstr() c_str. | |
1129 | The macro wxWX2WCbuf is defined as the correct return type (without const). | |
3c4f71cc | 1130 | |
4cc4bfaf FM |
1131 | @see wxMBConv, @ref cstr() c_str, @ref wcstr() mb_str, @ref |
1132 | fnstr() fn_str, @ref wcharstr() wchar_str | |
23324ae1 | 1133 | */ |
328f5751 FM |
1134 | const wchar_t* wc_str(const wxMBConv& conv) const; |
1135 | const const wxWCharBuffer wc_str(const wxMBConv& conv) const; | |
23324ae1 FM |
1136 | //@} |
1137 | ||
1138 | /** | |
1139 | Returns an object with string data that is implicitly convertible to | |
1140 | @c char* pointer. Note that changes to the returned buffer may or may | |
1141 | not be lost (depending on the build) and so this function is only usable for | |
1142 | passing strings to legacy libraries that don't have const-correct API. Use | |
1143 | wxStringBuffer if you want to modify the string. | |
3c4f71cc | 1144 | |
4cc4bfaf FM |
1145 | @see @ref mbstr() mb_str, @ref wcstr() wc_str, @ref |
1146 | fnstr() fn_str, @ref cstr() c_str, @ref | |
1147 | charstr() char_str | |
23324ae1 | 1148 | */ |
328f5751 | 1149 | wxWritableWCharBuffer wchar_str() const; |
23324ae1 FM |
1150 | |
1151 | /** | |
1152 | These functions are deprecated, please consider using new wxWidgets 2.0 | |
1153 | functions instead of them (or, even better, std::string compatible variants). | |
23324ae1 | 1154 | CompareTo() |
3c4f71cc | 1155 | |
23324ae1 | 1156 | Contains() |
3c4f71cc | 1157 | |
23324ae1 | 1158 | First() |
3c4f71cc | 1159 | |
23324ae1 | 1160 | Freq() |
3c4f71cc | 1161 | |
23324ae1 | 1162 | Index() |
3c4f71cc | 1163 | |
23324ae1 | 1164 | IsAscii() |
3c4f71cc | 1165 | |
23324ae1 | 1166 | IsNull() |
3c4f71cc | 1167 | |
23324ae1 | 1168 | IsNumber() |
3c4f71cc | 1169 | |
23324ae1 | 1170 | IsWord() |
3c4f71cc | 1171 | |
23324ae1 | 1172 | Last() |
3c4f71cc | 1173 | |
23324ae1 | 1174 | Length() |
3c4f71cc | 1175 | |
23324ae1 | 1176 | LowerCase() |
3c4f71cc | 1177 | |
23324ae1 | 1178 | Remove() |
3c4f71cc | 1179 | |
23324ae1 | 1180 | Strip() |
3c4f71cc | 1181 | |
23324ae1 | 1182 | SubString() |
3c4f71cc | 1183 | |
23324ae1 FM |
1184 | UpperCase() |
1185 | */ | |
1186 | }; | |
1187 | ||
1188 | ||
e54c96f1 FM |
1189 | /** |
1190 | FIXME | |
1191 | */ | |
1192 | wxString Objects: | |
1193 | ; | |
1194 | ||
1195 | /** | |
1196 | FIXME | |
1197 | */ | |
1198 | wxString wxEmptyString; | |
1199 | ||
1200 | ||
1201 | ||
1202 | ||
23324ae1 FM |
1203 | /** |
1204 | @class wxStringBufferLength | |
1205 | @wxheader{string.h} | |
7c913512 FM |
1206 | |
1207 | This tiny class allows to conveniently access the wxString | |
23324ae1 FM |
1208 | internal buffer as a writable pointer without any risk of forgetting to restore |
1209 | the string to the usable state later, and allows the user to set the internal | |
1210 | length of the string. | |
7c913512 FM |
1211 | |
1212 | For example, assuming you have a low-level OS function called | |
23324ae1 FM |
1213 | @c int GetMeaningOfLifeAsString(char *) copying the value in the provided |
1214 | buffer (which must be writable, of course), and returning the actual length | |
1215 | of the string, you might call it like this: | |
7c913512 | 1216 | |
23324ae1 FM |
1217 | @code |
1218 | wxString theAnswer; | |
1219 | wxStringBuffer theAnswerBuffer(theAnswer, 1024); | |
1220 | int nLength = GetMeaningOfLifeAsString(theAnswerBuffer); | |
1221 | theAnswerBuffer.SetLength(nLength); | |
1222 | if ( theAnswer != "42" ) | |
1223 | { | |
1224 | wxLogError("Something is very wrong!"); | |
1225 | } | |
1226 | @endcode | |
7c913512 | 1227 | |
23324ae1 FM |
1228 | Note that the exact usage of this depends on whether on not wxUSE_STL is |
1229 | enabled. If | |
1230 | wxUSE_STL is enabled, wxStringBuffer creates a separate empty character buffer, | |
1231 | and | |
1232 | if wxUSE_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same | |
1233 | buffer | |
1234 | wxString uses intact. In other words, relying on wxStringBuffer containing the | |
7c913512 | 1235 | old |
23324ae1 FM |
1236 | wxString data is probably not a good idea if you want to build your program in |
1237 | both | |
1238 | with and without wxUSE_STL. | |
7c913512 | 1239 | |
23324ae1 | 1240 | Note that SetLength @c must be called before wxStringBufferLength destructs. |
7c913512 | 1241 | |
23324ae1 FM |
1242 | @library{wxbase} |
1243 | @category{FIXME} | |
1244 | */ | |
7c913512 | 1245 | class wxStringBufferLength |
23324ae1 FM |
1246 | { |
1247 | public: | |
1248 | /** | |
1249 | Constructs a writable string buffer object associated with the given string | |
4cc4bfaf | 1250 | and containing enough space for at least @a len characters. Basically, this |
23324ae1 FM |
1251 | is equivalent to calling wxString::GetWriteBuf and |
1252 | saving the result. | |
1253 | */ | |
1254 | wxStringBufferLength(const wxString& str, size_t len); | |
1255 | ||
1256 | /** | |
7c913512 | 1257 | Restores the string passed to the constructor to the usable state by calling |
23324ae1 FM |
1258 | wxString::UngetWriteBuf on it. |
1259 | */ | |
1260 | ~wxStringBufferLength(); | |
1261 | ||
1262 | /** | |
7c913512 | 1263 | Sets the internal length of the string referred to by wxStringBufferLength to |
4cc4bfaf | 1264 | @a nLength characters. |
23324ae1 FM |
1265 | Must be called before wxStringBufferLength destructs. |
1266 | */ | |
1267 | void SetLength(size_t nLength); | |
1268 | ||
1269 | /** | |
1270 | Returns the writable pointer to a buffer of the size at least equal to the | |
1271 | length specified in the constructor. | |
1272 | */ | |
4cc4bfaf | 1273 | wxChar* operator wxChar *(); |
23324ae1 FM |
1274 | }; |
1275 |