]> git.saurik.com Git - wxWidgets.git/blame - include/wx/strconv.h
Made toolbars sticky, i.e. you need to drag them
[wxWidgets.git] / include / wx / strconv.h
CommitLineData
6001e347
RR
1///////////////////////////////////////////////////////////////////////////////
2// Name: strconv.h
3// Purpose: conversion routines for char sets any Unicode
467e0479 4// Author: Ove Kaaven, Robert Roebling, Vadim Zeitlin
6001e347
RR
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
467e0479
VZ
8// Copyright: (c) 1998 Ove Kaaven, Robert Roebling
9// (c) 1998-2006 Vadim Zeitlin
65571936 10// Licence: wxWindows licence
6001e347
RR
11///////////////////////////////////////////////////////////////////////////////
12
d36c9347
VZ
13#ifndef _WX_STRCONV_H_
14#define _WX_STRCONV_H_
6001e347 15
6001e347
RR
16#include "wx/defs.h"
17#include "wx/wxchar.h"
18#include "wx/buffer.h"
19
7db39dd6
CE
20#ifdef __DIGITALMARS__
21#include "typeinfo.h"
22#endif
23
9dea36ef
DW
24#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
25# undef __BSEXCPT__
26#endif
dccce9ea 27
6001e347
RR
28#include <stdlib.h>
29
30#if wxUSE_WCHAR_T
31
483b0434
VZ
32// the error value returned by wxMBConv methods
33#define wxCONV_FAILED ((size_t)-1)
34
467e0479
VZ
35// the default value for some length parameters meaning that the string is
36// NUL-terminated
37#define wxNO_LEN ((size_t)-1)
38
e90c1d2a 39// ----------------------------------------------------------------------------
bde4baac 40// wxMBConv (abstract base class for conversions)
e90c1d2a 41// ----------------------------------------------------------------------------
6001e347 42
509da451
VZ
43// When deriving a new class from wxMBConv you must reimplement ToWChar() and
44// FromWChar() methods which are not pure virtual only for historical reasons,
45// don't let the fact that the existing classes implement MB2WC/WC2MB() instead
46// confuse you.
47//
d36c9347
VZ
48// You also have to implement Clone() to allow copying the conversions
49// polymorphically.
50//
509da451 51// And you might need to override GetMBNulLen() as well.
bddd7a8d 52class WXDLLIMPEXP_BASE wxMBConv
6001e347
RR
53{
54public:
483b0434
VZ
55 // The functions doing actual conversion from/to narrow to/from wide
56 // character strings.
bde4baac 57 //
483b0434
VZ
58 // On success, the return value is the length (i.e. the number of
59 // characters, not bytes) of the converted string including any trailing
60 // L'\0' or (possibly multiple) '\0'(s). If the conversion fails or if
61 // there is not enough space for everything, including the trailing NUL
467e0479 62 // character(s), in the output buffer, wxCONV_FAILED is returned.
483b0434
VZ
63 //
64 // In the special case when dstLen is 0 (outputBuf may be NULL then) the
65 // return value is the length of the needed buffer but nothing happens
467e0479
VZ
66 // otherwise. If srcLen is wxNO_LEN, the entire string, up to and
67 // including the trailing NUL(s), is converted, otherwise exactly srcLen
68 // bytes are.
483b0434
VZ
69 //
70 // Typical usage:
71 //
72 // size_t dstLen = conv.ToWChar(NULL, 0, src);
73 // if ( dstLen != wxCONV_FAILED )
74 // ... handle error ...
75 // wchar_t *wbuf = new wchar_t[dstLen];
76 // conv.ToWChar(wbuf, dstLen, src);
77 //
78 virtual size_t ToWChar(wchar_t *dst, size_t dstLen,
467e0479 79 const char *src, size_t srcLen = wxNO_LEN) const;
483b0434
VZ
80
81 virtual size_t FromWChar(char *dst, size_t dstLen,
467e0479 82 const wchar_t *src, size_t srcLen = wxNO_LEN) const;
483b0434 83
e90c1d2a 84
483b0434
VZ
85 // Convenience functions for translating NUL-terminated strings: returns
86 // the buffer containing the converted string or NULL pointer if the
87 // conversion failed.
eec47cc6
VZ
88 const wxWCharBuffer cMB2WC(const char *in) const;
89 const wxCharBuffer cWC2MB(const wchar_t *in) const;
6001e347 90
483b0434
VZ
91 // Convenience functions for converting strings which may contain embedded
92 // NULs and don't have to be NUL-terminated.
f5fb6871 93 //
eec47cc6
VZ
94 // inLen is the length of the buffer including trailing NUL if any: if the
95 // last 4 bytes of the buffer are all NULs, these functions are more
96 // efficient as they avoid copying the string, but otherwise a copy is made
97 // internally which could be quite bad for (very) long strings.
98 //
99 // outLen receives, if not NULL, the length of the converted string or 0 if
100 // the conversion failed (returning 0 and not -1 in this case makes it
101 // difficult to distinguish between failed conversion and empty input but
102 // this is done for backwards compatibility)
103 const wxWCharBuffer
104 cMB2WC(const char *in, size_t inLen, size_t *outLen) const;
105 const wxCharBuffer
106 cWC2MB(const wchar_t *in, size_t inLen, size_t *outLen) const;
f5fb6871 107
bde4baac 108 // convenience functions for converting MB or WC to/from wxWin default
6001e347 109#if wxUSE_UNICODE
e90c1d2a
VZ
110 const wxWCharBuffer cMB2WX(const char *psz) const { return cMB2WC(psz); }
111 const wxCharBuffer cWX2MB(const wchar_t *psz) const { return cWC2MB(psz); }
112 const wchar_t* cWC2WX(const wchar_t *psz) const { return psz; }
f6bcfd97 113 const wchar_t* cWX2WC(const wchar_t *psz) const { return psz; }
e90c1d2a
VZ
114#else // ANSI
115 const char* cMB2WX(const char *psz) const { return psz; }
116 const char* cWX2MB(const char *psz) const { return psz; }
117 const wxCharBuffer cWC2WX(const wchar_t *psz) const { return cWC2MB(psz); }
118 const wxWCharBuffer cWX2WC(const char *psz) const { return cMB2WC(psz); }
119#endif // Unicode/ANSI
2b5f62a0 120
c1464d9d
VZ
121 // this function is used in the implementation of cMB2WC() to distinguish
122 // between the following cases:
eec47cc6 123 //
c1464d9d
VZ
124 // a) var width encoding with strings terminated by a single NUL
125 // (usual multibyte encodings): return 1 in this case
126 // b) fixed width encoding with 2 bytes/char and so terminated by
127 // 2 NULs (UTF-16/UCS-2 and variants): return 2 in this case
128 // c) fixed width encoding with 4 bytes/char and so terminated by
129 // 4 NULs (UTF-32/UCS-4 and variants): return 4 in this case
130 //
131 // anything else is not supported currently and -1 should be returned
7ef3ab50
VZ
132 virtual size_t GetMBNulLen() const { return 1; }
133
483b0434
VZ
134 // return the maximal value currently returned by GetMBNulLen() for any
135 // encoding
136 static size_t GetMaxMBNulLen() { return 4 /* for UTF-32 */; }
137
138
139 // The old conversion functions. The existing classes currently mostly
140 // implement these ones but we're in transition to using To/FromWChar()
141 // instead and any new classes should implement just the new functions.
142 // For now, however, we provide default implementation of To/FromWChar() in
143 // this base class in terms of MB2WC/WC2MB() to avoid having to rewrite all
144 // the conversions at once.
145 //
146 // On success, the return value is the length (i.e. the number of
147 // characters, not bytes) not counting the trailing NUL(s) of the converted
148 // string. On failure, (size_t)-1 is returned. In the special case when
149 // outputBuf is NULL the return value is the same one but nothing is
150 // written to the buffer.
151 //
152 // Note that outLen is the length of the output buffer, not the length of
153 // the input (which is always supposed to be terminated by one or more
154 // NULs, as appropriate for the encoding)!
509da451
VZ
155 virtual size_t MB2WC(wchar_t *out, const char *in, size_t outLen) const;
156 virtual size_t WC2MB(char *out, const wchar_t *in, size_t outLen) const;
483b0434
VZ
157
158
d36c9347
VZ
159 // make a heap-allocated copy of this object
160 virtual wxMBConv *Clone() const = 0;
161
7ef3ab50
VZ
162 // virtual dtor for any base class
163 virtual ~wxMBConv();
6001e347
RR
164};
165
bde4baac
VZ
166// ----------------------------------------------------------------------------
167// wxMBConvLibc uses standard mbstowcs() and wcstombs() functions for
168// conversion (hence it depends on the current locale)
169// ----------------------------------------------------------------------------
170
171class WXDLLIMPEXP_BASE wxMBConvLibc : public wxMBConv
172{
173public:
75736a9c
DS
174 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
175 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
d36c9347
VZ
176
177 virtual wxMBConv *Clone() const { return new wxMBConvLibc; }
bde4baac
VZ
178};
179
5576edf8
RR
180#ifdef __UNIX__
181
182// ----------------------------------------------------------------------------
183// wxConvBrokenFileNames is made for Unix in Unicode mode when
184// files are accidentally written in an encoding which is not
185// the system encoding. Typically, the system encoding will be
186// UTF8 but there might be files stored in ISO8859-1 on disk.
187// ----------------------------------------------------------------------------
188
189class WXDLLIMPEXP_BASE wxConvBrokenFileNames : public wxMBConv
190{
191public:
845905d5 192 wxConvBrokenFileNames(const wxChar *charset);
d36c9347 193 wxConvBrokenFileNames(const wxConvBrokenFileNames& conv)
2e2cf78d
VZ
194 : wxMBConv(),
195 m_conv(conv.m_conv ? conv.m_conv->Clone() : NULL)
d36c9347
VZ
196 {
197 }
5576edf8
RR
198 virtual ~wxConvBrokenFileNames() { delete m_conv; }
199
eec47cc6
VZ
200 virtual size_t MB2WC(wchar_t *out, const char *in, size_t outLen) const
201 {
202 return m_conv->MB2WC(out, in, outLen);
203 }
204
205 virtual size_t WC2MB(char *out, const wchar_t *in, size_t outLen) const
206 {
207 return m_conv->WC2MB(out, in, outLen);
208 }
5576edf8 209
7ef3ab50 210 virtual size_t GetMBNulLen() const
eec47cc6 211 {
22886fb3 212 // cast needed to call a private function
7ef3ab50 213 return m_conv->GetMBNulLen();
eec47cc6
VZ
214 }
215
d36c9347
VZ
216 virtual wxMBConv *Clone() const { return new wxConvBrokenFileNames(*this); }
217
7ef3ab50 218private:
5576edf8
RR
219 // the conversion object we forward to
220 wxMBConv *m_conv;
d36c9347
VZ
221
222 DECLARE_NO_ASSIGN_CLASS(wxConvBrokenFileNames)
5576edf8
RR
223};
224
eec47cc6 225#endif // __UNIX__
5576edf8 226
e90c1d2a 227// ----------------------------------------------------------------------------
6001e347 228// wxMBConvUTF7 (for conversion using UTF7 encoding)
e90c1d2a 229// ----------------------------------------------------------------------------
6001e347 230
bddd7a8d 231class WXDLLIMPEXP_BASE wxMBConvUTF7 : public wxMBConv
6001e347
RR
232{
233public:
75736a9c
DS
234 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
235 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
d36c9347
VZ
236
237 virtual wxMBConv *Clone() const { return new wxMBConvUTF7; }
6001e347
RR
238};
239
e90c1d2a 240// ----------------------------------------------------------------------------
6001e347 241// wxMBConvUTF8 (for conversion using UTF8 encoding)
e90c1d2a 242// ----------------------------------------------------------------------------
6001e347 243
bddd7a8d 244class WXDLLIMPEXP_BASE wxMBConvUTF8 : public wxMBConv
6001e347
RR
245{
246public:
d36c9347
VZ
247 enum
248 {
ea8ce907
RR
249 MAP_INVALID_UTF8_NOT = 0,
250 MAP_INVALID_UTF8_TO_PUA = 1,
251 MAP_INVALID_UTF8_TO_OCTAL = 2
252 };
253
254 wxMBConvUTF8(int options = MAP_INVALID_UTF8_NOT) : m_options(options) { }
75736a9c
DS
255 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
256 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
eec47cc6 257
d36c9347
VZ
258 virtual wxMBConv *Clone() const { return new wxMBConvUTF8(m_options); }
259
ea8ce907
RR
260private:
261 int m_options;
6001e347
RR
262};
263
eec47cc6
VZ
264// ----------------------------------------------------------------------------
265// wxMBConvUTF16Base: for both LE and BE variants
266// ----------------------------------------------------------------------------
267
268class WXDLLIMPEXP_BASE wxMBConvUTF16Base : public wxMBConv
269{
7ef3ab50 270public:
467e0479
VZ
271 enum { BYTES_PER_CHAR = 2 };
272
273 virtual size_t GetMBNulLen() const { return BYTES_PER_CHAR; }
274
275protected:
276 // return the length of the buffer using srcLen if it's not wxNO_LEN and
277 // computing the length ourselves if it is; also checks that the length is
278 // even if specified as we need an entire number of UTF-16 characters and
279 // returns wxNO_LEN which indicates error if it is odd
280 static size_t GetLength(const char *src, size_t srcLen);
eec47cc6
VZ
281};
282
e90c1d2a 283// ----------------------------------------------------------------------------
c91830cb
VZ
284// wxMBConvUTF16LE (for conversion using UTF16 Little Endian encoding)
285// ----------------------------------------------------------------------------
286
eec47cc6 287class WXDLLIMPEXP_BASE wxMBConvUTF16LE : public wxMBConvUTF16Base
c91830cb
VZ
288{
289public:
467e0479
VZ
290 virtual size_t ToWChar(wchar_t *dst, size_t dstLen,
291 const char *src, size_t srcLen = wxNO_LEN) const;
292 virtual size_t FromWChar(char *dst, size_t dstLen,
293 const wchar_t *src, size_t srcLen = wxNO_LEN) const;
d36c9347 294 virtual wxMBConv *Clone() const { return new wxMBConvUTF16LE; }
c91830cb
VZ
295};
296
297// ----------------------------------------------------------------------------
298// wxMBConvUTF16BE (for conversion using UTF16 Big Endian encoding)
299// ----------------------------------------------------------------------------
300
eec47cc6 301class WXDLLIMPEXP_BASE wxMBConvUTF16BE : public wxMBConvUTF16Base
c91830cb
VZ
302{
303public:
467e0479
VZ
304 virtual size_t ToWChar(wchar_t *dst, size_t dstLen,
305 const char *src, size_t srcLen = wxNO_LEN) const;
306 virtual size_t FromWChar(char *dst, size_t dstLen,
307 const wchar_t *src, size_t srcLen = wxNO_LEN) const;
d36c9347 308 virtual wxMBConv *Clone() const { return new wxMBConvUTF16BE; }
c91830cb
VZ
309};
310
eec47cc6
VZ
311// ----------------------------------------------------------------------------
312// wxMBConvUTF32Base: base class for both LE and BE variants
313// ----------------------------------------------------------------------------
314
315class WXDLLIMPEXP_BASE wxMBConvUTF32Base : public wxMBConv
316{
7ef3ab50 317public:
467e0479
VZ
318 enum { BYTES_PER_CHAR = 4 };
319
320 virtual size_t GetMBNulLen() const { return BYTES_PER_CHAR; }
321
322protected:
323 // this is similar to wxMBConvUTF16Base method with the same name except
324 // that, of course, it verifies that length is divisible by 4 if given and
325 // not by 2
326 static size_t GetLength(const char *src, size_t srcLen);
eec47cc6
VZ
327};
328
c91830cb 329// ----------------------------------------------------------------------------
8b9e1f43 330// wxMBConvUTF32LE (for conversion using UTF32 Little Endian encoding)
c91830cb
VZ
331// ----------------------------------------------------------------------------
332
eec47cc6 333class WXDLLIMPEXP_BASE wxMBConvUTF32LE : public wxMBConvUTF32Base
c91830cb
VZ
334{
335public:
467e0479
VZ
336 virtual size_t ToWChar(wchar_t *dst, size_t dstLen,
337 const char *src, size_t srcLen = wxNO_LEN) const;
338 virtual size_t FromWChar(char *dst, size_t dstLen,
339 const wchar_t *src, size_t srcLen = wxNO_LEN) const;
d36c9347 340 virtual wxMBConv *Clone() const { return new wxMBConvUTF32LE; }
c91830cb
VZ
341};
342
343// ----------------------------------------------------------------------------
8b9e1f43 344// wxMBConvUTF32BE (for conversion using UTF32 Big Endian encoding)
c91830cb
VZ
345// ----------------------------------------------------------------------------
346
eec47cc6 347class WXDLLIMPEXP_BASE wxMBConvUTF32BE : public wxMBConvUTF32Base
c91830cb
VZ
348{
349public:
467e0479
VZ
350 virtual size_t ToWChar(wchar_t *dst, size_t dstLen,
351 const char *src, size_t srcLen = wxNO_LEN) const;
352 virtual size_t FromWChar(char *dst, size_t dstLen,
353 const wchar_t *src, size_t srcLen = wxNO_LEN) const;
d36c9347 354 virtual wxMBConv *Clone() const { return new wxMBConvUTF32BE; }
c91830cb
VZ
355};
356
357// ----------------------------------------------------------------------------
e90c1d2a
VZ
358// wxCSConv (for conversion based on loadable char sets)
359// ----------------------------------------------------------------------------
6001e347 360
8b04d4c4
VZ
361#include "wx/fontenc.h"
362
bddd7a8d 363class WXDLLIMPEXP_BASE wxCSConv : public wxMBConv
6001e347 364{
6001e347 365public:
e95354ec
VZ
366 // we can be created either from charset name or from an encoding constant
367 // but we can't have both at once
e90c1d2a 368 wxCSConv(const wxChar *charset);
8b04d4c4 369 wxCSConv(wxFontEncoding encoding);
e95354ec 370
54380f29 371 wxCSConv(const wxCSConv& conv);
e90c1d2a
VZ
372 virtual ~wxCSConv();
373
54380f29 374 wxCSConv& operator=(const wxCSConv& conv);
2b5f62a0 375
75736a9c
DS
376 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
377 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
7ef3ab50 378 virtual size_t GetMBNulLen() const;
d36c9347 379 virtual wxMBConv *Clone() const { return new wxCSConv(*this); }
e90c1d2a 380
d36c9347 381 void Clear();
65e50848 382
e90c1d2a 383private:
8b04d4c4
VZ
384 // common part of all ctors
385 void Init();
386
e95354ec
VZ
387 // creates m_convReal if necessary
388 void CreateConvIfNeeded() const;
389
390 // do create m_convReal (unconditionally)
391 wxMBConv *DoCreate() const;
392
bda3d86a
VZ
393 // set the name (may be only called when m_name == NULL), makes copy of
394 // charset string
e90c1d2a
VZ
395 void SetName(const wxChar *charset);
396
e95354ec 397
dccce9ea
VZ
398 // note that we can't use wxString here because of compilation
399 // dependencies: we're included from wx/string.h
e90c1d2a 400 wxChar *m_name;
8b04d4c4 401 wxFontEncoding m_encoding;
e95354ec
VZ
402
403 // use CreateConvIfNeeded() before accessing m_convReal!
404 wxMBConv *m_convReal;
e90c1d2a 405 bool m_deferred;
6001e347
RR
406};
407
c3c1a9a9 408
f5a1953b
VZ
409// ----------------------------------------------------------------------------
410// declare predefined conversion objects
411// ----------------------------------------------------------------------------
d5c8817c 412
f5a1953b
VZ
413// conversion to be used with all standard functions affected by locale, e.g.
414// strtol(), strftime(), ...
415extern WXDLLIMPEXP_DATA_BASE(wxMBConv&) wxConvLibc;
416
417// conversion ISO-8859-1/UTF-7/UTF-8 <-> wchar_t
16cba29d 418extern WXDLLIMPEXP_DATA_BASE(wxCSConv&) wxConvISO8859_1;
f5a1953b
VZ
419extern WXDLLIMPEXP_DATA_BASE(wxMBConvUTF7&) wxConvUTF7;
420extern WXDLLIMPEXP_DATA_BASE(wxMBConvUTF8&) wxConvUTF8;
421
422// conversion used for the file names on the systems where they're not Unicode
423// (basically anything except Windows)
424//
425// this is used by all file functions, can be changed by the application
426//
427// by default UTF-8 under Mac OS X and wxConvLibc elsewhere (but it's not used
428// under Windows normally)
429extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvFileName;
430
431// backwards compatible define
432#define wxConvFile (*wxConvFileName)
433
434// the current conversion object, may be set to any conversion, is used by
435// default in a couple of places inside wx (initially same as wxConvLibc)
16cba29d 436extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent;
6001e347 437
0e052272 438// the conversion corresponding to the current locale
f5a1953b
VZ
439extern WXDLLIMPEXP_DATA_BASE(wxCSConv&) wxConvLocal;
440
d5bef0a3
VZ
441// the conversion corresponding to the encoding of the standard UI elements
442//
443// by default this is the same as wxConvLocal but may be changed if the program
444// needs to use a fixed encoding
445extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvUI;
446
e95354ec
VZ
447// ----------------------------------------------------------------------------
448// endianness-dependent conversions
449// ----------------------------------------------------------------------------
450
451#ifdef WORDS_BIGENDIAN
452 typedef wxMBConvUTF16BE wxMBConvUTF16;
453 typedef wxMBConvUTF32BE wxMBConvUTF32;
454#else
455 typedef wxMBConvUTF16LE wxMBConvUTF16;
456 typedef wxMBConvUTF32LE wxMBConvUTF32;
457#endif
458
e90c1d2a 459// ----------------------------------------------------------------------------
6001e347 460// filename conversion macros
e90c1d2a 461// ----------------------------------------------------------------------------
6001e347
RR
462
463// filenames are multibyte on Unix and probably widechar on Windows?
c4e41ce3 464#if defined(__UNIX__) || defined(__BORLANDC__) || defined(__WXMAC__ )
e90c1d2a 465 #define wxMBFILES 1
6001e347 466#else
e90c1d2a 467 #define wxMBFILES 0
6001e347
RR
468#endif
469
80df4d31 470#if wxMBFILES && wxUSE_UNICODE
f5a1953b 471 #define wxFNCONV(name) wxConvFileName->cWX2MB(name)
e90c1d2a 472 #define wxFNSTRINGCAST wxMBSTRINGCAST
d5c8817c
SC
473#else
474#if defined( __WXOSX__ ) && wxMBFILES
f5a1953b 475 #define wxFNCONV(name) wxConvFileName->cWC2MB( wxConvLocal.cWX2WC(name) )
6001e347 476#else
e90c1d2a 477 #define wxFNCONV(name) name
d5c8817c 478#endif
e90c1d2a 479 #define wxFNSTRINGCAST WXSTRINGCAST
6001e347
RR
480#endif
481
f5a1953b 482#else // !wxUSE_WCHAR_T
6001e347 483
e90c1d2a 484// ----------------------------------------------------------------------------
6001e347 485// stand-ins in absence of wchar_t
e90c1d2a 486// ----------------------------------------------------------------------------
6001e347 487
bddd7a8d 488class WXDLLIMPEXP_BASE wxMBConv
6001e347
RR
489{
490public:
e90c1d2a
VZ
491 const char* cMB2WX(const char *psz) const { return psz; }
492 const char* cWX2MB(const char *psz) const { return psz; }
6001e347 493};
e90c1d2a 494
bde4baac
VZ
495#define wxConvFile wxConvLocal
496
16cba29d 497extern WXDLLIMPEXP_DATA_BASE(wxMBConv) wxConvLibc,
8b04d4c4
VZ
498 wxConvLocal,
499 wxConvISO8859_1,
500 wxConvUTF8;
16cba29d 501extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent;
6001e347
RR
502
503#define wxFNCONV(name) name
e90c1d2a 504#define wxFNSTRINGCAST WXSTRINGCAST
6001e347
RR
505
506#endif
507 // wxUSE_WCHAR_T
508
e90c1d2a
VZ
509// ----------------------------------------------------------------------------
510// macros for the most common conversions
511// ----------------------------------------------------------------------------
512
513#if wxUSE_UNICODE
514 #define wxConvertWX2MB(s) wxConvCurrent->cWX2MB(s)
515 #define wxConvertMB2WX(s) wxConvCurrent->cMB2WX(s)
516#else // ANSI
517 // no conversions to do
518 #define wxConvertWX2MB(s) (s)
519 #define wxConvertMB2WX(s) (s)
520#endif // Unicode/ANSI
521
d36c9347 522#endif // _WX_STRCONV_H_
6001e347 523