1999-01-14 14:33:56 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2004-02-12 18:10:33 +00:00
|
|
|
// Name: wx/string.h
|
1999-01-14 14:33:56 +00:00
|
|
|
// Purpose: wxString and wxArrayString classes
|
1998-05-20 14:01:55 +00:00
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-01-14 14:33:56 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
/*
|
|
|
|
Efficient string class [more or less] compatible with MFC CString,
|
2004-05-23 14:56:36 +00:00
|
|
|
wxWidgets version 1 wxString and std::string and some handy functions
|
1999-10-04 20:15:38 +00:00
|
|
|
missing from string.h.
|
|
|
|
*/
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_WXSTRINGH__
|
|
|
|
#define _WX_WXSTRINGH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-10-04 20:15:38 +00:00
|
|
|
#pragma interface "string.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-02-15 15:06:17 +00:00
|
|
|
#include "wx/defs.h" // everybody should include this
|
|
|
|
|
1999-12-14 23:32:53 +00:00
|
|
|
#if defined(__WXMAC__) || defined(__VISAGECPP__)
|
1999-02-03 16:48:12 +00:00
|
|
|
#include <ctype.h>
|
1999-01-01 16:22:21 +00:00
|
|
|
#endif
|
1999-02-03 16:48:12 +00:00
|
|
|
|
1999-12-14 23:32:53 +00:00
|
|
|
#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
|
|
|
|
// problem in VACPP V4 with including stdlib.h multiple times
|
|
|
|
// strconv includes it anyway
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <limits.h>
|
|
|
|
#else
|
|
|
|
# include <string.h>
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <limits.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2004-02-12 18:10:33 +00:00
|
|
|
#ifdef HAVE_STRCASECMP_IN_STRINGS_H
|
1999-03-12 15:23:00 +00:00
|
|
|
#include <strings.h> // for strcasecmp()
|
2004-02-12 18:10:33 +00:00
|
|
|
#endif // HAVE_STRCASECMP_IN_STRINGS_H
|
1999-03-12 15:23:00 +00:00
|
|
|
|
2004-10-19 13:40:30 +00:00
|
|
|
#ifdef __PALMOS__
|
|
|
|
#include <StringMgr.h>
|
|
|
|
#endif
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
#include "wx/wxchar.h" // for wxChar
|
|
|
|
#include "wx/buffer.h" // for wxCharBuffer
|
|
|
|
#include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes
|
1999-02-03 16:48:12 +00:00
|
|
|
|
2004-09-27 17:20:55 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxString;
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// macros
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2002-02-15 15:06:17 +00:00
|
|
|
// casts [unfortunately!] needed to call some broken functions which require
|
|
|
|
// "char *" instead of "const char *"
|
1999-04-12 21:14:46 +00:00
|
|
|
#define WXSTRINGCAST (wxChar *)(const wxChar *)
|
1999-10-04 20:15:38 +00:00
|
|
|
#define wxCSTRINGCAST (wxChar *)(const wxChar *)
|
|
|
|
#define wxMBSTRINGCAST (char *)(const char *)
|
|
|
|
#define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// implementation only
|
2002-02-15 15:06:17 +00:00
|
|
|
#define wxASSERT_VALID_INDEX(i) \
|
2003-07-24 19:44:57 +00:00
|
|
|
wxASSERT_MSG( (size_t)(i) <= length(), _T("invalid index in wxString") )
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// maximum possible length for a string means "take all string" everywhere
|
2004-12-01 23:55:42 +00:00
|
|
|
#define wxSTRING_MAXLEN wxStringBase::npos
|
2000-01-26 21:07:57 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// global pointer to empty string
|
2003-07-02 01:59:24 +00:00
|
|
|
extern WXDLLIMPEXP_DATA_BASE(const wxChar*) wxEmptyString;
|
1999-08-08 11:31:18 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
1999-10-04 20:15:38 +00:00
|
|
|
// global functions complementing standard C string library replacements for
|
1999-01-14 14:33:56 +00:00
|
|
|
// strlen() and portable strcasecmp()
|
|
|
|
//---------------------------------------------------------------------------
|
1999-10-04 20:15:38 +00:00
|
|
|
|
|
|
|
// Use wxXXX() functions from wxchar.h instead! These functions are for
|
|
|
|
// backwards compatibility only.
|
1998-12-28 21:32:10 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// checks whether the passed in pointer is NULL and if the string is empty
|
2001-04-26 16:38:11 +00:00
|
|
|
inline bool IsEmpty(const char *p) { return (!p || !*p); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// safe version of strlen() (returns 0 if passed NULL pointer)
|
2001-04-26 16:38:11 +00:00
|
|
|
inline size_t Strlen(const char *psz)
|
1998-05-20 14:01:55 +00:00
|
|
|
{ return psz ? strlen(psz) : 0; }
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// portable strcasecmp/_stricmp
|
2001-04-26 16:38:11 +00:00
|
|
|
inline int Stricmp(const char *psz1, const char *psz2)
|
1998-07-15 17:10:23 +00:00
|
|
|
{
|
2003-07-10 21:14:50 +00:00
|
|
|
#if defined(__VISUALC__) && defined(__WXWINCE__)
|
|
|
|
register char c1, c2;
|
|
|
|
do {
|
|
|
|
c1 = tolower(*psz1++);
|
|
|
|
c2 = tolower(*psz2++);
|
|
|
|
} while ( c1 && (c1 == c2) );
|
|
|
|
|
|
|
|
return c1 - c2;
|
|
|
|
#elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
|
1998-07-15 17:10:23 +00:00
|
|
|
return _stricmp(psz1, psz2);
|
1999-06-13 15:24:01 +00:00
|
|
|
#elif defined(__SC__)
|
1999-01-07 08:43:47 +00:00
|
|
|
return _stricmp(psz1, psz2);
|
1999-06-13 15:24:01 +00:00
|
|
|
#elif defined(__SALFORDC__)
|
1999-01-16 00:13:58 +00:00
|
|
|
return stricmp(psz1, psz2);
|
1998-07-15 17:10:23 +00:00
|
|
|
#elif defined(__BORLANDC__)
|
|
|
|
return stricmp(psz1, psz2);
|
1998-12-18 23:18:59 +00:00
|
|
|
#elif defined(__WATCOMC__)
|
|
|
|
return stricmp(psz1, psz2);
|
2001-12-15 23:17:56 +00:00
|
|
|
#elif defined(__DJGPP__)
|
|
|
|
return stricmp(psz1, psz2);
|
1999-06-13 15:24:01 +00:00
|
|
|
#elif defined(__EMX__)
|
|
|
|
return stricmp(psz1, psz2);
|
1999-07-28 04:02:37 +00:00
|
|
|
#elif defined(__WXPM__)
|
1999-07-28 03:38:12 +00:00
|
|
|
return stricmp(psz1, psz2);
|
2004-02-12 18:10:33 +00:00
|
|
|
#elif defined(HAVE_STRCASECMP_IN_STRING_H) || \
|
|
|
|
defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
|
|
|
|
defined(__GNUWIN32__)
|
1998-07-15 17:10:23 +00:00
|
|
|
return strcasecmp(psz1, psz2);
|
1999-02-11 16:56:43 +00:00
|
|
|
#elif defined(__MWERKS__) && !defined(__INTEL__)
|
1999-01-01 16:22:21 +00:00
|
|
|
register char c1, c2;
|
|
|
|
do {
|
|
|
|
c1 = tolower(*psz1++);
|
|
|
|
c2 = tolower(*psz2++);
|
|
|
|
} while ( c1 && (c1 == c2) );
|
|
|
|
|
|
|
|
return c1 - c2;
|
1998-07-15 17:10:23 +00:00
|
|
|
#else
|
|
|
|
// almost all compilers/libraries provide this function (unfortunately under
|
|
|
|
// different names), that's why we don't implement our own which will surely
|
|
|
|
// be more efficient than this code (uncomment to use):
|
|
|
|
/*
|
|
|
|
register char c1, c2;
|
|
|
|
do {
|
|
|
|
c1 = tolower(*psz1++);
|
|
|
|
c2 = tolower(*psz2++);
|
|
|
|
} while ( c1 && (c1 == c2) );
|
|
|
|
|
|
|
|
return c1 - c2;
|
|
|
|
*/
|
|
|
|
|
|
|
|
#error "Please define string case-insensitive compare for your OS/compiler"
|
|
|
|
#endif // OS/compiler
|
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
#if wxUSE_STL
|
|
|
|
|
|
|
|
#include "wx/beforestd.h"
|
|
|
|
#include <string>
|
|
|
|
#include "wx/afterstd.h"
|
|
|
|
|
|
|
|
#if wxUSE_UNICODE
|
2003-11-22 22:45:36 +00:00
|
|
|
#ifdef HAVE_STD_WSTRING
|
2003-07-24 19:44:57 +00:00
|
|
|
typedef std::wstring wxStringBase;
|
|
|
|
#else
|
|
|
|
typedef std::basic_string<wxChar> wxStringBase;
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
typedef std::string wxStringBase;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(__GNUG__) && (__GNUG__ < 3)) || \
|
2004-01-17 22:34:51 +00:00
|
|
|
(defined(_MSC_VER) && (_MSC_VER <= 1200))
|
2003-07-24 19:44:57 +00:00
|
|
|
#define wxSTRING_BASE_HASNT_CLEAR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else // if !wxUSE_STL
|
|
|
|
|
|
|
|
#ifndef HAVE_STD_STRING_COMPARE
|
|
|
|
#define HAVE_STD_STRING_COMPARE
|
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
1998-07-12 22:40:00 +00:00
|
|
|
// string data prepended with some housekeeping info (used by wxString class),
|
1998-05-20 14:01:55 +00:00
|
|
|
// is never used directly (but had to be put here to allow inlining)
|
|
|
|
// ---------------------------------------------------------------------------
|
1999-10-04 20:15:38 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
struct WXDLLIMPEXP_BASE wxStringData
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
int nRefs; // reference count
|
1998-09-17 14:31:17 +00:00
|
|
|
size_t nDataLength, // actual string length
|
1998-05-20 14:01:55 +00:00
|
|
|
nAllocLength; // allocated memory size
|
|
|
|
|
1999-04-12 21:14:46 +00:00
|
|
|
// mimics declaration 'wxChar data[nAllocLength]'
|
|
|
|
wxChar* data() const { return (wxChar*)(this + 1); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// empty string has a special ref count so it's never deleted
|
1999-02-09 16:00:23 +00:00
|
|
|
bool IsEmpty() const { return (nRefs == -1); }
|
|
|
|
bool IsShared() const { return (nRefs > 1); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// lock/unlock
|
1998-07-15 17:10:23 +00:00
|
|
|
void Lock() { if ( !IsEmpty() ) nRefs++; }
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2003-05-29 14:03:37 +00:00
|
|
|
// VC++ will refuse to inline Unlock but profiling shows that it is wrong
|
2000-07-15 19:51:35 +00:00
|
|
|
#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
|
2004-02-12 18:10:33 +00:00
|
|
|
__forceinline
|
2000-07-15 19:51:35 +00:00
|
|
|
#endif
|
2003-05-28 21:11:17 +00:00
|
|
|
// VC++ free must take place in same DLL as allocation when using non dll
|
|
|
|
// run-time library (e.g. Multithreaded instead of Multithreaded DLL)
|
2003-05-29 14:03:37 +00:00
|
|
|
#if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
|
|
|
|
void Unlock() { if ( !IsEmpty() && --nRefs == 0) Free(); }
|
2003-05-28 21:11:17 +00:00
|
|
|
// we must not inline deallocation since allocation is not inlined
|
|
|
|
void Free();
|
2003-05-29 14:03:37 +00:00
|
|
|
#else
|
2003-05-29 15:59:46 +00:00
|
|
|
void Unlock() { if ( !IsEmpty() && --nRefs == 0) free(this); }
|
2003-05-29 14:03:37 +00:00
|
|
|
#endif
|
1998-07-08 22:21:11 +00:00
|
|
|
|
1998-07-15 17:10:23 +00:00
|
|
|
// if we had taken control over string memory (GetWriteBuf), it's
|
1998-07-08 22:21:11 +00:00
|
|
|
// intentionally put in invalid state
|
1999-02-09 16:00:23 +00:00
|
|
|
void Validate(bool b) { nRefs = (b ? 1 : 0); }
|
|
|
|
bool IsValid() const { return (nRefs != 0); }
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxStringBase
|
1999-01-14 14:33:56 +00:00
|
|
|
{
|
Added --use-stl to cnfigure, wxUSE_STL to setup0.h
Moved wx/datetime.inl contents to wx/datetime.h and removed
inline redefinition hack.
Implemented STL-like interface on top of wxList/wxArray, when wxUSE_STL=0.
Implemented wxList-like and wxArray interfaces on top of std::list and
std::vector, when wxUSE_STL=1.
Added arrstr.h, moved wxArrayString declaration there; string.h
#includes arrstr.h only if WXWIN_COMPATIBILITY_2_4 is enabled.
Added WX_CLEAR_HASH_MAP, WX_CLEAR_HASH_TABLE, WX_CLEAR_LIST macros,
to clear a wxHashMap, wxHashTable, wxList containing pointers: deletes
pointers and makes container zero-sized.
When wxUSE_STL=1, wxStringList works like a std::list<wxString>.
Made wxBase compile when wxUSE_STL=1.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-07-08 19:52:35 +00:00
|
|
|
#if !wxUSE_STL
|
2003-07-02 01:59:24 +00:00
|
|
|
friend class WXDLLIMPEXP_BASE wxArrayString;
|
Added --use-stl to cnfigure, wxUSE_STL to setup0.h
Moved wx/datetime.inl contents to wx/datetime.h and removed
inline redefinition hack.
Implemented STL-like interface on top of wxList/wxArray, when wxUSE_STL=0.
Implemented wxList-like and wxArray interfaces on top of std::list and
std::vector, when wxUSE_STL=1.
Added arrstr.h, moved wxArrayString declaration there; string.h
#includes arrstr.h only if WXWIN_COMPATIBILITY_2_4 is enabled.
Added WX_CLEAR_HASH_MAP, WX_CLEAR_HASH_TABLE, WX_CLEAR_LIST macros,
to clear a wxHashMap, wxHashTable, wxList containing pointers: deletes
pointers and makes container zero-sized.
When wxUSE_STL=1, wxStringList works like a std::list<wxString>.
Made wxBase compile when wxUSE_STL=1.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-07-08 19:52:35 +00:00
|
|
|
#endif
|
2003-07-30 17:57:37 +00:00
|
|
|
public :
|
|
|
|
// an 'invalid' value for string index, moved to this place due to a CW bug
|
|
|
|
static const size_t npos;
|
2003-07-24 19:44:57 +00:00
|
|
|
protected:
|
1998-07-15 17:10:23 +00:00
|
|
|
// points to data preceded by wxStringData structure with ref count info
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar *m_pchData;
|
1998-07-15 17:10:23 +00:00
|
|
|
|
|
|
|
// accessor to string data
|
|
|
|
wxStringData* GetStringData() const { return (wxStringData*)m_pchData - 1; }
|
|
|
|
|
1998-07-17 20:51:36 +00:00
|
|
|
// string (re)initialization functions
|
|
|
|
// initializes the string to the empty value (must be called only from
|
|
|
|
// ctors, use Reinit() otherwise)
|
1999-10-04 20:15:38 +00:00
|
|
|
void Init() { m_pchData = (wxChar *)wxEmptyString; }
|
1998-07-17 20:51:36 +00:00
|
|
|
// initializaes the string with (a part of) C-string
|
2003-07-24 19:44:57 +00:00
|
|
|
void InitWith(const wxChar *psz, size_t nPos = 0, size_t nLen = npos);
|
1998-07-17 20:51:36 +00:00
|
|
|
// as Init, but also frees old data
|
|
|
|
void Reinit() { GetStringData()->Unlock(); Init(); }
|
|
|
|
|
|
|
|
// memory allocation
|
2002-05-08 14:11:40 +00:00
|
|
|
// allocates memory for string of length nLen
|
|
|
|
bool AllocBuffer(size_t nLen);
|
1998-07-17 20:51:36 +00:00
|
|
|
// copies data to another string
|
2002-05-08 14:11:40 +00:00
|
|
|
bool AllocCopy(wxString&, int, int) const;
|
1998-07-17 20:51:36 +00:00
|
|
|
// effectively copies data to string
|
2002-05-08 14:11:40 +00:00
|
|
|
bool AssignCopy(size_t, const wxChar *);
|
1998-07-17 20:51:36 +00:00
|
|
|
|
|
|
|
// append a (sub)string
|
2003-07-24 19:44:57 +00:00
|
|
|
bool ConcatSelf(size_t nLen, const wxChar *src, size_t nMaxLen);
|
|
|
|
bool ConcatSelf(size_t nLen, const wxChar *src)
|
|
|
|
{ return ConcatSelf(nLen, src, nLen); }
|
1998-07-17 20:51:36 +00:00
|
|
|
|
|
|
|
// functions called before writing to the string: they copy it if there
|
|
|
|
// are other references to our data (should be the only owner when writing)
|
2002-05-08 14:11:40 +00:00
|
|
|
bool CopyBeforeWrite();
|
|
|
|
bool AllocBeforeWrite(size_t);
|
1998-07-17 20:51:36 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
// compatibility with wxString
|
|
|
|
bool Alloc(size_t nLen);
|
|
|
|
public:
|
|
|
|
// standard types
|
|
|
|
typedef wxChar value_type;
|
|
|
|
typedef wxChar char_type;
|
|
|
|
typedef size_t size_type;
|
|
|
|
typedef value_type& reference;
|
|
|
|
typedef const value_type& const_reference;
|
|
|
|
typedef value_type* pointer;
|
|
|
|
typedef const value_type* const_pointer;
|
|
|
|
typedef value_type *iterator;
|
|
|
|
typedef const value_type *const_iterator;
|
2001-08-24 14:37:30 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// constructors and destructor
|
|
|
|
// ctor for an empty string
|
2003-07-24 19:44:57 +00:00
|
|
|
wxStringBase() { Init(); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// copy ctor
|
2003-07-24 19:44:57 +00:00
|
|
|
wxStringBase(const wxStringBase& stringSrc)
|
1998-07-17 20:51:36 +00:00
|
|
|
{
|
2002-04-29 12:37:34 +00:00
|
|
|
wxASSERT_MSG( stringSrc.GetStringData()->IsValid(),
|
|
|
|
_T("did you forget to call UngetWriteBuf()?") );
|
1998-07-17 20:51:36 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
if ( stringSrc.empty() ) {
|
1998-07-17 20:51:36 +00:00
|
|
|
// nothing to do for an empty string
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_pchData = stringSrc.m_pchData; // share same data
|
|
|
|
GetStringData()->Lock(); // => one more copy
|
|
|
|
}
|
|
|
|
}
|
1999-01-14 14:33:56 +00:00
|
|
|
// string containing nRepeat copies of ch
|
2003-07-24 19:44:57 +00:00
|
|
|
wxStringBase(size_type nRepeat, wxChar ch);
|
1999-01-14 14:33:56 +00:00
|
|
|
// ctor takes first nLength characters from C string
|
2003-07-24 19:44:57 +00:00
|
|
|
// (default value of npos means take all the string)
|
|
|
|
wxStringBase(const wxChar *psz)
|
|
|
|
{ InitWith(psz, 0, npos); }
|
|
|
|
wxStringBase(const wxChar *psz, size_t nLength)
|
2002-05-08 14:11:40 +00:00
|
|
|
{ InitWith(psz, 0, nLength); }
|
2003-07-24 19:44:57 +00:00
|
|
|
wxStringBase(const wxChar *psz, wxMBConv& WXUNUSED(conv), size_t nLength = npos)
|
2002-05-08 14:11:40 +00:00
|
|
|
{ InitWith(psz, 0, nLength); }
|
2003-07-24 19:44:57 +00:00
|
|
|
// take nLen chars starting at nPos
|
|
|
|
wxStringBase(const wxStringBase& str, size_t nPos, size_t nLen)
|
|
|
|
{
|
|
|
|
wxASSERT_MSG( str.GetStringData()->IsValid(),
|
|
|
|
_T("did you forget to call UngetWriteBuf()?") );
|
|
|
|
Init();
|
|
|
|
size_t strLen = str.length() - nPos; nLen = strLen < nLen ? strLen : nLen;
|
|
|
|
InitWith(str.c_str(), nPos, nLen);
|
|
|
|
}
|
|
|
|
// take all characters from pStart to pEnd
|
|
|
|
wxStringBase(const void *pStart, const void *pEnd);
|
|
|
|
|
|
|
|
// dtor is not virtual, this class must not be inherited from!
|
2004-02-12 18:10:33 +00:00
|
|
|
~wxStringBase()
|
|
|
|
{
|
2003-12-14 04:23:35 +00:00
|
|
|
#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
|
2004-02-12 18:10:33 +00:00
|
|
|
//RN - according to the above VC++ does indeed inline this,
|
|
|
|
//even though it spits out two warnings
|
|
|
|
#pragma warning (disable:4714)
|
2003-12-14 04:23:35 +00:00
|
|
|
#endif
|
2003-07-24 19:44:57 +00:00
|
|
|
|
2004-02-12 18:10:33 +00:00
|
|
|
GetStringData()->Unlock();
|
2003-12-14 04:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
|
2004-02-12 18:10:33 +00:00
|
|
|
//re-enable inlining warning
|
|
|
|
#pragma warning (default:4714)
|
|
|
|
#endif
|
2003-07-24 19:44:57 +00:00
|
|
|
// overloaded assignment
|
|
|
|
// from another wxString
|
|
|
|
wxStringBase& operator=(const wxStringBase& stringSrc);
|
|
|
|
// from a character
|
|
|
|
wxStringBase& operator=(wxChar ch);
|
|
|
|
// from a C string
|
|
|
|
wxStringBase& operator=(const wxChar *psz);
|
|
|
|
|
|
|
|
// return the length of the string
|
|
|
|
size_type size() const { return GetStringData()->nDataLength; }
|
|
|
|
// return the length of the string
|
|
|
|
size_type length() const { return size(); }
|
|
|
|
// return the maximum size of the string
|
|
|
|
size_type max_size() const { return wxSTRING_MAXLEN; }
|
|
|
|
// resize the string, filling the space with c if c != 0
|
|
|
|
void resize(size_t nSize, wxChar ch = wxT('\0'));
|
|
|
|
// delete the contents of the string
|
|
|
|
void clear() { erase(0, npos); }
|
|
|
|
// returns true if the string is empty
|
|
|
|
bool empty() const { return size() == 0; }
|
|
|
|
// inform string about planned change in size
|
|
|
|
void reserve(size_t sz) { Alloc(sz); }
|
|
|
|
size_type capacity() const { return GetStringData()->nAllocLength; }
|
|
|
|
|
|
|
|
// lib.string.access
|
|
|
|
// return the character at position n
|
|
|
|
value_type at(size_type n) const
|
|
|
|
{ wxASSERT_VALID_INDEX( n ); return m_pchData[n]; }
|
|
|
|
value_type operator[](size_type n) const { return at(n); }
|
|
|
|
// returns the writable character at position n
|
|
|
|
reference at(size_type n)
|
|
|
|
{ wxASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }
|
|
|
|
reference operator[](size_type n)
|
|
|
|
{ wxASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }
|
|
|
|
|
|
|
|
// lib.string.modifiers
|
|
|
|
// append elements str[pos], ..., str[pos+n]
|
|
|
|
wxStringBase& append(const wxStringBase& str, size_t pos, size_t n)
|
|
|
|
{
|
|
|
|
wxASSERT(pos <= str.length());
|
|
|
|
ConcatSelf(n, str.c_str() + pos, str.length() - pos);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// append a string
|
|
|
|
wxStringBase& append(const wxStringBase& str)
|
|
|
|
{ ConcatSelf(str.length(), str.c_str()); return *this; }
|
|
|
|
// append first n (or all if n == npos) characters of sz
|
|
|
|
wxStringBase& append(const wxChar *sz)
|
|
|
|
{ ConcatSelf(wxStrlen(sz), sz); return *this; }
|
|
|
|
wxStringBase& append(const wxChar *sz, size_t n)
|
|
|
|
{ ConcatSelf(n, sz); return *this; }
|
|
|
|
// append n copies of ch
|
|
|
|
wxStringBase& append(size_t n, wxChar ch);
|
|
|
|
// append from first to last
|
|
|
|
wxStringBase& append(const_iterator first, const_iterator last)
|
|
|
|
{ ConcatSelf(last - first, first); return *this; }
|
|
|
|
|
|
|
|
// same as `this_string = str'
|
|
|
|
wxStringBase& assign(const wxStringBase& str)
|
|
|
|
{ return *this = str; }
|
|
|
|
// same as ` = str[pos..pos + n]
|
|
|
|
wxStringBase& assign(const wxStringBase& str, size_t pos, size_t n)
|
|
|
|
{ clear(); return append(str, pos, n); }
|
|
|
|
// same as `= first n (or all if n == npos) characters of sz'
|
|
|
|
wxStringBase& assign(const wxChar *sz)
|
|
|
|
{ clear(); return append(sz, wxStrlen(sz)); }
|
|
|
|
wxStringBase& assign(const wxChar *sz, size_t n)
|
|
|
|
{ clear(); return append(sz, n); }
|
|
|
|
// same as `= n copies of ch'
|
|
|
|
wxStringBase& assign(size_t n, wxChar ch)
|
|
|
|
{ clear(); return append(n, ch); }
|
|
|
|
// assign from first to last
|
|
|
|
wxStringBase& assign(const_iterator first, const_iterator last)
|
|
|
|
{ clear(); return append(first, last); }
|
|
|
|
|
|
|
|
// first valid index position
|
|
|
|
const_iterator begin() const { return m_pchData; }
|
|
|
|
// position one after the last valid one
|
|
|
|
const_iterator end() const { return m_pchData + length(); }
|
|
|
|
|
|
|
|
// first valid index position
|
2004-05-31 22:05:59 +00:00
|
|
|
iterator begin();
|
2003-07-24 19:44:57 +00:00
|
|
|
// position one after the last valid one
|
2004-05-31 22:05:59 +00:00
|
|
|
iterator end();
|
2003-07-24 19:44:57 +00:00
|
|
|
|
|
|
|
// insert another string
|
|
|
|
wxStringBase& insert(size_t nPos, const wxStringBase& str)
|
|
|
|
{
|
|
|
|
wxASSERT( str.GetStringData()->IsValid() );
|
|
|
|
return insert(nPos, str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
// insert n chars of str starting at nStart (in str)
|
|
|
|
wxStringBase& insert(size_t nPos, const wxStringBase& str, size_t nStart, size_t n)
|
|
|
|
{
|
|
|
|
wxASSERT( str.GetStringData()->IsValid() );
|
|
|
|
wxASSERT( nStart < str.length() );
|
|
|
|
size_t strLen = str.length() - nStart;
|
|
|
|
n = strLen < n ? strLen : n;
|
|
|
|
return insert(nPos, str.c_str() + nStart, n);
|
|
|
|
}
|
|
|
|
// insert first n (or all if n == npos) characters of sz
|
|
|
|
wxStringBase& insert(size_t nPos, const wxChar *sz, size_t n = npos);
|
|
|
|
// insert n copies of ch
|
|
|
|
wxStringBase& insert(size_t nPos, size_t n, wxChar ch)
|
|
|
|
{ return insert(nPos, wxStringBase(n, ch)); }
|
|
|
|
iterator insert(iterator it, wxChar ch)
|
2004-02-12 18:10:33 +00:00
|
|
|
{ size_t idx = it - begin(); insert(idx, 1, ch); return begin() + idx; }
|
2003-07-24 19:44:57 +00:00
|
|
|
void insert(iterator it, const_iterator first, const_iterator last)
|
|
|
|
{ insert(it - begin(), first, last - first); }
|
|
|
|
void insert(iterator it, size_type n, wxChar ch)
|
|
|
|
{ insert(it - begin(), n, ch); }
|
|
|
|
|
|
|
|
// delete characters from nStart to nStart + nLen
|
|
|
|
wxStringBase& erase(size_type pos = 0, size_type n = npos);
|
|
|
|
iterator erase(iterator first, iterator last)
|
|
|
|
{
|
|
|
|
size_t idx = first - begin();
|
|
|
|
erase(idx, last - first);
|
|
|
|
return begin() + idx;
|
|
|
|
}
|
|
|
|
iterator erase(iterator first);
|
|
|
|
|
|
|
|
// explicit conversion to C string (use this with printf()!)
|
|
|
|
const wxChar* c_str() const { return m_pchData; }
|
|
|
|
const wxChar* data() const { return m_pchData; }
|
|
|
|
|
|
|
|
// replaces the substring of length nLen starting at nStart
|
|
|
|
wxStringBase& replace(size_t nStart, size_t nLen, const wxChar* sz);
|
|
|
|
// replaces the substring of length nLen starting at nStart
|
|
|
|
wxStringBase& replace(size_t nStart, size_t nLen, const wxStringBase& str)
|
|
|
|
{ return replace(nStart, nLen, str.c_str()); }
|
|
|
|
// replaces the substring with nCount copies of ch
|
|
|
|
wxStringBase& replace(size_t nStart, size_t nLen, size_t nCount, wxChar ch);
|
|
|
|
// replaces a substring with another substring
|
|
|
|
wxStringBase& replace(size_t nStart, size_t nLen,
|
|
|
|
const wxStringBase& str, size_t nStart2, size_t nLen2);
|
|
|
|
// replaces the substring with first nCount chars of sz
|
|
|
|
wxStringBase& replace(size_t nStart, size_t nLen,
|
|
|
|
const wxChar* sz, size_t nCount);
|
|
|
|
wxStringBase& replace(iterator first, iterator last, const_pointer s)
|
|
|
|
{ return replace(first - begin(), last - first, s); }
|
|
|
|
wxStringBase& replace(iterator first, iterator last, const_pointer s,
|
|
|
|
size_type n)
|
|
|
|
{ return replace(first - begin(), last - first, s, n); }
|
|
|
|
wxStringBase& replace(iterator first, iterator last, const wxStringBase& s)
|
|
|
|
{ return replace(first - begin(), last - first, s); }
|
|
|
|
wxStringBase& replace(iterator first, iterator last, size_type n, wxChar c)
|
|
|
|
{ return replace(first - begin(), last - first, n, c); }
|
|
|
|
wxStringBase& replace(iterator first, iterator last,
|
|
|
|
const_iterator first1, const_iterator last1)
|
|
|
|
{ return replace(first - begin(), last - first, first1, last1 - first1); }
|
|
|
|
|
|
|
|
// swap two strings
|
|
|
|
void swap(wxStringBase& str);
|
|
|
|
|
|
|
|
// All find() functions take the nStart argument which specifies the
|
|
|
|
// position to start the search on, the default value is 0. All functions
|
|
|
|
// return npos if there were no match.
|
|
|
|
|
|
|
|
// find a substring
|
|
|
|
size_t find(const wxStringBase& str, size_t nStart = 0) const;
|
|
|
|
|
|
|
|
// VC++ 1.5 can't cope with this syntax.
|
|
|
|
#if !defined(__VISUALC__) || defined(__WIN32__)
|
|
|
|
// find first n characters of sz
|
|
|
|
size_t find(const wxChar* sz, size_t nStart = 0, size_t n = npos) const;
|
|
|
|
#endif // VC++ 1.5
|
|
|
|
|
|
|
|
// find the first occurence of character ch after nStart
|
|
|
|
size_t find(wxChar ch, size_t nStart = 0) const;
|
2003-07-27 10:53:44 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
// rfind() family is exactly like find() but works right to left
|
|
|
|
|
|
|
|
// as find, but from the end
|
|
|
|
size_t rfind(const wxStringBase& str, size_t nStart = npos) const;
|
|
|
|
|
|
|
|
// VC++ 1.5 can't cope with this syntax.
|
|
|
|
// as find, but from the end
|
|
|
|
size_t rfind(const wxChar* sz, size_t nStart = npos,
|
|
|
|
size_t n = npos) const;
|
|
|
|
// as find, but from the end
|
|
|
|
size_t rfind(wxChar ch, size_t nStart = npos) const;
|
|
|
|
|
|
|
|
// find first/last occurence of any character in the set
|
|
|
|
|
|
|
|
// as strpbrk() but starts at nStart, returns npos if not found
|
|
|
|
size_t find_first_of(const wxStringBase& str, size_t nStart = 0) const
|
|
|
|
{ return find_first_of(str.c_str(), nStart); }
|
|
|
|
// same as above
|
|
|
|
size_t find_first_of(const wxChar* sz, size_t nStart = 0) const;
|
2003-09-01 20:20:21 +00:00
|
|
|
size_t find_first_of(const wxChar* sz, size_t nStart, size_t n) const;
|
2003-07-24 19:44:57 +00:00
|
|
|
// same as find(char, size_t)
|
|
|
|
size_t find_first_of(wxChar c, size_t nStart = 0) const
|
|
|
|
{ return find(c, nStart); }
|
|
|
|
// find the last (starting from nStart) char from str in this string
|
|
|
|
size_t find_last_of (const wxStringBase& str, size_t nStart = npos) const
|
|
|
|
{ return find_last_of(str.c_str(), nStart); }
|
|
|
|
// same as above
|
|
|
|
size_t find_last_of (const wxChar* sz, size_t nStart = npos) const;
|
2003-09-01 20:20:21 +00:00
|
|
|
size_t find_last_of(const wxChar* sz, size_t nStart, size_t n) const;
|
2003-07-24 19:44:57 +00:00
|
|
|
// same as above
|
|
|
|
size_t find_last_of(wxChar c, size_t nStart = npos) const
|
|
|
|
{ return rfind(c, nStart); }
|
|
|
|
|
|
|
|
// find first/last occurence of any character not in the set
|
|
|
|
|
|
|
|
// as strspn() (starting from nStart), returns npos on failure
|
|
|
|
size_t find_first_not_of(const wxStringBase& str, size_t nStart = 0) const
|
|
|
|
{ return find_first_not_of(str.c_str(), nStart); }
|
|
|
|
// same as above
|
|
|
|
size_t find_first_not_of(const wxChar* sz, size_t nStart = 0) const;
|
2003-09-01 20:20:21 +00:00
|
|
|
size_t find_first_not_of(const wxChar* sz, size_t nStart, size_t n) const;
|
2003-07-24 19:44:57 +00:00
|
|
|
// same as above
|
|
|
|
size_t find_first_not_of(wxChar ch, size_t nStart = 0) const;
|
|
|
|
// as strcspn()
|
|
|
|
size_t find_last_not_of(const wxStringBase& str, size_t nStart = npos) const
|
2003-09-01 20:20:21 +00:00
|
|
|
{ return find_last_not_of(str.c_str(), nStart); }
|
2003-07-24 19:44:57 +00:00
|
|
|
// same as above
|
|
|
|
size_t find_last_not_of(const wxChar* sz, size_t nStart = npos) const;
|
2003-09-01 20:20:21 +00:00
|
|
|
size_t find_last_not_of(const wxChar* sz, size_t nStart, size_t n) const;
|
2003-07-24 19:44:57 +00:00
|
|
|
// same as above
|
|
|
|
size_t find_last_not_of(wxChar ch, size_t nStart = npos) const;
|
|
|
|
|
|
|
|
// All compare functions return -1, 0 or 1 if the [sub]string is less,
|
|
|
|
// equal or greater than the compare() argument.
|
|
|
|
|
2004-10-07 08:53:48 +00:00
|
|
|
// comparison with another string
|
|
|
|
int compare(const wxStringBase& str) const;
|
2003-07-24 19:44:57 +00:00
|
|
|
// comparison with a substring
|
|
|
|
int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
|
|
|
|
// comparison of 2 substrings
|
|
|
|
int compare(size_t nStart, size_t nLen,
|
|
|
|
const wxStringBase& str, size_t nStart2, size_t nLen2) const;
|
2004-10-07 08:53:48 +00:00
|
|
|
// comparison with a c string
|
|
|
|
int compare(const wxChar* sz) const;
|
2003-07-24 19:44:57 +00:00
|
|
|
// substring comparison with first nCount characters of sz
|
|
|
|
int compare(size_t nStart, size_t nLen,
|
|
|
|
const wxChar* sz, size_t nCount = npos) const;
|
|
|
|
|
|
|
|
size_type copy(wxChar* s, size_type n, size_type pos = 0);
|
|
|
|
|
|
|
|
// substring extraction
|
|
|
|
wxStringBase substr(size_t nStart = 0, size_t nLen = npos) const;
|
|
|
|
|
|
|
|
// string += string
|
|
|
|
wxStringBase& operator+=(const wxStringBase& s) { return append(s); }
|
|
|
|
// string += C string
|
|
|
|
wxStringBase& operator+=(const wxChar *psz) { return append(psz); }
|
|
|
|
// string += char
|
|
|
|
wxStringBase& operator+=(wxChar ch) { return append(1, ch); }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !wxUSE_STL
|
|
|
|
|
2004-11-08 18:19:13 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxString: string class trying to be compatible with std::string, MFC
|
|
|
|
// CString and wxWindows 1.x wxString all at once
|
2003-07-24 19:44:57 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxString : public wxStringBase
|
|
|
|
{
|
|
|
|
#if !wxUSE_STL
|
|
|
|
friend class WXDLLIMPEXP_BASE wxArrayString;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// NB: special care was taken in arranging the member functions in such order
|
|
|
|
// that all inline functions can be effectively inlined, verify that all
|
|
|
|
// performace critical functions are still inlined if you change order!
|
|
|
|
private:
|
|
|
|
// if we hadn't made these operators private, it would be possible to
|
|
|
|
// compile "wxString s; s = 17;" without any warnings as 17 is implicitly
|
|
|
|
// converted to char in C and we do have operator=(char)
|
|
|
|
//
|
|
|
|
// NB: we don't need other versions (short/long and unsigned) as attempt
|
|
|
|
// to assign another numeric type to wxString will now result in
|
|
|
|
// ambiguity between operator=(char) and operator=(int)
|
|
|
|
wxString& operator=(int);
|
|
|
|
|
|
|
|
// these methods are not implemented - there is _no_ conversion from int to
|
|
|
|
// string, you're doing something wrong if the compiler wants to call it!
|
|
|
|
//
|
|
|
|
// try `s << i' or `s.Printf("%d", i)' instead
|
|
|
|
wxString(int);
|
|
|
|
|
|
|
|
public:
|
|
|
|
// constructors and destructor
|
|
|
|
// ctor for an empty string
|
|
|
|
wxString() : wxStringBase() { }
|
|
|
|
// copy ctor
|
|
|
|
wxString(const wxStringBase& stringSrc) : wxStringBase(stringSrc) { }
|
|
|
|
wxString(const wxString& stringSrc) : wxStringBase(stringSrc) { }
|
|
|
|
// string containing nRepeat copies of ch
|
|
|
|
wxString(wxChar ch, size_t nRepeat = 1)
|
|
|
|
: wxStringBase(nRepeat, ch) { }
|
|
|
|
wxString(size_t nRepeat, wxChar ch)
|
|
|
|
: wxStringBase(nRepeat, ch) { }
|
|
|
|
// ctor takes first nLength characters from C string
|
|
|
|
// (default value of npos means take all the string)
|
|
|
|
wxString(const wxChar *psz)
|
|
|
|
: wxStringBase(psz ? psz : wxT("")) { }
|
|
|
|
wxString(const wxChar *psz, size_t nLength)
|
|
|
|
: wxStringBase(psz, nLength) { }
|
|
|
|
wxString(const wxChar *psz, wxMBConv& WXUNUSED(conv), size_t nLength = npos)
|
|
|
|
: wxStringBase(psz, nLength == npos ? wxStrlen(psz) : nLength) { }
|
1999-10-04 20:15:38 +00:00
|
|
|
|
1999-04-12 21:14:46 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
// from multibyte string
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString(const char *psz, wxMBConv& conv, size_t nLength = npos);
|
1999-04-12 21:14:46 +00:00
|
|
|
// from wxWCharBuffer (i.e. return from wxGetString)
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString(const wxWCharBuffer& psz) : wxStringBase(psz.data()) { }
|
1999-10-04 20:15:38 +00:00
|
|
|
#else // ANSI
|
1999-01-14 14:33:56 +00:00
|
|
|
// from C string (for compilers using unsigned char)
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString(const unsigned char* psz, size_t nLength = npos)
|
|
|
|
: wxStringBase((const char*)psz, nLength) { }
|
1999-10-04 20:15:38 +00:00
|
|
|
|
1999-04-25 12:42:55 +00:00
|
|
|
#if wxUSE_WCHAR_T
|
1999-04-12 21:14:46 +00:00
|
|
|
// from wide (Unicode) string
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString(const wchar_t *pwz, wxMBConv& conv = wxConvLibc, size_t nLength = npos);
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // !wxUSE_WCHAR_T
|
|
|
|
|
1999-04-12 21:14:46 +00:00
|
|
|
// from wxCharBuffer
|
|
|
|
wxString(const wxCharBuffer& psz)
|
2004-07-16 17:17:51 +00:00
|
|
|
: wxStringBase(psz) { }
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // Unicode/ANSI
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// generic attributes & operations
|
|
|
|
// as standard strlen()
|
2003-07-24 19:44:57 +00:00
|
|
|
size_t Len() const { return length(); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// string contains any characters?
|
2003-07-24 19:44:57 +00:00
|
|
|
bool IsEmpty() const { return empty(); }
|
2004-09-22 14:38:52 +00:00
|
|
|
// empty string is "false", so !str will return true
|
1999-01-28 13:44:26 +00:00
|
|
|
bool operator!() const { return IsEmpty(); }
|
2001-10-12 14:09:54 +00:00
|
|
|
// truncate the string to given length
|
|
|
|
wxString& Truncate(size_t uiLen);
|
1999-01-14 14:33:56 +00:00
|
|
|
// empty string contents
|
1998-07-15 17:10:23 +00:00
|
|
|
void Empty()
|
|
|
|
{
|
2001-10-12 14:09:54 +00:00
|
|
|
Truncate(0);
|
1998-07-15 17:10:23 +00:00
|
|
|
|
2001-10-12 14:09:54 +00:00
|
|
|
wxASSERT_MSG( IsEmpty(), _T("string not empty after call to Empty()?") );
|
1998-11-24 16:08:06 +00:00
|
|
|
}
|
1999-01-14 14:33:56 +00:00
|
|
|
// empty the string and free memory
|
1998-11-24 16:08:06 +00:00
|
|
|
void Clear()
|
|
|
|
{
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString tmp(wxEmptyString);
|
|
|
|
swap(tmp);
|
1998-07-15 17:10:23 +00:00
|
|
|
}
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// contents test
|
|
|
|
// Is an ascii value
|
1998-05-20 14:01:55 +00:00
|
|
|
bool IsAscii() const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// Is a number
|
1998-05-20 14:01:55 +00:00
|
|
|
bool IsNumber() const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// Is a word
|
1998-05-20 14:01:55 +00:00
|
|
|
bool IsWord() const;
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// data access (all indexes are 0 based)
|
|
|
|
// read access
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar GetChar(size_t n) const
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return operator[](n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// read/write access
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar& GetWritableChar(size_t n)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return operator[](n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// write access
|
1999-04-12 21:14:46 +00:00
|
|
|
void SetChar(size_t n, wxChar ch)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ operator[](n) = ch; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// get last character
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar Last() const
|
2002-04-29 12:37:34 +00:00
|
|
|
{
|
|
|
|
wxASSERT_MSG( !IsEmpty(), _T("wxString: index out of bounds") );
|
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
return operator[](length() - 1);
|
2002-04-29 12:37:34 +00:00
|
|
|
}
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// get writable last character
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar& Last()
|
2002-04-29 12:37:34 +00:00
|
|
|
{
|
|
|
|
wxASSERT_MSG( !IsEmpty(), _T("wxString: index out of bounds") );
|
2003-07-24 19:44:57 +00:00
|
|
|
return operator[](length() - 1);
|
2002-04-29 12:37:34 +00:00
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-06-14 17:27:44 +00:00
|
|
|
/*
|
|
|
|
So why do we have all these overloaded operator[]s? A bit of history:
|
|
|
|
initially there was only one of them, taking size_t. Then people
|
|
|
|
started complaining because they wanted to use ints as indices (I
|
|
|
|
wonder why) and compilers were giving warnings about it, so we had to
|
|
|
|
add the operator[](int). Then it became apparent that you couldn't
|
|
|
|
write str[0] any longer because there was ambiguity between two
|
|
|
|
overloads and so you now had to write str[0u] (or, of course, use the
|
|
|
|
explicit casts to either int or size_t but nobody did this).
|
|
|
|
|
|
|
|
Finally, someone decided to compile wxWin on an Alpha machine and got
|
|
|
|
a surprize: str[0u] didn't compile there because it is of type
|
|
|
|
unsigned int and size_t is unsigned _long_ on Alpha and so there was
|
|
|
|
ambiguity between converting uint to int or ulong. To fix this one we
|
|
|
|
now add operator[](uint) for the machines where size_t is not already
|
|
|
|
the same as unsigned int - hopefully this fixes the problem (for some
|
|
|
|
time)
|
|
|
|
|
|
|
|
The only real fix is, of course, to remove all versions but the one
|
|
|
|
taking size_t...
|
|
|
|
*/
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// operator version of GetChar
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar operator[](int n) const
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return wxStringBase::operator[](n); }
|
|
|
|
wxChar& operator[](size_type n)
|
|
|
|
{ return wxStringBase::operator[](n); }
|
|
|
|
wxChar operator[](size_type n) const
|
|
|
|
{ return wxStringBase::operator[](n); }
|
2001-06-14 17:27:44 +00:00
|
|
|
#ifndef wxSIZE_T_IS_UINT
|
|
|
|
// operator version of GetChar
|
|
|
|
wxChar operator[](unsigned int n) const
|
2003-07-25 13:56:29 +00:00
|
|
|
{ return wxStringBase::operator[](n); }
|
2001-06-14 17:27:44 +00:00
|
|
|
|
1999-11-04 13:02:26 +00:00
|
|
|
// operator version of GetWriteableChar
|
2001-06-14 17:27:44 +00:00
|
|
|
wxChar& operator[](unsigned int n)
|
2003-07-25 13:56:29 +00:00
|
|
|
{ return wxStringBase::operator[](n); }
|
2001-06-14 17:27:44 +00:00
|
|
|
#endif // size_t != unsigned int
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// implicit conversion to C string
|
2003-07-24 19:44:57 +00:00
|
|
|
operator const wxChar*() const { return c_str(); }
|
2002-08-20 15:09:27 +00:00
|
|
|
|
|
|
|
// identical to c_str(), for wxWin 1.6x compatibility
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* wx_str() const { return c_str(); }
|
2002-08-20 15:09:27 +00:00
|
|
|
// identical to c_str(), for MFC compatibility
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* GetData() const { return c_str(); }
|
1999-10-04 20:15:38 +00:00
|
|
|
|
2002-08-20 15:09:27 +00:00
|
|
|
// conversion to/from plain (i.e. 7 bit) ASCII: this is useful for
|
|
|
|
// converting numbers or strings which are certain not to contain special
|
|
|
|
// chars (typically system functions, X atoms, environment variables etc.)
|
|
|
|
//
|
|
|
|
// the behaviour of these functions with the strings containing anything
|
|
|
|
// else than 7 bit ASCII characters is undefined, use at your own risk.
|
2002-08-11 13:09:57 +00:00
|
|
|
#if wxUSE_UNICODE
|
2002-12-04 14:11:26 +00:00
|
|
|
static wxString FromAscii(const char *ascii); // string
|
|
|
|
static wxString FromAscii(const char ascii); // char
|
2002-08-11 13:09:57 +00:00
|
|
|
const wxCharBuffer ToAscii() const;
|
2002-08-20 15:09:27 +00:00
|
|
|
#else // ANSI
|
|
|
|
static wxString FromAscii(const char *ascii) { return wxString( ascii ); }
|
2002-12-04 14:11:26 +00:00
|
|
|
static wxString FromAscii(const char ascii) { return wxString( ascii ); }
|
2002-08-20 15:09:27 +00:00
|
|
|
const char *ToAscii() const { return c_str(); }
|
|
|
|
#endif // Unicode/!Unicode
|
2002-08-11 13:09:57 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
// conversions with (possible) format conversions: have to return a
|
1999-10-04 20:15:38 +00:00
|
|
|
// buffer with temporary data
|
2000-07-15 19:51:35 +00:00
|
|
|
//
|
|
|
|
// the functions defined (in either Unicode or ANSI) mode are mb_str() to
|
|
|
|
// return an ANSI (multibyte) string, wc_str() to return a wide string and
|
|
|
|
// fn_str() to return a string which should be used with the OS APIs
|
|
|
|
// accepting the file names. The return value is always the same, but the
|
|
|
|
// type differs because a function may either return pointer to the buffer
|
|
|
|
// directly or have to use intermediate buffer for translation.
|
1999-04-12 21:14:46 +00:00
|
|
|
#if wxUSE_UNICODE
|
2004-10-07 22:28:57 +00:00
|
|
|
const wxCharBuffer mb_str(wxMBConv& conv = wxConvLibc) const;
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
const wxWX2MBbuf mbc_str() const { return mb_str(*wxConvCurrent); }
|
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* wc_str() const { return c_str(); }
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
// for compatibility with !wxUSE_UNICODE version
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* wc_str(wxMBConv& WXUNUSED(conv)) const { return c_str(); }
|
1999-10-04 20:15:38 +00:00
|
|
|
|
1999-04-12 21:14:46 +00:00
|
|
|
#if wxMBFILES
|
1999-04-26 18:18:30 +00:00
|
|
|
const wxCharBuffer fn_str() const { return mb_str(wxConvFile); }
|
1999-10-04 20:15:38 +00:00
|
|
|
#else // !wxMBFILES
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* fn_str() const { return c_str(); }
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // wxMBFILES/!wxMBFILES
|
|
|
|
#else // ANSI
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* mb_str() const { return c_str(); }
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
// for compatibility with wxUSE_UNICODE version
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* mb_str(wxMBConv& WXUNUSED(conv)) const { return c_str(); }
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
const wxWX2MBbuf mbc_str() const { return mb_str(); }
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1999-04-25 12:42:55 +00:00
|
|
|
#if wxUSE_WCHAR_T
|
2004-10-07 22:28:57 +00:00
|
|
|
const wxWCharBuffer wc_str(wxMBConv& conv) const;
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // wxUSE_WCHAR_T
|
2004-11-17 15:14:35 +00:00
|
|
|
#ifdef __WXOSX__
|
|
|
|
const wxCharBuffer fn_str() const { return wxConvFile.cWC2WX( wc_str( wxConvLocal ) ); }
|
|
|
|
#else
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* fn_str() const { return c_str(); }
|
2004-11-17 15:14:35 +00:00
|
|
|
#endif
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // Unicode/ANSI
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// overloaded assignment
|
|
|
|
// from another wxString
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& operator=(const wxStringBase& stringSrc)
|
|
|
|
{ return (wxString&)wxStringBase::operator=(stringSrc); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// from a character
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& operator=(wxChar ch)
|
|
|
|
{ return (wxString&)wxStringBase::operator=(ch); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// from a C string
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& operator=(const wxChar *psz)
|
|
|
|
{ return (wxString&)wxStringBase::operator=(psz); }
|
1999-04-13 07:19:59 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
// from wxWCharBuffer
|
2002-05-08 14:11:40 +00:00
|
|
|
wxString& operator=(const wxWCharBuffer& psz)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ (void) operator=((const wchar_t *)psz); return *this; }
|
1999-10-04 20:15:38 +00:00
|
|
|
#else // ANSI
|
1999-01-14 14:33:56 +00:00
|
|
|
// from another kind of C string
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString& operator=(const unsigned char* psz);
|
1999-04-25 12:42:55 +00:00
|
|
|
#if wxUSE_WCHAR_T
|
1999-01-14 14:33:56 +00:00
|
|
|
// from a wide string
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString& operator=(const wchar_t *pwz);
|
1999-04-25 12:42:55 +00:00
|
|
|
#endif
|
1999-04-13 07:19:59 +00:00
|
|
|
// from wxCharBuffer
|
2002-05-08 14:11:40 +00:00
|
|
|
wxString& operator=(const wxCharBuffer& psz)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ (void) operator=((const char *)psz); return *this; }
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // Unicode/ANSI
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// string concatenation
|
|
|
|
// in place concatenation
|
|
|
|
/*
|
|
|
|
Concatenate and return the result. Note that the left to right
|
|
|
|
associativity of << allows to write things like "str << str1 << str2
|
|
|
|
<< ..." (unlike with +=)
|
|
|
|
*/
|
|
|
|
// string += string
|
1998-07-15 17:10:23 +00:00
|
|
|
wxString& operator<<(const wxString& s)
|
|
|
|
{
|
2003-07-24 19:44:57 +00:00
|
|
|
#if !wxUSE_STL
|
2002-04-29 12:37:34 +00:00
|
|
|
wxASSERT_MSG( s.GetStringData()->IsValid(),
|
|
|
|
_T("did you forget to call UngetWriteBuf()?") );
|
2003-07-24 19:44:57 +00:00
|
|
|
#endif
|
1998-07-15 17:10:23 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
append(s);
|
1998-07-15 17:10:23 +00:00
|
|
|
return *this;
|
|
|
|
}
|
1999-01-14 14:33:56 +00:00
|
|
|
// string += C string
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString& operator<<(const wxChar *psz)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ append(psz); return *this; }
|
1999-01-14 14:33:56 +00:00
|
|
|
// string += char
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& operator<<(wxChar ch) { append(1, ch); return *this; }
|
1999-04-12 21:14:46 +00:00
|
|
|
|
|
|
|
// string += buffer (i.e. from wxGetString)
|
|
|
|
#if wxUSE_UNICODE
|
2002-04-29 12:37:34 +00:00
|
|
|
wxString& operator<<(const wxWCharBuffer& s)
|
|
|
|
{ (void)operator<<((const wchar_t *)s); return *this; }
|
|
|
|
void operator+=(const wxWCharBuffer& s)
|
|
|
|
{ (void)operator<<((const wchar_t *)s); }
|
|
|
|
#else // !wxUSE_UNICODE
|
|
|
|
wxString& operator<<(const wxCharBuffer& s)
|
|
|
|
{ (void)operator<<((const char *)s); return *this; }
|
|
|
|
void operator+=(const wxCharBuffer& s)
|
|
|
|
{ (void)operator<<((const char *)s); }
|
|
|
|
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
|
1998-07-17 20:51:36 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// string += C string
|
2002-04-29 12:37:34 +00:00
|
|
|
wxString& Append(const wxString& s)
|
|
|
|
{
|
|
|
|
// test for IsEmpty() to share the string if possible
|
|
|
|
if ( IsEmpty() )
|
|
|
|
*this = s;
|
|
|
|
else
|
2003-07-24 19:44:57 +00:00
|
|
|
append(s);
|
2002-04-29 12:37:34 +00:00
|
|
|
return *this;
|
|
|
|
}
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString& Append(const wxChar* psz)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ append(psz); return *this; }
|
1999-01-14 14:33:56 +00:00
|
|
|
// append count copies of given character
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString& Append(wxChar ch, size_t count = 1u)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ append(count, ch); return *this; }
|
2000-01-31 21:22:44 +00:00
|
|
|
wxString& Append(const wxChar* psz, size_t nLen)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ append(psz, nLen); return *this; }
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// prepend a string, return the string itself
|
|
|
|
wxString& Prepend(const wxString& str)
|
|
|
|
{ *this = str + *this; return *this; }
|
|
|
|
|
|
|
|
// non-destructive concatenation
|
|
|
|
//
|
2003-07-02 01:59:24 +00:00
|
|
|
friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, const wxString& string2);
|
1999-01-14 14:33:56 +00:00
|
|
|
//
|
2003-07-02 01:59:24 +00:00
|
|
|
friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxChar ch);
|
1999-01-14 14:33:56 +00:00
|
|
|
//
|
2003-07-02 01:59:24 +00:00
|
|
|
friend wxString WXDLLIMPEXP_BASE operator+(wxChar ch, const wxString& string);
|
1999-01-14 14:33:56 +00:00
|
|
|
//
|
2003-07-02 01:59:24 +00:00
|
|
|
friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const wxChar *psz);
|
1999-01-14 14:33:56 +00:00
|
|
|
//
|
2003-07-02 01:59:24 +00:00
|
|
|
friend wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz, const wxString& string);
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// stream-like functions
|
|
|
|
// insert an int into string
|
2000-01-05 16:38:12 +00:00
|
|
|
wxString& operator<<(int i)
|
|
|
|
{ return (*this) << Format(_T("%d"), i); }
|
|
|
|
// insert an unsigned int into string
|
|
|
|
wxString& operator<<(unsigned int ui)
|
|
|
|
{ return (*this) << Format(_T("%u"), ui); }
|
|
|
|
// insert a long into string
|
|
|
|
wxString& operator<<(long l)
|
|
|
|
{ return (*this) << Format(_T("%ld"), l); }
|
|
|
|
// insert an unsigned long into string
|
|
|
|
wxString& operator<<(unsigned long ul)
|
|
|
|
{ return (*this) << Format(_T("%lu"), ul); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// insert a float into string
|
2000-01-05 16:38:12 +00:00
|
|
|
wxString& operator<<(float f)
|
|
|
|
{ return (*this) << Format(_T("%f"), f); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// insert a double into string
|
2000-01-05 16:38:12 +00:00
|
|
|
wxString& operator<<(double d)
|
|
|
|
{ return (*this) << Format(_T("%g"), d); }
|
1999-01-26 16:08:09 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// string comparison
|
1999-02-09 16:52:19 +00:00
|
|
|
// case-sensitive comparison (returns a value < 0, = 0 or > 0)
|
2004-10-07 08:53:48 +00:00
|
|
|
int Cmp(const wxChar *psz) const;
|
|
|
|
int Cmp(const wxString& s) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// same as Cmp() but not case-sensitive
|
2004-10-07 08:53:48 +00:00
|
|
|
int CmpNoCase(const wxChar *psz) const;
|
|
|
|
int CmpNoCase(const wxString& s) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// test for the string equality, either considering case or not
|
|
|
|
// (if compareWithCase then the case matters)
|
2004-09-22 14:38:52 +00:00
|
|
|
bool IsSameAs(const wxChar *psz, bool compareWithCase = true) const
|
1999-01-14 14:33:56 +00:00
|
|
|
{ return (compareWithCase ? Cmp(psz) : CmpNoCase(psz)) == 0; }
|
2004-09-22 14:38:52 +00:00
|
|
|
// comparison with a signle character: returns true if equal
|
|
|
|
bool IsSameAs(wxChar c, bool compareWithCase = true) const
|
1999-06-15 22:30:44 +00:00
|
|
|
{
|
2003-07-24 19:44:57 +00:00
|
|
|
return (length() == 1) && (compareWithCase ? GetChar(0u) == c
|
1999-06-15 22:30:44 +00:00
|
|
|
: wxToupper(GetChar(0u)) == wxToupper(c));
|
|
|
|
}
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// simple sub-string extraction
|
|
|
|
// return substring starting at nFirst of length nCount (or till the end
|
|
|
|
// if nCount = default value)
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString Mid(size_t nFirst, size_t nCount = npos) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// operator version of Mid()
|
1999-01-14 14:33:56 +00:00
|
|
|
wxString operator()(size_t start, size_t len) const
|
|
|
|
{ return Mid(start, len); }
|
|
|
|
|
2001-10-04 17:05:38 +00:00
|
|
|
// check that the string starts with prefix and return the rest of the
|
2000-07-15 19:51:35 +00:00
|
|
|
// string in the provided pointer if it is not NULL, otherwise return
|
2004-09-22 14:38:52 +00:00
|
|
|
// false
|
2000-07-15 19:51:35 +00:00
|
|
|
bool StartsWith(const wxChar *prefix, wxString *rest = NULL) const;
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// get first nCount characters
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString Left(size_t nCount) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// get last nCount characters
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString Right(size_t nCount) const;
|
2001-10-04 17:05:38 +00:00
|
|
|
// get all characters before the first occurance of ch
|
1999-01-14 14:33:56 +00:00
|
|
|
// (returns the whole string if ch not found)
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString BeforeFirst(wxChar ch) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// get all characters before the last occurence of ch
|
|
|
|
// (returns empty string if ch not found)
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString BeforeLast(wxChar ch) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// get all characters after the first occurence of ch
|
|
|
|
// (returns empty string if ch not found)
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString AfterFirst(wxChar ch) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// get all characters after the last occurence of ch
|
|
|
|
// (returns the whole string if ch not found)
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString AfterLast(wxChar ch) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// for compatibility only, use more explicitly named functions above
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString Before(wxChar ch) const { return BeforeLast(ch); }
|
|
|
|
wxString After(wxChar ch) const { return AfterFirst(ch); }
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// case conversion
|
1999-01-26 16:08:09 +00:00
|
|
|
// convert to upper case in place, return the string itself
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString& MakeUpper();
|
1999-01-26 16:08:09 +00:00
|
|
|
// convert to upper case, return the copy of the string
|
1999-01-31 11:42:58 +00:00
|
|
|
// Here's something to remember: BC++ doesn't like returns in inlines.
|
|
|
|
wxString Upper() const ;
|
1999-01-26 16:08:09 +00:00
|
|
|
// convert to lower case in place, return the string itself
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString& MakeLower();
|
1999-01-26 16:08:09 +00:00
|
|
|
// convert to lower case, return the copy of the string
|
1999-01-31 11:42:58 +00:00
|
|
|
wxString Lower() const ;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// trimming/padding whitespace (either side) and truncating
|
|
|
|
// remove spaces from left or from right (default) side
|
2004-09-22 14:38:52 +00:00
|
|
|
wxString& Trim(bool bFromRight = true);
|
1999-01-14 14:33:56 +00:00
|
|
|
// add nCount copies chPad in the beginning or at the end (default)
|
2004-09-22 14:38:52 +00:00
|
|
|
wxString& Pad(size_t nCount, wxChar chPad = wxT(' '), bool bFromRight = true);
|
1998-07-15 17:10:23 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// searching and replacing
|
|
|
|
// searching (return starting index, or -1 if not found)
|
2004-09-22 14:38:52 +00:00
|
|
|
int Find(wxChar ch, bool bFromEnd = false) const; // like strchr/strrchr
|
1999-01-14 14:33:56 +00:00
|
|
|
// searching (return starting index, or -1 if not found)
|
1999-04-12 21:14:46 +00:00
|
|
|
int Find(const wxChar *pszSub) const; // like strstr
|
1999-01-14 14:33:56 +00:00
|
|
|
// replace first (or all of bReplaceAll) occurences of substring with
|
|
|
|
// another string, returns the number of replacements made
|
1999-04-12 21:14:46 +00:00
|
|
|
size_t Replace(const wxChar *szOld,
|
|
|
|
const wxChar *szNew,
|
2004-09-22 14:38:52 +00:00
|
|
|
bool bReplaceAll = true);
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// check if the string contents matches a mask containing '*' and '?'
|
1999-04-12 21:14:46 +00:00
|
|
|
bool Matches(const wxChar *szMask) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2004-09-22 14:38:52 +00:00
|
|
|
// conversion to numbers: all functions return true only if the whole
|
2002-02-20 13:24:19 +00:00
|
|
|
// string is a number and put the value of this number into the pointer
|
|
|
|
// provided, the base is the numeric base in which the conversion should be
|
|
|
|
// done and must be comprised between 2 and 36 or be 0 in which case the
|
|
|
|
// standard C rules apply (leading '0' => octal, "0x" => hex)
|
1999-12-21 01:44:45 +00:00
|
|
|
// convert to a signed integer
|
2002-02-20 13:24:19 +00:00
|
|
|
bool ToLong(long *val, int base = 10) const;
|
1999-12-21 01:44:45 +00:00
|
|
|
// convert to an unsigned integer
|
2002-02-20 13:24:19 +00:00
|
|
|
bool ToULong(unsigned long *val, int base = 10) const;
|
1999-12-21 01:44:45 +00:00
|
|
|
// convert to a double
|
|
|
|
bool ToDouble(double *val) const;
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// formated input/output
|
|
|
|
// as sprintf(), returns the number of characters written or < 0 on error
|
2002-06-21 21:38:43 +00:00
|
|
|
// (take 'this' into account in attribute parameter count)
|
|
|
|
int Printf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
|
1999-01-14 14:33:56 +00:00
|
|
|
// as vprintf(), returns the number of characters written or < 0 on error
|
1999-04-12 21:14:46 +00:00
|
|
|
int PrintfV(const wxChar* pszFormat, va_list argptr);
|
1998-07-15 17:10:23 +00:00
|
|
|
|
1999-12-21 16:11:45 +00:00
|
|
|
// returns the string containing the result of Printf() to it
|
2002-06-21 21:38:43 +00:00
|
|
|
static wxString Format(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_1;
|
1999-12-21 16:11:45 +00:00
|
|
|
// the same as above, but takes a va_list
|
|
|
|
static wxString FormatV(const wxChar *pszFormat, va_list argptr);
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// raw access to string memory
|
|
|
|
// ensure that string has space for at least nLen characters
|
1998-07-15 17:10:23 +00:00
|
|
|
// only works if the data of this string is not shared
|
2003-07-24 19:44:57 +00:00
|
|
|
bool Alloc(size_t nLen) { reserve(nLen); /*return capacity() >= nLen;*/ return true; }
|
1999-01-14 14:33:56 +00:00
|
|
|
// minimize the string's memory
|
1998-07-15 17:10:23 +00:00
|
|
|
// only works if the data of this string is not shared
|
2002-05-08 14:11:40 +00:00
|
|
|
bool Shrink();
|
2003-07-24 19:44:57 +00:00
|
|
|
#if !wxUSE_STL
|
1999-01-14 14:33:56 +00:00
|
|
|
// get writable buffer of at least nLen bytes. Unget() *must* be called
|
|
|
|
// a.s.a.p. to put string back in a reasonable state!
|
1999-04-12 21:14:46 +00:00
|
|
|
wxChar *GetWriteBuf(size_t nLen);
|
1999-01-14 14:33:56 +00:00
|
|
|
// call this immediately after GetWriteBuf() has been used
|
1998-07-08 22:21:11 +00:00
|
|
|
void UngetWriteBuf();
|
2000-01-31 21:22:44 +00:00
|
|
|
void UngetWriteBuf(size_t nLen);
|
2003-07-24 19:44:57 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2004-05-23 14:56:36 +00:00
|
|
|
// wxWidgets version 1 compatibility functions
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// use Mid()
|
|
|
|
wxString SubString(size_t from, size_t to) const
|
|
|
|
{ return Mid(from, (to - from + 1)); }
|
|
|
|
// values for second parameter of CompareTo function
|
1998-05-20 14:01:55 +00:00
|
|
|
enum caseCompare {exact, ignoreCase};
|
1999-01-14 14:33:56 +00:00
|
|
|
// values for first parameter of Strip function
|
1998-05-20 14:01:55 +00:00
|
|
|
enum stripType {leading = 0x1, trailing = 0x2, both = 0x3};
|
1999-01-31 18:47:10 +00:00
|
|
|
|
2002-06-21 21:38:43 +00:00
|
|
|
// use Printf()
|
|
|
|
// (take 'this' into account in attribute parameter count)
|
|
|
|
int sprintf(const wxChar *pszFormat, ...) ATTRIBUTE_PRINTF_2;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// use Cmp()
|
1999-04-12 21:14:46 +00:00
|
|
|
inline int CompareTo(const wxChar* psz, caseCompare cmp = exact) const
|
1998-07-17 20:51:36 +00:00
|
|
|
{ return cmp == exact ? Cmp(psz) : CmpNoCase(psz); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// use Len
|
2003-07-24 19:44:57 +00:00
|
|
|
size_t Length() const { return length(); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// Count the number of characters
|
1999-04-12 21:14:46 +00:00
|
|
|
int Freq(wxChar ch) const;
|
1999-01-14 14:33:56 +00:00
|
|
|
// use MakeLower
|
1998-05-20 14:01:55 +00:00
|
|
|
void LowerCase() { MakeLower(); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// use MakeUpper
|
1998-05-20 14:01:55 +00:00
|
|
|
void UpperCase() { MakeUpper(); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// use Trim except that it doesn't change this string
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString Strip(stripType w = trailing) const;
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// use Find (more general variants not yet supported)
|
1999-04-12 21:14:46 +00:00
|
|
|
size_t Index(const wxChar* psz) const { return Find(psz); }
|
|
|
|
size_t Index(wxChar ch) const { return Find(ch); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// use Truncate
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString& Remove(size_t pos) { return Truncate(pos); }
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& RemoveLast(size_t n = 1) { return Truncate(length() - n); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& Remove(size_t nStart, size_t nLen)
|
|
|
|
{ return (wxString&)erase( nStart, nLen ); }
|
1998-07-15 17:10:23 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// use Find()
|
1999-04-12 21:14:46 +00:00
|
|
|
int First( const wxChar ch ) const { return Find(ch); }
|
|
|
|
int First( const wxChar* psz ) const { return Find(psz); }
|
1998-08-04 16:05:22 +00:00
|
|
|
int First( const wxString &str ) const { return Find(str); }
|
2004-09-22 14:38:52 +00:00
|
|
|
int Last( const wxChar ch ) const { return Find(ch, true); }
|
|
|
|
bool Contains(const wxString& str) const { return Find(str) != wxNOT_FOUND; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// use IsEmpty()
|
1998-05-20 14:01:55 +00:00
|
|
|
bool IsNull() const { return IsEmpty(); }
|
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// std::string compatibility functions
|
1998-07-15 17:10:23 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// take nLen chars starting at nPos
|
|
|
|
wxString(const wxString& str, size_t nPos, size_t nLen)
|
2003-07-24 19:44:57 +00:00
|
|
|
: wxStringBase(str, nPos, nLen) { }
|
1999-01-14 14:33:56 +00:00
|
|
|
// take all characters from pStart to pEnd
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString(const void *pStart, const void *pEnd)
|
2004-02-08 07:58:15 +00:00
|
|
|
: wxStringBase((const wxChar*)pStart, (const wxChar*)pEnd) { }
|
2003-07-24 19:44:57 +00:00
|
|
|
#if wxUSE_STL
|
|
|
|
wxString(const_iterator first, const_iterator last)
|
|
|
|
: wxStringBase(first, last) { }
|
|
|
|
#endif
|
2003-03-24 20:32:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
// lib.string.modifiers
|
|
|
|
// append elements str[pos], ..., str[pos+n]
|
|
|
|
wxString& append(const wxString& str, size_t pos, size_t n)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return (wxString&)wxStringBase::append(str, pos, n); }
|
|
|
|
// append a string
|
|
|
|
wxString& append(const wxString& str)
|
|
|
|
{ return (wxString&)wxStringBase::append(str); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// append first n (or all if n == npos) characters of sz
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& append(const wxChar *sz)
|
|
|
|
{ return (wxString&)wxStringBase::append(sz); }
|
|
|
|
wxString& append(const wxChar *sz, size_t n)
|
|
|
|
{ return (wxString&)wxStringBase::append(sz, n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// append n copies of ch
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& append(size_t n, wxChar ch)
|
|
|
|
{ return (wxString&)wxStringBase::append(n, ch); }
|
|
|
|
// append from first to last
|
|
|
|
wxString& append(const_iterator first, const_iterator last)
|
|
|
|
{ return (wxString&)wxStringBase::append(first, last); }
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// same as `this_string = str'
|
2001-10-12 14:09:54 +00:00
|
|
|
wxString& assign(const wxString& str)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return (wxString&)wxStringBase::assign(str); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// same as ` = str[pos..pos + n]
|
|
|
|
wxString& assign(const wxString& str, size_t pos, size_t n)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return (wxString&)wxStringBase::assign(str, pos, n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// same as `= first n (or all if n == npos) characters of sz'
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& assign(const wxChar *sz)
|
|
|
|
{ return (wxString&)wxStringBase::assign(sz); }
|
|
|
|
wxString& assign(const wxChar *sz, size_t n)
|
|
|
|
{ return (wxString&)wxStringBase::assign(sz, n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// same as `= n copies of ch'
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString& assign(size_t n, wxChar ch)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return (wxString&)wxStringBase::assign(n, ch); }
|
|
|
|
// assign from first to last
|
|
|
|
wxString& assign(const_iterator first, const_iterator last)
|
|
|
|
{ return (wxString&)wxStringBase::assign(first, last); }
|
|
|
|
|
|
|
|
// string comparison
|
|
|
|
#ifndef HAVE_STD_STRING_COMPARE
|
|
|
|
int compare(const wxStringBase& str) const;
|
|
|
|
// comparison with a substring
|
|
|
|
int compare(size_t nStart, size_t nLen, const wxStringBase& str) const;
|
|
|
|
// comparison of 2 substrings
|
|
|
|
int compare(size_t nStart, size_t nLen,
|
|
|
|
const wxStringBase& str, size_t nStart2, size_t nLen2) const;
|
|
|
|
// just like strcmp()
|
|
|
|
int compare(const wxChar* sz) const;
|
|
|
|
// substring comparison with first nCount characters of sz
|
|
|
|
int compare(size_t nStart, size_t nLen,
|
|
|
|
const wxChar* sz, size_t nCount = npos) const;
|
|
|
|
#endif // !defined HAVE_STD_STRING_COMPARE
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// insert another string
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& insert(size_t nPos, const wxString& str)
|
|
|
|
{ return (wxString&)wxStringBase::insert(nPos, str); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// insert n chars of str starting at nStart (in str)
|
|
|
|
wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return (wxString&)wxStringBase::insert(nPos, str, nStart, n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// insert first n (or all if n == npos) characters of sz
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& insert(size_t nPos, const wxChar *sz)
|
|
|
|
{ return (wxString&)wxStringBase::insert(nPos, sz); }
|
|
|
|
wxString& insert(size_t nPos, const wxChar *sz, size_t n)
|
|
|
|
{ return (wxString&)wxStringBase::insert(nPos, sz, n); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// insert n copies of ch
|
1999-04-12 21:14:46 +00:00
|
|
|
wxString& insert(size_t nPos, size_t n, wxChar ch)
|
2003-07-24 19:44:57 +00:00
|
|
|
{ return (wxString&)wxStringBase::insert(nPos, n, ch); }
|
|
|
|
iterator insert(iterator it, wxChar ch)
|
2004-02-12 18:10:33 +00:00
|
|
|
{ return wxStringBase::insert(it, ch); }
|
2003-07-24 19:44:57 +00:00
|
|
|
void insert(iterator it, const_iterator first, const_iterator last)
|
|
|
|
{ wxStringBase::insert(it, first, last); }
|
|
|
|
void insert(iterator it, size_type n, wxChar ch)
|
|
|
|
{ wxStringBase::insert(it, n, ch); }
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// delete characters from nStart to nStart + nLen
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& erase(size_type pos = 0, size_type n = npos)
|
|
|
|
{ return (wxString&)wxStringBase::erase(pos, n); }
|
|
|
|
iterator erase(iterator first, iterator last)
|
|
|
|
{ return wxStringBase::erase(first, last); }
|
|
|
|
iterator erase(iterator first)
|
|
|
|
{ return wxStringBase::erase(first); }
|
|
|
|
|
|
|
|
#ifdef wxSTRING_BASE_HASNT_CLEAR
|
|
|
|
void clear() { erase(); }
|
|
|
|
#endif
|
1999-01-14 14:33:56 +00:00
|
|
|
|
|
|
|
// replaces the substring of length nLen starting at nStart
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& replace(size_t nStart, size_t nLen, const wxChar* sz)
|
|
|
|
{ return (wxString&)wxStringBase::replace(nStart, nLen, sz); }
|
|
|
|
// replaces the substring of length nLen starting at nStart
|
|
|
|
wxString& replace(size_t nStart, size_t nLen, const wxString& str)
|
|
|
|
{ return (wxString&)wxStringBase::replace(nStart, nLen, str); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// replaces the substring with nCount copies of ch
|
2003-07-24 19:44:57 +00:00
|
|
|
wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxChar ch)
|
|
|
|
{ return (wxString&)wxStringBase::replace(nStart, nLen, nCount, ch); }
|
1999-01-14 14:33:56 +00:00
|
|
|
// replaces a substring with another substring
|
|
|
|
wxString& replace(size_t nStart, size_t nLen,
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxString& str, size_t nStart2, size_t nLen2)
|
|
|
|
{ return (wxString&)wxStringBase::replace(nStart, nLen, str,
|
|
|
|
nStart2, nLen2); }
|
|
|
|
// replaces the substring with first nCount chars of sz
|
2000-10-04 23:38:26 +00:00
|
|
|
wxString& replace(size_t nStart, size_t nLen,
|
2003-07-24 19:44:57 +00:00
|
|
|
const wxChar* sz, size_t nCount)
|
|
|
|
{ return (wxString&)wxStringBase::replace(nStart, nLen, sz, nCount); }
|
|
|
|
wxString& replace(iterator first, iterator last, const_pointer s)
|
|
|
|
{ return (wxString&)wxStringBase::replace(first, last, s); }
|
|
|
|
wxString& replace(iterator first, iterator last, const_pointer s,
|
|
|
|
size_type n)
|
|
|
|
{ return (wxString&)wxStringBase::replace(first, last, s, n); }
|
|
|
|
wxString& replace(iterator first, iterator last, const wxString& s)
|
|
|
|
{ return (wxString&)wxStringBase::replace(first, last, s); }
|
|
|
|
wxString& replace(iterator first, iterator last, size_type n, wxChar c)
|
|
|
|
{ return (wxString&)wxStringBase::replace(first, last, n, c); }
|
|
|
|
wxString& replace(iterator first, iterator last,
|
|
|
|
const_iterator first1, const_iterator last1)
|
|
|
|
{ return (wxString&)wxStringBase::replace(first, last, first1, last1); }
|
1999-01-14 14:33:56 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
// string += string
|
|
|
|
wxString& operator+=(const wxString& s)
|
|
|
|
{ return (wxString&)wxStringBase::operator+=(s); }
|
|
|
|
// string += C string
|
|
|
|
wxString& operator+=(const wxChar *psz)
|
|
|
|
{ return (wxString&)wxStringBase::operator+=(psz); }
|
|
|
|
// string += char
|
|
|
|
wxString& operator+=(wxChar ch)
|
|
|
|
{ return (wxString&)wxStringBase::operator+=(ch); }
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
Added --use-stl to cnfigure, wxUSE_STL to setup0.h
Moved wx/datetime.inl contents to wx/datetime.h and removed
inline redefinition hack.
Implemented STL-like interface on top of wxList/wxArray, when wxUSE_STL=0.
Implemented wxList-like and wxArray interfaces on top of std::list and
std::vector, when wxUSE_STL=1.
Added arrstr.h, moved wxArrayString declaration there; string.h
#includes arrstr.h only if WXWIN_COMPATIBILITY_2_4 is enabled.
Added WX_CLEAR_HASH_MAP, WX_CLEAR_HASH_TABLE, WX_CLEAR_LIST macros,
to clear a wxHashMap, wxHashTable, wxList containing pointers: deletes
pointers and makes container zero-sized.
When wxUSE_STL=1, wxStringList works like a std::list<wxString>.
Made wxBase compile when wxUSE_STL=1.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-07-08 19:52:35 +00:00
|
|
|
// define wxArrayString, for compatibility
|
|
|
|
#if WXWIN_COMPATIBILITY_2_4 && !wxUSE_STL
|
|
|
|
#include "wx/arrstr.h"
|
2003-07-03 21:59:55 +00:00
|
|
|
#endif
|
2001-12-24 11:16:46 +00:00
|
|
|
|
2004-09-28 09:50:23 +00:00
|
|
|
#if wxUSE_STL
|
|
|
|
// return an empty wxString (not very useful with wxUSE_STL == 1)
|
2004-09-30 08:23:28 +00:00
|
|
|
inline const wxString wxGetEmptyString() { return wxString(); }
|
2004-09-28 09:50:23 +00:00
|
|
|
#else // !wxUSE_STL
|
|
|
|
// return an empty wxString (more efficient than wxString() here)
|
|
|
|
inline const wxString& wxGetEmptyString()
|
|
|
|
{
|
|
|
|
return *(wxString *)&wxEmptyString;
|
|
|
|
}
|
|
|
|
#endif // wxUSE_STL/!wxUSE_STL
|
|
|
|
|
2001-12-01 17:16:16 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStringBuffer: a tiny class allowing to get a writable pointer into string
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-07-18 20:08:47 +00:00
|
|
|
#if wxUSE_STL
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxStringBuffer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStringBuffer(wxString& str, size_t lenWanted = 1024)
|
2003-07-24 19:44:57 +00:00
|
|
|
: m_str(str), m_buf(lenWanted)
|
2003-07-18 20:08:47 +00:00
|
|
|
{ }
|
|
|
|
|
2003-07-18 20:31:59 +00:00
|
|
|
~wxStringBuffer() { m_str.assign(m_buf.data(), wxStrlen(m_buf.data())); }
|
2003-07-18 20:08:47 +00:00
|
|
|
|
|
|
|
operator wxChar*() { return m_buf.data(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxString& m_str;
|
|
|
|
#if wxUSE_UNICODE
|
|
|
|
wxWCharBuffer m_buf;
|
|
|
|
#else
|
|
|
|
wxCharBuffer m_buf;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxStringBuffer)
|
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxStringBufferLength
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
|
|
|
|
: m_str(str), m_buf(lenWanted), m_len(0), m_lenSet(false)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
~wxStringBufferLength()
|
|
|
|
{
|
|
|
|
wxASSERT(m_lenSet);
|
|
|
|
m_str.assign(m_buf.data(), m_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
operator wxChar*() { return m_buf.data(); }
|
|
|
|
void SetLength(size_t length) { m_len = length; m_lenSet = true; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxString& m_str;
|
|
|
|
#if wxUSE_UNICODE
|
|
|
|
wxWCharBuffer m_buf;
|
|
|
|
#else
|
|
|
|
wxCharBuffer m_buf;
|
|
|
|
#endif
|
|
|
|
size_t m_len;
|
|
|
|
bool m_lenSet;
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxStringBufferLength)
|
|
|
|
};
|
|
|
|
|
|
|
|
#else // if !wxUSE_STL
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxStringBuffer
|
2001-12-01 17:16:16 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStringBuffer(wxString& str, size_t lenWanted = 1024)
|
2002-05-08 14:11:40 +00:00
|
|
|
: m_str(str), m_buf(NULL)
|
|
|
|
{ m_buf = m_str.GetWriteBuf(lenWanted); }
|
2002-08-20 15:09:27 +00:00
|
|
|
|
2001-12-01 17:16:16 +00:00
|
|
|
~wxStringBuffer() { m_str.UngetWriteBuf(); }
|
2002-08-20 15:09:27 +00:00
|
|
|
|
2001-12-01 17:16:16 +00:00
|
|
|
operator wxChar*() const { return m_buf; }
|
2002-08-20 15:09:27 +00:00
|
|
|
|
2001-12-01 17:16:16 +00:00
|
|
|
private:
|
|
|
|
wxString& m_str;
|
|
|
|
wxChar *m_buf;
|
2002-08-20 15:09:27 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxStringBuffer)
|
2001-12-01 17:16:16 +00:00
|
|
|
};
|
|
|
|
|
2003-07-18 20:08:47 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxStringBufferLength
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStringBufferLength(wxString& str, size_t lenWanted = 1024)
|
|
|
|
: m_str(str), m_buf(NULL), m_len(0), m_lenSet(false)
|
2004-10-29 05:52:16 +00:00
|
|
|
{
|
|
|
|
m_buf = m_str.GetWriteBuf(lenWanted);
|
|
|
|
wxASSERT(m_buf != NULL);
|
|
|
|
}
|
2003-07-18 20:08:47 +00:00
|
|
|
|
|
|
|
~wxStringBufferLength()
|
|
|
|
{
|
|
|
|
wxASSERT(m_lenSet);
|
|
|
|
m_str.UngetWriteBuf(m_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
operator wxChar*() const { return m_buf; }
|
|
|
|
void SetLength(size_t length) { m_len = length; m_lenSet = true; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxString& m_str;
|
|
|
|
wxChar *m_buf;
|
|
|
|
size_t m_len;
|
|
|
|
bool m_lenSet;
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxStringBufferLength)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !wxUSE_STL
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
1999-01-14 14:33:56 +00:00
|
|
|
// wxString comparison functions: operator versions are always case sensitive
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
1999-06-15 22:30:44 +00:00
|
|
|
|
2004-11-08 18:19:13 +00:00
|
|
|
// note that when wxUSE_STL == 1 the comparison operators taking std::string
|
|
|
|
// are used and defining them also for wxString would only result in
|
|
|
|
// compilation ambiguities when comparing std::string and wxString
|
|
|
|
#if !wxUSE_STL
|
2003-07-24 19:44:57 +00:00
|
|
|
|
2001-02-03 13:42:47 +00:00
|
|
|
inline bool operator==(const wxString& s1, const wxString& s2)
|
|
|
|
{ return (s1.Len() == s2.Len()) && (s1.Cmp(s2) == 0); }
|
|
|
|
inline bool operator==(const wxString& s1, const wxChar * s2)
|
|
|
|
{ return s1.Cmp(s2) == 0; }
|
|
|
|
inline bool operator==(const wxChar * s1, const wxString& s2)
|
|
|
|
{ return s2.Cmp(s1) == 0; }
|
|
|
|
inline bool operator!=(const wxString& s1, const wxString& s2)
|
|
|
|
{ return (s1.Len() != s2.Len()) || (s1.Cmp(s2) != 0); }
|
|
|
|
inline bool operator!=(const wxString& s1, const wxChar * s2)
|
|
|
|
{ return s1.Cmp(s2) != 0; }
|
|
|
|
inline bool operator!=(const wxChar * s1, const wxString& s2)
|
|
|
|
{ return s2.Cmp(s1) != 0; }
|
|
|
|
inline bool operator< (const wxString& s1, const wxString& s2)
|
|
|
|
{ return s1.Cmp(s2) < 0; }
|
|
|
|
inline bool operator< (const wxString& s1, const wxChar * s2)
|
|
|
|
{ return s1.Cmp(s2) < 0; }
|
|
|
|
inline bool operator< (const wxChar * s1, const wxString& s2)
|
|
|
|
{ return s2.Cmp(s1) > 0; }
|
|
|
|
inline bool operator> (const wxString& s1, const wxString& s2)
|
|
|
|
{ return s1.Cmp(s2) > 0; }
|
|
|
|
inline bool operator> (const wxString& s1, const wxChar * s2)
|
|
|
|
{ return s1.Cmp(s2) > 0; }
|
|
|
|
inline bool operator> (const wxChar * s1, const wxString& s2)
|
|
|
|
{ return s2.Cmp(s1) < 0; }
|
|
|
|
inline bool operator<=(const wxString& s1, const wxString& s2)
|
|
|
|
{ return s1.Cmp(s2) <= 0; }
|
|
|
|
inline bool operator<=(const wxString& s1, const wxChar * s2)
|
|
|
|
{ return s1.Cmp(s2) <= 0; }
|
|
|
|
inline bool operator<=(const wxChar * s1, const wxString& s2)
|
|
|
|
{ return s2.Cmp(s1) >= 0; }
|
|
|
|
inline bool operator>=(const wxString& s1, const wxString& s2)
|
|
|
|
{ return s1.Cmp(s2) >= 0; }
|
|
|
|
inline bool operator>=(const wxString& s1, const wxChar * s2)
|
|
|
|
{ return s1.Cmp(s2) >= 0; }
|
|
|
|
inline bool operator>=(const wxChar * s1, const wxString& s2)
|
|
|
|
{ return s2.Cmp(s1) <= 0; }
|
1999-01-14 14:33:56 +00:00
|
|
|
|
1999-06-14 14:23:18 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
inline bool operator==(const wxString& s1, const wxWCharBuffer& s2)
|
1999-06-15 22:30:44 +00:00
|
|
|
{ return (s1.Cmp((const wchar_t *)s2) == 0); }
|
1999-06-14 14:23:18 +00:00
|
|
|
inline bool operator==(const wxWCharBuffer& s1, const wxString& s2)
|
1999-06-15 22:30:44 +00:00
|
|
|
{ return (s2.Cmp((const wchar_t *)s1) == 0); }
|
2000-07-15 19:51:35 +00:00
|
|
|
inline bool operator!=(const wxString& s1, const wxWCharBuffer& s2)
|
|
|
|
{ return (s1.Cmp((const wchar_t *)s2) != 0); }
|
|
|
|
inline bool operator!=(const wxWCharBuffer& s1, const wxString& s2)
|
|
|
|
{ return (s2.Cmp((const wchar_t *)s1) != 0); }
|
2001-02-03 13:42:47 +00:00
|
|
|
#else // !wxUSE_UNICODE
|
1999-06-14 14:23:18 +00:00
|
|
|
inline bool operator==(const wxString& s1, const wxCharBuffer& s2)
|
1999-06-15 22:30:44 +00:00
|
|
|
{ return (s1.Cmp((const char *)s2) == 0); }
|
1999-06-14 14:23:18 +00:00
|
|
|
inline bool operator==(const wxCharBuffer& s1, const wxString& s2)
|
1999-06-15 22:30:44 +00:00
|
|
|
{ return (s2.Cmp((const char *)s1) == 0); }
|
2000-07-15 19:51:35 +00:00
|
|
|
inline bool operator!=(const wxString& s1, const wxCharBuffer& s2)
|
|
|
|
{ return (s1.Cmp((const char *)s2) != 0); }
|
|
|
|
inline bool operator!=(const wxCharBuffer& s1, const wxString& s2)
|
|
|
|
{ return (s2.Cmp((const char *)s1) != 0); }
|
2001-02-03 13:42:47 +00:00
|
|
|
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
|
1999-06-14 14:23:18 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, const wxString& string2);
|
|
|
|
wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxChar ch);
|
|
|
|
wxString WXDLLIMPEXP_BASE operator+(wxChar ch, const wxString& string);
|
|
|
|
wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const wxChar *psz);
|
|
|
|
wxString WXDLLIMPEXP_BASE operator+(const wxChar *psz, const wxString& string);
|
2003-07-24 19:44:57 +00:00
|
|
|
|
1999-04-16 12:24:26 +00:00
|
|
|
#if wxUSE_UNICODE
|
2001-04-26 16:38:11 +00:00
|
|
|
inline wxString operator+(const wxString& string, const wxWCharBuffer& buf)
|
1999-10-04 20:15:38 +00:00
|
|
|
{ return string + (const wchar_t *)buf; }
|
2001-04-26 16:38:11 +00:00
|
|
|
inline wxString operator+(const wxWCharBuffer& buf, const wxString& string)
|
1999-10-04 20:15:38 +00:00
|
|
|
{ return (const wchar_t *)buf + string; }
|
2001-02-03 13:42:47 +00:00
|
|
|
#else // !wxUSE_UNICODE
|
2001-04-26 16:38:11 +00:00
|
|
|
inline wxString operator+(const wxString& string, const wxCharBuffer& buf)
|
1999-10-04 20:15:38 +00:00
|
|
|
{ return string + (const char *)buf; }
|
2001-04-26 16:38:11 +00:00
|
|
|
inline wxString operator+(const wxCharBuffer& buf, const wxString& string)
|
1999-10-04 20:15:38 +00:00
|
|
|
{ return (const char *)buf + string; }
|
2001-02-03 13:42:47 +00:00
|
|
|
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
|
1998-07-12 22:40:00 +00:00
|
|
|
|
2004-11-09 19:35:33 +00:00
|
|
|
#endif // !wxUSE_STL
|
|
|
|
|
|
|
|
// comparison with char (those are not defined by std::[w]string and so should
|
|
|
|
// be always available)
|
|
|
|
inline bool operator==(wxChar c, const wxString& s) { return s.IsSameAs(c); }
|
|
|
|
inline bool operator==(const wxString& s, wxChar c) { return s.IsSameAs(c); }
|
|
|
|
inline bool operator!=(wxChar c, const wxString& s) { return !s.IsSameAs(c); }
|
|
|
|
inline bool operator!=(const wxString& s, wxChar c) { return !s.IsSameAs(c); }
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
1999-01-14 14:33:56 +00:00
|
|
|
// Implementation only from here until the end of file
|
1998-05-20 14:01:55 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
// don't pollute the library user's name space
|
2002-02-15 15:06:17 +00:00
|
|
|
#undef wxASSERT_VALID_INDEX
|
1999-10-04 20:15:38 +00:00
|
|
|
|
2003-07-24 19:44:57 +00:00
|
|
|
#if wxUSE_STD_IOSTREAM
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-01-26 00:12:12 +00:00
|
|
|
#include "wx/iosfwrap.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxSTD istream& operator>>(wxSTD istream&, wxString&);
|
|
|
|
WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxString&);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-14 14:33:56 +00:00
|
|
|
#endif // wxSTD_STRING_COMPATIBILITY
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#endif // _WX_WXSTRINGH__
|