/usr/include/fox-1.6/FXString.h is in libfox-1.6-dev 1.6.49-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 | /********************************************************************************
* *
* S t r i n g O b j e c t *
* *
*********************************************************************************
* Copyright (C) 1997,2006 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
*********************************************************************************
* $Id: FXString.h,v 1.120 2006/02/20 03:32:12 fox Exp $ *
********************************************************************************/
#ifndef FXSTRING_H
#define FXSTRING_H
namespace FX {
/**
* FXString provides essential string manipulation capabilities.
*/
class FXAPI FXString {
private:
FXchar* str;
public:
static const FXchar null[];
static const FXchar hex[17];
static const FXchar HEX[17];
public:
static const signed char utfBytes[256];
public:
/// Create empty string
FXString();
/// Copy construct
FXString(const FXString& s);
/// Construct and init from string
FXString(const FXchar* s);
/// Construct and init from wide character string
FXString(const FXwchar* s);
/// Construct and init from narrow character string
FXString(const FXnchar* s);
/// Construct and init with substring
FXString(const FXchar* s,FXint n);
/// Construct and init with wide character substring
FXString(const FXwchar* s,FXint n);
/// Construct and init with narrow character substring
FXString(const FXnchar* s,FXint n);
/// Construct and fill with constant
FXString(FXchar c,FXint n);
/// Length of text in bytes
FXint length() const { return *(((FXint*)str)-1); }
/// Change the length of the string to len
void length(FXint len);
/// Count number of utf8 characters
FXint count() const;
/// Count number of utf8 characters in subrange
FXint count(FXint pos,FXint len) const;
/// Return byte offset of utf8 character at index
FXint offset(FXint indx) const;
/// Return index of utf8 character at byte offset
FXint index(FXint offs) const;
/// Validate position to point to begin of utf8 character
FXint validate(FXint p) const;
/// Return extent of utf8 character at position
FXint extent(FXint p) const { return utfBytes[(FXuchar)str[p]]; }
/// Return start of next utf8 character
FXint inc(FXint p) const;
/// Return start of previous utf8 character
FXint dec(FXint p) const;
/// Get text contents
const FXchar* text() const { return (const FXchar*)str; }
/// See if string is empty
bool empty() const { return (((FXint*)str)[-1]==0); }
/// See if string is empty
bool operator!() const { return (((FXint*)str)[-1]==0); }
/// Return a non-const reference to the ith character
FXchar& operator[](FXint i){ return str[i]; }
/// Return a const reference to the ith character
const FXchar& operator[](FXint i) const { return str[i]; }
/// Return a non-const reference to the ith character
FXchar& at(FXint i){ return str[i]; }
/// Return a const reference to the ith character
const FXchar& at(FXint i) const { return str[i]; }
/// Return wide character starting at offset i
FXwchar wc(FXint i) const;
/// Assign a string to this
FXString& operator=(const FXchar* s);
/// Assign a wide character string to this
FXString& operator=(const FXwchar* s);
/// Assign a narrow character string to this
FXString& operator=(const FXnchar* s);
/// Assign another string to this
FXString& operator=(const FXString& s);
/// Convert to lower case
FXString& lower();
/// Convert to upper case
FXString& upper();
/// Return num partition(s) beginning at start from a string separated by delimiters delim.
FXString section(FXchar delim,FXint start,FXint num=1) const;
/// Return num partition(s) beginning at start from a string separated by set of delimiters from delim of size n
FXString section(const FXchar* delim,FXint n,FXint start,FXint num) const;
/// Return num partition(s) beginning at start from a string separated by set of delimiters from delim.
FXString section(const FXchar* delim,FXint start,FXint num=1) const;
/// Return num partition(s) beginning at start from a string separated by set of delimiters from delim.
FXString section(const FXString& delim,FXint start,FXint num=1) const;
/// Adopt string s, leaving s empty
FXString& adopt(FXString& s);
/// Assign character c to this string
FXString& assign(FXchar c);
/// Assign n characters c to this string
FXString& assign(FXchar c,FXint n);
/// Assign first n characters of string s to this string
FXString& assign(const FXchar *s,FXint n);
/// Assign first n characters of wide character string s to this string
FXString& assign(const FXwchar *s,FXint n);
/// Assign first n characters of narrow character string s to this string
FXString& assign(const FXnchar *s,FXint n);
/// Assign string s to this string
FXString& assign(const FXchar* s);
/// Assign wide character string s to this string
FXString& assign(const FXwchar* s);
/// Assign narrow character string s to this string
FXString& assign(const FXnchar* s);
/// Assign string s to this string
FXString& assign(const FXString& s);
/// Insert character at specified position
FXString& insert(FXint pos,FXchar c);
/// Insert n characters c at specified position
FXString& insert(FXint pos,FXchar c,FXint n);
/// Insert first n characters of string at specified position
FXString& insert(FXint pos,const FXchar* s,FXint n);
/// Insert first n characters of wide character string at specified position
FXString& insert(FXint pos,const FXwchar* s,FXint n);
/// Insert first n characters of narrow character string at specified position
FXString& insert(FXint pos,const FXnchar* s,FXint n);
/// Insert string at specified position
FXString& insert(FXint pos,const FXchar* s);
/// Insert wide character string at specified position
FXString& insert(FXint pos,const FXwchar* s);
/// Insert narrow character string at specified position
FXString& insert(FXint pos,const FXnchar* s);
/// Insert string at specified position
FXString& insert(FXint pos,const FXString& s);
/// Prepend string with input character
FXString& prepend(FXchar c);
/// Prepend string with n characters c
FXString& prepend(FXchar c,FXint n);
/// Prepend first n characters of string s
FXString& prepend(const FXchar* s,FXint n);
/// Prepend first n characters of wide character string s
FXString& prepend(const FXwchar* s,FXint n);
/// Prepend first n characters of narrow character string s
FXString& prepend(const FXnchar* s,FXint n);
/// Prepend string with string s
FXString& prepend(const FXchar* s);
/// Prepend string with wide character string
FXString& prepend(const FXwchar* s);
/// Prepend string with narrow character string
FXString& prepend(const FXnchar* s);
/// Prepend string with string s
FXString& prepend(const FXString& s);
/// Append character c to this string
FXString& append(FXchar c);
/// Append n characters c to this string
FXString& append(FXchar c,FXint n);
/// Append first n characters of string s to this string
FXString& append(const FXchar* s,FXint n);
/// Append first n characters of wide character string s to this string
FXString& append(const FXwchar* s,FXint n);
/// Append first n characters of narrow character string s to this string
FXString& append(const FXnchar* s,FXint n);
/// Append string s to this string
FXString& append(const FXchar* s);
/// Append wide character string s to this string
FXString& append(const FXwchar* s);
/// Append narrow character string s to this string
FXString& append(const FXnchar* s);
/// Append string s to this string
FXString& append(const FXString& s);
/// Replace a single character
FXString& replace(FXint pos,FXchar c);
/// Replace the m characters at pos with n characters c
FXString& replace(FXint pos,FXint m,FXchar c,FXint n);
/// Replaces the m characters at pos with first n characters of string s
FXString& replace(FXint pos,FXint m,const FXchar* s,FXint n);
/// Replaces the m characters at pos with first n characters of wide character string s
FXString& replace(FXint pos,FXint m,const FXwchar* s,FXint n);
/// Replaces the m characters at pos with first n characters of narrow character string s
FXString& replace(FXint pos,FXint m,const FXnchar* s,FXint n);
/// Replace the m characters at pos with string s
FXString& replace(FXint pos,FXint m,const FXchar* s);
/// Replace the m characters at pos with wide character string s
FXString& replace(FXint pos,FXint m,const FXwchar* s);
/// Replace the m characters at pos with narrow character string s
FXString& replace(FXint pos,FXint m,const FXnchar* s);
/// Replace the m characters at pos with string s
FXString& replace(FXint pos,FXint m,const FXString& s);
/// Move range of m characters from src position to dst position
FXString& move(FXint dst,FXint src,FXint n);
/// Remove one character
FXString& erase(FXint pos);
/// Remove substring
FXString& erase(FXint pos,FXint n);
/// Return number of occurrences of ch in string
FXint contains(FXchar ch) const;
/// Return number of occurrences of string sub in string
FXint contains(const FXchar* sub,FXint n) const;
/// Return number of occurrences of string sub in string
FXint contains(const FXchar* sub) const;
/// Return number of occurrences of string sub in string
FXint contains(const FXString& sub) const;
/// Substitute one character by another
FXString& substitute(FXchar org,FXchar sub,bool all=true);
/// Substitute one string by another
FXString& substitute(const FXchar* org,FXint olen,const FXchar *rep,FXint rlen,bool all=true);
/// Substitute one string by another
FXString& substitute(const FXchar* org,const FXchar *rep,bool all=true);
/// Substitute one string by another
FXString& substitute(const FXString& org,const FXString& rep,bool all=true);
/// Simplify whitespace in string
FXString& simplify();
/// Remove leading and trailing whitespace
FXString& trim();
/// Remove leading whitespace
FXString& trimBegin();
/// Remove trailing whitespace
FXString& trimEnd();
/// Truncate string at pos
FXString& trunc(FXint pos);
/// Clear
FXString& clear();
/// Get left most part
FXString left(FXint n) const;
/// Get right most part
FXString right(FXint n) const;
/// Get some part in the middle
FXString mid(FXint pos,FXint n) const;
/**
* Return all characters before the n-th occurrence of ch,
* searching from the beginning of the string. If the character
* is not found, return the entire string. If n<=0, return
* the empty string.
*/
FXString before(FXchar ch,FXint n=1) const;
/**
* Return all characters before the n-th occurrence of ch,
* searching from the end of the string. If the character
* is not found, return the empty string. If n<=0, return
* the entire string.
*/
FXString rbefore(FXchar ch,FXint n=1) const;
/**
* Return all characters after the nth occurrence of ch,
* searching from the beginning of the string. If the character
* is not found, return the empty string. If n<=0, return
* the entire string.
*/
FXString after(FXchar ch,FXint n=1) const;
/**
* Return all characters after the nth occurrence of ch,
* searching from the end of the string. If the character
* is not found, return the entire string. If n<=0, return
* the empty string.
*/
FXString rafter(FXchar ch,FXint n=1) const;
/// Find a character, searching forward; return position or -1
FXint find(FXchar c,FXint pos=0) const;
/// Find a character, searching backward; return position or -1
FXint rfind(FXchar c,FXint pos=2147483647) const;
/// Find n-th occurrence of character, searching forward; return position or -1
FXint find(FXchar c,FXint pos,FXint n) const;
/// Find n-th occurrence of character, searching backward; return position or -1
FXint rfind(FXchar c,FXint pos,FXint n) const;
/// Find a substring of length n, searching forward; return position or -1
FXint find(const FXchar* substr,FXint n,FXint pos) const;
/// Find a substring of length n, searching backward; return position or -1
FXint rfind(const FXchar* substr,FXint n,FXint pos) const;
/// Find a substring, searching forward; return position or -1
FXint find(const FXchar* substr,FXint pos=0) const;
/// Find a substring, searching backward; return position or -1
FXint rfind(const FXchar* substr,FXint pos=2147483647) const;
/// Find a substring, searching forward; return position or -1
FXint find(const FXString& substr,FXint pos=0) const;
/// Find a substring, searching backward; return position or -1
FXint rfind(const FXString& substr,FXint pos=2147483647) const;
/// Find first character in the set of size n, starting from pos; return position or -1
FXint find_first_of(const FXchar* set,FXint n,FXint pos) const;
/// Find first character in the set, starting from pos; return position or -1
FXint find_first_of(const FXchar* set,FXint pos=0) const;
/// Find first character in the set, starting from pos; return position or -1
FXint find_first_of(const FXString& set,FXint pos=0) const;
/// Find first character, starting from pos; return position or -1
FXint find_first_of(FXchar c,FXint pos=0) const;
/// Find last character in the set of size n, starting from pos; return position or -1
FXint find_last_of(const FXchar* set,FXint n,FXint pos) const;
/// Find last character in the set, starting from pos; return position or -1
FXint find_last_of(const FXchar* set,FXint pos=2147483647) const;
/// Find last character in the set, starting from pos; return position or -1
FXint find_last_of(const FXString& set,FXint pos=2147483647) const;
/// Find last character, starting from pos; return position or -1
FXint find_last_of(FXchar c,FXint pos=0) const;
/// Find first character NOT in the set of size n, starting from pos; return position or -1
FXint find_first_not_of(const FXchar* set,FXint n,FXint pos) const;
/// Find first character NOT in the set, starting from pos; return position or -1
FXint find_first_not_of(const FXchar* set,FXint pos=0) const;
/// Find first character NOT in the set, starting from pos; return position or -1
FXint find_first_not_of(const FXString& set,FXint pos=0) const;
/// Find first character NOT equal to c, starting from pos; return position or -1
FXint find_first_not_of(FXchar c,FXint pos=0) const;
/// Find last character NOT in the set of size n, starting from pos; return position or -1
FXint find_last_not_of(const FXchar* set,FXint n,FXint pos) const;
/// Find last character NOT in the set, starting from pos; return position or -1
FXint find_last_not_of(const FXchar* set,FXint pos=2147483647) const;
/// Find last character NOT in the set, starting from pos; return position or -1
FXint find_last_not_of(const FXString& set,FXint pos=2147483647) const;
/// Find last character NOT equal to c, starting from pos; return position or -1
FXint find_last_not_of(FXchar c,FXint pos=0) const;
/// Format a string a-la printf
FXString& format(const FXchar* fmt,...) FX_PRINTF(2,3) ;
FXString& vformat(const FXchar* fmt,va_list args);
/// Scan a string a-la scanf
FXint scan(const FXchar* fmt,...) const FX_SCANF(2,3) ;
FXint vscan(const FXchar* fmt,va_list args) const;
/// Get hash value
FXuint hash() const;
/// Compare
friend FXAPI FXint compare(const FXchar* s1,const FXchar* s2);
friend FXAPI FXint compare(const FXchar* s1,const FXString& s2);
friend FXAPI FXint compare(const FXString& s1,const FXchar* s2);
friend FXAPI FXint compare(const FXString& s1,const FXString& s2);
/// Compare up to n
friend FXAPI FXint compare(const FXchar* s1,const FXchar* s2,FXint n);
friend FXAPI FXint compare(const FXchar* s1,const FXString& s2,FXint n);
friend FXAPI FXint compare(const FXString& s1,const FXchar* s2,FXint n);
friend FXAPI FXint compare(const FXString& s1,const FXString& s2,FXint n);
/// Compare case insensitive
friend FXAPI FXint comparecase(const FXchar* s1,const FXchar* s2);
friend FXAPI FXint comparecase(const FXchar* s1,const FXString& s2);
friend FXAPI FXint comparecase(const FXString& s1,const FXchar* s2);
friend FXAPI FXint comparecase(const FXString& s1,const FXString& s2);
/// Compare case insensitive up to n
friend FXAPI FXint comparecase(const FXchar* s1,const FXchar* s2,FXint n);
friend FXAPI FXint comparecase(const FXchar* s1,const FXString& s2,FXint n);
friend FXAPI FXint comparecase(const FXString& s1,const FXchar* s2,FXint n);
friend FXAPI FXint comparecase(const FXString& s1,const FXString& s2,FXint n);
/// Compare with numeric interpretation
friend FXAPI FXint compareversion(const FXchar* s1,const FXchar* s2);
friend FXAPI FXint compareversion(const FXchar* s1,const FXString& s2);
friend FXAPI FXint compareversion(const FXString& s1,const FXchar* s2);
friend FXAPI FXint compareversion(const FXString& s1,const FXString& s2);
/// Comparison operators
friend FXAPI bool operator==(const FXString& s1,const FXString& s2);
friend FXAPI bool operator==(const FXString& s1,const FXchar* s2);
friend FXAPI bool operator==(const FXchar* s1,const FXString& s2);
friend FXAPI bool operator!=(const FXString& s1,const FXString& s2);
friend FXAPI bool operator!=(const FXString& s1,const FXchar* s2);
friend FXAPI bool operator!=(const FXchar* s1,const FXString& s2);
friend FXAPI bool operator<(const FXString& s1,const FXString& s2);
friend FXAPI bool operator<(const FXString& s1,const FXchar* s2);
friend FXAPI bool operator<(const FXchar* s1,const FXString& s2);
friend FXAPI bool operator<=(const FXString& s1,const FXString& s2);
friend FXAPI bool operator<=(const FXString& s1,const FXchar* s2);
friend FXAPI bool operator<=(const FXchar* s1,const FXString& s2);
friend FXAPI bool operator>(const FXString& s1,const FXString& s2);
friend FXAPI bool operator>(const FXString& s1,const FXchar* s2);
friend FXAPI bool operator>(const FXchar* s1,const FXString& s2);
friend FXAPI bool operator>=(const FXString& s1,const FXString& s2);
friend FXAPI bool operator>=(const FXString& s1,const FXchar* s2);
friend FXAPI bool operator>=(const FXchar* s1,const FXString& s2);
/// Append operators
FXString& operator+=(const FXString& s);
FXString& operator+=(const FXchar* s);
FXString& operator+=(const FXwchar* s);
FXString& operator+=(const FXnchar* s);
FXString& operator+=(FXchar c);
/// Concatenate one FXString with another
friend FXAPI FXString operator+(const FXString& s1,const FXString& s2);
/// Concatenate FXString and a string
friend FXAPI FXString operator+(const FXString& s1,const FXchar* s2);
friend FXAPI FXString operator+(const FXString& s1,const FXwchar* s2);
friend FXAPI FXString operator+(const FXString& s1,const FXnchar* s2);
/// Concatenate string and FXString
friend FXAPI FXString operator+(const FXchar* s1,const FXString& s2);
friend FXAPI FXString operator+(const FXwchar* s1,const FXString& s2);
friend FXAPI FXString operator+(const FXnchar* s1,const FXString& s2);
/// Concatenate string and single character
friend FXAPI FXString operator+(const FXString& s,FXchar c);
friend FXAPI FXString operator+(FXchar c,const FXString& s);
/// Saving to a stream
friend FXAPI FXStream& operator<<(FXStream& store,const FXString& s);
/// Load from a stream
friend FXAPI FXStream& operator>>(FXStream& store,FXString& s);
/// Format a string a-la printf
friend FXAPI FXString FXStringFormat(const FXchar* fmt,...) FX_PRINTF(1,2) ;
friend FXAPI FXString FXStringVFormat(const FXchar* fmt,va_list args);
/**
* Convert integer number to a string, using the given number
* base, which must be between 2 and 16.
*/
friend FXAPI FXString FXStringVal(FXint num,FXint base);
friend FXAPI FXString FXStringVal(FXuint num,FXint base);
/**
* Convert long integer number to a string, using the given number
* base, which must be between 2 and 16.
*/
friend FXAPI FXString FXStringVal(FXlong num,FXint base);
friend FXAPI FXString FXStringVal(FXulong num,FXint base);
/**
* Convert real number to a string, using the given procision and
* exponential notation mode, which may be FALSE (never), TRUE (always), or
* MAYBE (when needed).
*/
friend FXAPI FXString FXStringVal(FXfloat num,FXint prec,FXint exp);
friend FXAPI FXString FXStringVal(FXdouble num,FXint prec,FXint exp);
/// Convert string to a integer number, assuming given number base
friend FXAPI FXint FXIntVal(const FXString& s,FXint base);
friend FXAPI FXuint FXUIntVal(const FXString& s,FXint base);
/// Convert string to long integer number, assuming given number base
friend FXAPI FXlong FXLongVal(const FXString& s,FXint base);
friend FXAPI FXulong FXULongVal(const FXString& s,FXint base);
/// Convert string into real number
friend FXAPI FXfloat FXFloatVal(const FXString& s);
friend FXAPI FXdouble FXDoubleVal(const FXString& s);
/// Return utf8 from ascii containing unicode escapes
friend FXAPI FXString fromAscii(const FXString& s);
/// Return ascii containing unicode escapes from utf8
friend FXAPI FXString toAscii(const FXString& s);
/// Escape special characters in a string
friend FXAPI FXString escape(const FXString& s);
/// Unescape special characters in a string
friend FXAPI FXString unescape(const FXString& s);
/// Return normalized string, i.e. reordering of diacritical marks
friend FXAPI FXString normalize(const FXString& s);
/// Return normalized decomposition of string
friend FXAPI FXString decompose(const FXString& s,FXuint kind);
/// Return normalized composition of string; this first performs normalized decomposition
friend FXAPI FXString compose(const FXString& s,FXuint kind);
/// Swap two strings
friend inline void swap(FXString& a,FXString& b);
/// Convert to and from dos
friend FXAPI FXString& unixToDos(FXString& str);
friend FXAPI FXString& dosToUnix(FXString& str);
/// Delete
~FXString();
};
inline void swap(FXString& a,FXString& b){ FXchar *t=a.str; a.str=b.str; b.str=t; }
extern FXAPI FXint compare(const FXchar* s1,const FXchar* s2);
extern FXAPI FXint compare(const FXchar* s1,const FXString& s2);
extern FXAPI FXint compare(const FXString& s1,const FXchar* s2);
extern FXAPI FXint compare(const FXString& s1,const FXString& s2);
extern FXAPI FXint compare(const FXchar* s1,const FXchar* s2,FXint n);
extern FXAPI FXint compare(const FXchar* s1,const FXString& s2,FXint n);
extern FXAPI FXint compare(const FXString& s1,const FXchar* s2,FXint n);
extern FXAPI FXint compare(const FXString& s1,const FXString& s2,FXint n);
extern FXAPI FXint comparecase(const FXchar* s1,const FXchar* s2);
extern FXAPI FXint comparecase(const FXchar* s1,const FXString& s2);
extern FXAPI FXint comparecase(const FXString& s1,const FXchar* s2);
extern FXAPI FXint comparecase(const FXString& s1,const FXString& s2);
extern FXAPI FXint comparecase(const FXchar* s1,const FXchar* s2,FXint n);
extern FXAPI FXint comparecase(const FXchar* s1,const FXString& s2,FXint n);
extern FXAPI FXint comparecase(const FXString& s1,const FXchar* s2,FXint n);
extern FXAPI FXint comparecase(const FXString& s1,const FXString& s2,FXint n);
extern FXAPI FXint compareversion(const FXchar* s1,const FXchar* s2);
extern FXAPI FXint compareversion(const FXchar* s1,const FXString& s2);
extern FXAPI FXint compareversion(const FXString& s1,const FXchar* s2);
extern FXAPI FXint compareversion(const FXString& s1,const FXString& s2);
extern FXAPI bool operator==(const FXString& s1,const FXString& s2);
extern FXAPI bool operator==(const FXString& s1,const FXchar* s2);
extern FXAPI bool operator==(const FXchar* s1,const FXString& s2);
extern FXAPI bool operator!=(const FXString& s1,const FXString& s2);
extern FXAPI bool operator!=(const FXString& s1,const FXchar* s2);
extern FXAPI bool operator!=(const FXchar* s1,const FXString& s2);
extern FXAPI bool operator<(const FXString& s1,const FXString& s2);
extern FXAPI bool operator<(const FXString& s1,const FXchar* s2);
extern FXAPI bool operator<(const FXchar* s1,const FXString& s2);
extern FXAPI bool operator<=(const FXString& s1,const FXString& s2);
extern FXAPI bool operator<=(const FXString& s1,const FXchar* s2);
extern FXAPI bool operator<=(const FXchar* s1,const FXString& s2);
extern FXAPI bool operator>(const FXString& s1,const FXString& s2);
extern FXAPI bool operator>(const FXString& s1,const FXchar* s2);
extern FXAPI bool operator>(const FXchar* s1,const FXString& s2);
extern FXAPI bool operator>=(const FXString& s1,const FXString& s2);
extern FXAPI bool operator>=(const FXString& s1,const FXchar* s2);
extern FXAPI bool operator>=(const FXchar* s1,const FXString& s2);
extern FXAPI FXString operator+(const FXString& s1,const FXString& s2);
extern FXAPI FXString operator+(const FXString& s1,const FXchar* s2);
extern FXAPI FXString operator+(const FXString& s1,const FXwchar* s2);
extern FXAPI FXString operator+(const FXString& s1,const FXnchar* s2);
extern FXAPI FXString operator+(const FXchar* s1,const FXString& s2);
extern FXAPI FXString operator+(const FXwchar* s1,const FXString& s2);
extern FXAPI FXString operator+(const FXnchar* s1,const FXString& s2);
extern FXAPI FXString operator+(const FXString& s,FXchar c);
extern FXAPI FXString operator+(FXchar c,const FXString& s);
extern FXAPI FXStream& operator<<(FXStream& store,const FXString& s);
extern FXAPI FXStream& operator>>(FXStream& store,FXString& s);
extern FXAPI FXString FXStringFormat(const FXchar* fmt,...) FX_PRINTF(1,2) ;
extern FXAPI FXString FXStringVFormat(const FXchar* fmt,va_list args);
extern FXAPI FXString FXStringVal(FXint num,FXint base=10);
extern FXAPI FXString FXStringVal(FXuint num,FXint base=10);
extern FXAPI FXString FXStringVal(FXlong num,FXint base=10);
extern FXAPI FXString FXStringVal(FXulong num,FXint base=10);
extern FXAPI FXString FXStringVal(FXfloat num,FXint prec=6,FXint exp=MAYBE);
extern FXAPI FXString FXStringVal(FXdouble num,FXint prec=6,FXint exp=MAYBE);
extern FXAPI FXint FXIntVal(const FXString& s,FXint base=10);
extern FXAPI FXuint FXUIntVal(const FXString& s,FXint base=10);
extern FXAPI FXlong FXLongVal(const FXString& s,FXint base=10);
extern FXAPI FXulong FXULongVal(const FXString& s,FXint base=10);
extern FXAPI FXfloat FXFloatVal(const FXString& s);
extern FXAPI FXdouble FXDoubleVal(const FXString& s);
extern FXAPI FXString fromAscii(const FXString& s);
extern FXAPI FXString toAscii(const FXString& s);
extern FXAPI FXString escape(const FXString& s);
extern FXAPI FXString unescape(const FXString& s);
extern FXAPI FXString normalize(const FXString& s);
extern FXAPI FXString decompose(const FXString& s,FXuint kind);
extern FXAPI FXString compose(const FXString& s,FXuint kind);
extern FXAPI FXString& unixToDos(FXString& str);
extern FXAPI FXString& dosToUnix(FXString& str);
}
#endif
|