]>
Commit | Line | Data |
---|---|---|
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 | 16 | #include "wx/defs.h" |
e3f6cbd9 | 17 | #include "wx/chartype.h" |
6001e347 RR |
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 | 52 | class WXDLLIMPEXP_BASE wxMBConv |
6001e347 RR |
53 | { |
54 | public: | |
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 | ||
111d9948 VS |
138 | #if wxUSE_UNICODE_UTF8 |
139 | // return true if the converter's charset is UTF-8, i.e. char* strings | |
140 | // decoded using this object can be directly copied to wxString's internal | |
141 | // storage without converting to WC and than back to UTF-8 MB string | |
142 | virtual bool IsUTF8() const { return false; } | |
143 | #endif | |
483b0434 VZ |
144 | |
145 | // The old conversion functions. The existing classes currently mostly | |
146 | // implement these ones but we're in transition to using To/FromWChar() | |
147 | // instead and any new classes should implement just the new functions. | |
148 | // For now, however, we provide default implementation of To/FromWChar() in | |
149 | // this base class in terms of MB2WC/WC2MB() to avoid having to rewrite all | |
150 | // the conversions at once. | |
151 | // | |
152 | // On success, the return value is the length (i.e. the number of | |
153 | // characters, not bytes) not counting the trailing NUL(s) of the converted | |
154 | // string. On failure, (size_t)-1 is returned. In the special case when | |
155 | // outputBuf is NULL the return value is the same one but nothing is | |
156 | // written to the buffer. | |
157 | // | |
158 | // Note that outLen is the length of the output buffer, not the length of | |
159 | // the input (which is always supposed to be terminated by one or more | |
160 | // NULs, as appropriate for the encoding)! | |
509da451 VZ |
161 | virtual size_t MB2WC(wchar_t *out, const char *in, size_t outLen) const; |
162 | virtual size_t WC2MB(char *out, const wchar_t *in, size_t outLen) const; | |
483b0434 VZ |
163 | |
164 | ||
d36c9347 VZ |
165 | // make a heap-allocated copy of this object |
166 | virtual wxMBConv *Clone() const = 0; | |
167 | ||
7ef3ab50 VZ |
168 | // virtual dtor for any base class |
169 | virtual ~wxMBConv(); | |
6001e347 RR |
170 | }; |
171 | ||
bde4baac VZ |
172 | // ---------------------------------------------------------------------------- |
173 | // wxMBConvLibc uses standard mbstowcs() and wcstombs() functions for | |
174 | // conversion (hence it depends on the current locale) | |
175 | // ---------------------------------------------------------------------------- | |
176 | ||
177 | class WXDLLIMPEXP_BASE wxMBConvLibc : public wxMBConv | |
178 | { | |
179 | public: | |
75736a9c DS |
180 | virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const; |
181 | virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const; | |
d36c9347 VZ |
182 | |
183 | virtual wxMBConv *Clone() const { return new wxMBConvLibc; } | |
111d9948 VS |
184 | |
185 | #if wxUSE_UNICODE_UTF8 | |
186 | virtual bool IsUTF8() const { return wxLocaleIsUtf8; } | |
187 | #endif | |
bde4baac VZ |
188 | }; |
189 | ||
5576edf8 RR |
190 | #ifdef __UNIX__ |
191 | ||
192 | // ---------------------------------------------------------------------------- | |
193 | // wxConvBrokenFileNames is made for Unix in Unicode mode when | |
194 | // files are accidentally written in an encoding which is not | |
195 | // the system encoding. Typically, the system encoding will be | |
196 | // UTF8 but there might be files stored in ISO8859-1 on disk. | |
197 | // ---------------------------------------------------------------------------- | |
198 | ||
199 | class WXDLLIMPEXP_BASE wxConvBrokenFileNames : public wxMBConv | |
200 | { | |
201 | public: | |
845905d5 | 202 | wxConvBrokenFileNames(const wxChar *charset); |
d36c9347 | 203 | wxConvBrokenFileNames(const wxConvBrokenFileNames& conv) |
2e2cf78d VZ |
204 | : wxMBConv(), |
205 | m_conv(conv.m_conv ? conv.m_conv->Clone() : NULL) | |
d36c9347 VZ |
206 | { |
207 | } | |
5576edf8 RR |
208 | virtual ~wxConvBrokenFileNames() { delete m_conv; } |
209 | ||
eec47cc6 VZ |
210 | virtual size_t MB2WC(wchar_t *out, const char *in, size_t outLen) const |
211 | { | |
212 | return m_conv->MB2WC(out, in, outLen); | |
213 | } | |
214 | ||
215 | virtual size_t WC2MB(char *out, const wchar_t *in, size_t outLen) const | |
216 | { | |
217 | return m_conv->WC2MB(out, in, outLen); | |
218 | } | |
5576edf8 | 219 | |
7ef3ab50 | 220 | virtual size_t GetMBNulLen() const |
eec47cc6 | 221 | { |
22886fb3 | 222 | // cast needed to call a private function |
7ef3ab50 | 223 | return m_conv->GetMBNulLen(); |
eec47cc6 VZ |
224 | } |
225 | ||
ba98e032 VS |
226 | #if wxUSE_UNICODE_UTF8 |
227 | virtual bool IsUTF8() const { return m_conv->IsUTF8(); } | |
228 | #endif | |
229 | ||
d36c9347 VZ |
230 | virtual wxMBConv *Clone() const { return new wxConvBrokenFileNames(*this); } |
231 | ||
7ef3ab50 | 232 | private: |
5576edf8 RR |
233 | // the conversion object we forward to |
234 | wxMBConv *m_conv; | |
d36c9347 VZ |
235 | |
236 | DECLARE_NO_ASSIGN_CLASS(wxConvBrokenFileNames) | |
5576edf8 RR |
237 | }; |
238 | ||
eec47cc6 | 239 | #endif // __UNIX__ |
5576edf8 | 240 | |
e90c1d2a | 241 | // ---------------------------------------------------------------------------- |
6001e347 | 242 | // wxMBConvUTF7 (for conversion using UTF7 encoding) |
e90c1d2a | 243 | // ---------------------------------------------------------------------------- |
6001e347 | 244 | |
bddd7a8d | 245 | class WXDLLIMPEXP_BASE wxMBConvUTF7 : public wxMBConv |
6001e347 RR |
246 | { |
247 | public: | |
75736a9c DS |
248 | virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const; |
249 | virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const; | |
d36c9347 VZ |
250 | |
251 | virtual wxMBConv *Clone() const { return new wxMBConvUTF7; } | |
6001e347 RR |
252 | }; |
253 | ||
e90c1d2a | 254 | // ---------------------------------------------------------------------------- |
6001e347 | 255 | // wxMBConvUTF8 (for conversion using UTF8 encoding) |
e90c1d2a | 256 | // ---------------------------------------------------------------------------- |
6001e347 | 257 | |
bddd7a8d | 258 | class WXDLLIMPEXP_BASE wxMBConvUTF8 : public wxMBConv |
6001e347 RR |
259 | { |
260 | public: | |
111d9948 VS |
261 | // FIXME-UTF8: split this class into multiple classes, one strict and |
262 | // other lossy (PUA, OCTAL mappings) | |
d36c9347 VZ |
263 | enum |
264 | { | |
ea8ce907 RR |
265 | MAP_INVALID_UTF8_NOT = 0, |
266 | MAP_INVALID_UTF8_TO_PUA = 1, | |
267 | MAP_INVALID_UTF8_TO_OCTAL = 2 | |
268 | }; | |
269 | ||
270 | wxMBConvUTF8(int options = MAP_INVALID_UTF8_NOT) : m_options(options) { } | |
75736a9c DS |
271 | virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const; |
272 | virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const; | |
eec47cc6 | 273 | |
d36c9347 VZ |
274 | virtual wxMBConv *Clone() const { return new wxMBConvUTF8(m_options); } |
275 | ||
111d9948 VS |
276 | #if wxUSE_UNICODE_UTF8 |
277 | // NB: other mapping modes are not, strictly speaking, UTF-8, so we can't | |
278 | // take the shortcut in that case | |
279 | virtual bool IsUTF8() const { return m_options == MAP_INVALID_UTF8_NOT; } | |
280 | #endif | |
281 | ||
ea8ce907 RR |
282 | private: |
283 | int m_options; | |
6001e347 RR |
284 | }; |
285 | ||
eec47cc6 VZ |
286 | // ---------------------------------------------------------------------------- |
287 | // wxMBConvUTF16Base: for both LE and BE variants | |
288 | // ---------------------------------------------------------------------------- | |
289 | ||
290 | class WXDLLIMPEXP_BASE wxMBConvUTF16Base : public wxMBConv | |
291 | { | |
7ef3ab50 | 292 | public: |
467e0479 VZ |
293 | enum { BYTES_PER_CHAR = 2 }; |
294 | ||
295 | virtual size_t GetMBNulLen() const { return BYTES_PER_CHAR; } | |
296 | ||
297 | protected: | |
298 | // return the length of the buffer using srcLen if it's not wxNO_LEN and | |
299 | // computing the length ourselves if it is; also checks that the length is | |
300 | // even if specified as we need an entire number of UTF-16 characters and | |
301 | // returns wxNO_LEN which indicates error if it is odd | |
302 | static size_t GetLength(const char *src, size_t srcLen); | |
eec47cc6 VZ |
303 | }; |
304 | ||
e90c1d2a | 305 | // ---------------------------------------------------------------------------- |
c91830cb VZ |
306 | // wxMBConvUTF16LE (for conversion using UTF16 Little Endian encoding) |
307 | // ---------------------------------------------------------------------------- | |
308 | ||
eec47cc6 | 309 | class WXDLLIMPEXP_BASE wxMBConvUTF16LE : public wxMBConvUTF16Base |
c91830cb VZ |
310 | { |
311 | public: | |
467e0479 VZ |
312 | virtual size_t ToWChar(wchar_t *dst, size_t dstLen, |
313 | const char *src, size_t srcLen = wxNO_LEN) const; | |
314 | virtual size_t FromWChar(char *dst, size_t dstLen, | |
315 | const wchar_t *src, size_t srcLen = wxNO_LEN) const; | |
d36c9347 | 316 | virtual wxMBConv *Clone() const { return new wxMBConvUTF16LE; } |
c91830cb VZ |
317 | }; |
318 | ||
319 | // ---------------------------------------------------------------------------- | |
320 | // wxMBConvUTF16BE (for conversion using UTF16 Big Endian encoding) | |
321 | // ---------------------------------------------------------------------------- | |
322 | ||
eec47cc6 | 323 | class WXDLLIMPEXP_BASE wxMBConvUTF16BE : public wxMBConvUTF16Base |
c91830cb VZ |
324 | { |
325 | public: | |
467e0479 VZ |
326 | virtual size_t ToWChar(wchar_t *dst, size_t dstLen, |
327 | const char *src, size_t srcLen = wxNO_LEN) const; | |
328 | virtual size_t FromWChar(char *dst, size_t dstLen, | |
329 | const wchar_t *src, size_t srcLen = wxNO_LEN) const; | |
d36c9347 | 330 | virtual wxMBConv *Clone() const { return new wxMBConvUTF16BE; } |
c91830cb VZ |
331 | }; |
332 | ||
eec47cc6 VZ |
333 | // ---------------------------------------------------------------------------- |
334 | // wxMBConvUTF32Base: base class for both LE and BE variants | |
335 | // ---------------------------------------------------------------------------- | |
336 | ||
337 | class WXDLLIMPEXP_BASE wxMBConvUTF32Base : public wxMBConv | |
338 | { | |
7ef3ab50 | 339 | public: |
467e0479 VZ |
340 | enum { BYTES_PER_CHAR = 4 }; |
341 | ||
342 | virtual size_t GetMBNulLen() const { return BYTES_PER_CHAR; } | |
343 | ||
344 | protected: | |
345 | // this is similar to wxMBConvUTF16Base method with the same name except | |
346 | // that, of course, it verifies that length is divisible by 4 if given and | |
347 | // not by 2 | |
348 | static size_t GetLength(const char *src, size_t srcLen); | |
eec47cc6 VZ |
349 | }; |
350 | ||
c91830cb | 351 | // ---------------------------------------------------------------------------- |
8b9e1f43 | 352 | // wxMBConvUTF32LE (for conversion using UTF32 Little Endian encoding) |
c91830cb VZ |
353 | // ---------------------------------------------------------------------------- |
354 | ||
eec47cc6 | 355 | class WXDLLIMPEXP_BASE wxMBConvUTF32LE : public wxMBConvUTF32Base |
c91830cb VZ |
356 | { |
357 | public: | |
467e0479 VZ |
358 | virtual size_t ToWChar(wchar_t *dst, size_t dstLen, |
359 | const char *src, size_t srcLen = wxNO_LEN) const; | |
360 | virtual size_t FromWChar(char *dst, size_t dstLen, | |
361 | const wchar_t *src, size_t srcLen = wxNO_LEN) const; | |
d36c9347 | 362 | virtual wxMBConv *Clone() const { return new wxMBConvUTF32LE; } |
c91830cb VZ |
363 | }; |
364 | ||
365 | // ---------------------------------------------------------------------------- | |
8b9e1f43 | 366 | // wxMBConvUTF32BE (for conversion using UTF32 Big Endian encoding) |
c91830cb VZ |
367 | // ---------------------------------------------------------------------------- |
368 | ||
eec47cc6 | 369 | class WXDLLIMPEXP_BASE wxMBConvUTF32BE : public wxMBConvUTF32Base |
c91830cb VZ |
370 | { |
371 | public: | |
467e0479 VZ |
372 | virtual size_t ToWChar(wchar_t *dst, size_t dstLen, |
373 | const char *src, size_t srcLen = wxNO_LEN) const; | |
374 | virtual size_t FromWChar(char *dst, size_t dstLen, | |
375 | const wchar_t *src, size_t srcLen = wxNO_LEN) const; | |
d36c9347 | 376 | virtual wxMBConv *Clone() const { return new wxMBConvUTF32BE; } |
c91830cb VZ |
377 | }; |
378 | ||
379 | // ---------------------------------------------------------------------------- | |
e90c1d2a VZ |
380 | // wxCSConv (for conversion based on loadable char sets) |
381 | // ---------------------------------------------------------------------------- | |
6001e347 | 382 | |
8b04d4c4 VZ |
383 | #include "wx/fontenc.h" |
384 | ||
bddd7a8d | 385 | class WXDLLIMPEXP_BASE wxCSConv : public wxMBConv |
6001e347 | 386 | { |
6001e347 | 387 | public: |
e95354ec VZ |
388 | // we can be created either from charset name or from an encoding constant |
389 | // but we can't have both at once | |
e90c1d2a | 390 | wxCSConv(const wxChar *charset); |
8b04d4c4 | 391 | wxCSConv(wxFontEncoding encoding); |
e95354ec | 392 | |
54380f29 | 393 | wxCSConv(const wxCSConv& conv); |
e90c1d2a VZ |
394 | virtual ~wxCSConv(); |
395 | ||
54380f29 | 396 | wxCSConv& operator=(const wxCSConv& conv); |
2b5f62a0 | 397 | |
1c714a5d VZ |
398 | virtual size_t ToWChar(wchar_t *dst, size_t dstLen, |
399 | const char *src, size_t srcLen = wxNO_LEN) const; | |
400 | virtual size_t FromWChar(char *dst, size_t dstLen, | |
401 | const wchar_t *src, size_t srcLen = wxNO_LEN) const; | |
75736a9c DS |
402 | virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const; |
403 | virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const; | |
7ef3ab50 | 404 | virtual size_t GetMBNulLen() const; |
1c714a5d | 405 | |
ba98e032 VS |
406 | #if wxUSE_UNICODE_UTF8 |
407 | virtual bool IsUTF8() const; | |
408 | #endif | |
409 | ||
d36c9347 | 410 | virtual wxMBConv *Clone() const { return new wxCSConv(*this); } |
e90c1d2a | 411 | |
d36c9347 | 412 | void Clear(); |
65e50848 | 413 | |
0f0298b1 VZ |
414 | // return true if the conversion could be initilized successfully |
415 | bool IsOk() const; | |
0f0298b1 | 416 | |
e90c1d2a | 417 | private: |
8b04d4c4 VZ |
418 | // common part of all ctors |
419 | void Init(); | |
420 | ||
e95354ec VZ |
421 | // creates m_convReal if necessary |
422 | void CreateConvIfNeeded() const; | |
423 | ||
424 | // do create m_convReal (unconditionally) | |
425 | wxMBConv *DoCreate() const; | |
426 | ||
bda3d86a VZ |
427 | // set the name (may be only called when m_name == NULL), makes copy of |
428 | // charset string | |
e90c1d2a VZ |
429 | void SetName(const wxChar *charset); |
430 | ||
e95354ec | 431 | |
dccce9ea VZ |
432 | // note that we can't use wxString here because of compilation |
433 | // dependencies: we're included from wx/string.h | |
e90c1d2a | 434 | wxChar *m_name; |
8b04d4c4 | 435 | wxFontEncoding m_encoding; |
e95354ec VZ |
436 | |
437 | // use CreateConvIfNeeded() before accessing m_convReal! | |
438 | wxMBConv *m_convReal; | |
e90c1d2a | 439 | bool m_deferred; |
6001e347 RR |
440 | }; |
441 | ||
c3c1a9a9 | 442 | |
f5a1953b VZ |
443 | // ---------------------------------------------------------------------------- |
444 | // declare predefined conversion objects | |
445 | // ---------------------------------------------------------------------------- | |
d5c8817c | 446 | |
1e50d914 VS |
447 | // Note: this macro is an implementation detail (see the comment in |
448 | // strconv.cpp). The wxGet_XXX() and wxGet_XXXPtr() functions shouldn't be | |
449 | // used by user code and neither should XXXPtr, use the wxConvXXX macro | |
450 | // instead. | |
451 | #define WX_DECLARE_GLOBAL_CONV(klass, name) \ | |
452 | extern WXDLLIMPEXP_DATA_BASE(klass*) name##Ptr; \ | |
092ee46f | 453 | extern WXDLLIMPEXP_BASE klass* wxGet_##name##Ptr(); \ |
1e50d914 VS |
454 | inline klass& wxGet_##name() \ |
455 | { \ | |
456 | if ( !name##Ptr ) \ | |
457 | name##Ptr = wxGet_##name##Ptr(); \ | |
458 | return *name##Ptr; \ | |
459 | } | |
460 | ||
461 | ||
f5a1953b VZ |
462 | // conversion to be used with all standard functions affected by locale, e.g. |
463 | // strtol(), strftime(), ... | |
1e50d914 VS |
464 | WX_DECLARE_GLOBAL_CONV(wxMBConv, wxConvLibc) |
465 | #define wxConvLibc wxGet_wxConvLibc() | |
f5a1953b VZ |
466 | |
467 | // conversion ISO-8859-1/UTF-7/UTF-8 <-> wchar_t | |
1e50d914 VS |
468 | WX_DECLARE_GLOBAL_CONV(wxCSConv, wxConvISO8859_1) |
469 | #define wxConvISO8859_1 wxGet_wxConvISO8859_1() | |
470 | ||
471 | WX_DECLARE_GLOBAL_CONV(wxMBConvUTF8, wxConvUTF8) | |
472 | #define wxConvUTF8 wxGet_wxConvUTF8() | |
473 | ||
474 | WX_DECLARE_GLOBAL_CONV(wxMBConvUTF7, wxConvUTF7) | |
475 | #define wxConvUTF7 wxGet_wxConvUTF7() | |
f5a1953b VZ |
476 | |
477 | // conversion used for the file names on the systems where they're not Unicode | |
478 | // (basically anything except Windows) | |
479 | // | |
480 | // this is used by all file functions, can be changed by the application | |
481 | // | |
482 | // by default UTF-8 under Mac OS X and wxConvLibc elsewhere (but it's not used | |
483 | // under Windows normally) | |
484 | extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvFileName; | |
485 | ||
486 | // backwards compatible define | |
487 | #define wxConvFile (*wxConvFileName) | |
488 | ||
489 | // the current conversion object, may be set to any conversion, is used by | |
490 | // default in a couple of places inside wx (initially same as wxConvLibc) | |
16cba29d | 491 | extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent; |
6001e347 | 492 | |
0e052272 | 493 | // the conversion corresponding to the current locale |
1e50d914 VS |
494 | WX_DECLARE_GLOBAL_CONV(wxCSConv, wxConvLocal) |
495 | #define wxConvLocal wxGet_wxConvLocal() | |
f5a1953b | 496 | |
d5bef0a3 VZ |
497 | // the conversion corresponding to the encoding of the standard UI elements |
498 | // | |
499 | // by default this is the same as wxConvLocal but may be changed if the program | |
500 | // needs to use a fixed encoding | |
501 | extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvUI; | |
502 | ||
1e50d914 VS |
503 | #undef WX_DECLARE_GLOBAL_CONV |
504 | ||
e95354ec VZ |
505 | // ---------------------------------------------------------------------------- |
506 | // endianness-dependent conversions | |
507 | // ---------------------------------------------------------------------------- | |
508 | ||
509 | #ifdef WORDS_BIGENDIAN | |
510 | typedef wxMBConvUTF16BE wxMBConvUTF16; | |
511 | typedef wxMBConvUTF32BE wxMBConvUTF32; | |
512 | #else | |
513 | typedef wxMBConvUTF16LE wxMBConvUTF16; | |
514 | typedef wxMBConvUTF32LE wxMBConvUTF32; | |
515 | #endif | |
516 | ||
e90c1d2a | 517 | // ---------------------------------------------------------------------------- |
6001e347 | 518 | // filename conversion macros |
e90c1d2a | 519 | // ---------------------------------------------------------------------------- |
6001e347 | 520 | |
bc4b4779 VZ |
521 | // filenames are multibyte on Unix and widechar on Windows |
522 | #if defined(__UNIX__) || defined(__WXMAC__) | |
e90c1d2a | 523 | #define wxMBFILES 1 |
6001e347 | 524 | #else |
e90c1d2a | 525 | #define wxMBFILES 0 |
6001e347 RR |
526 | #endif |
527 | ||
80df4d31 | 528 | #if wxMBFILES && wxUSE_UNICODE |
f5a1953b | 529 | #define wxFNCONV(name) wxConvFileName->cWX2MB(name) |
e90c1d2a | 530 | #define wxFNSTRINGCAST wxMBSTRINGCAST |
d5c8817c SC |
531 | #else |
532 | #if defined( __WXOSX__ ) && wxMBFILES | |
f5a1953b | 533 | #define wxFNCONV(name) wxConvFileName->cWC2MB( wxConvLocal.cWX2WC(name) ) |
6001e347 | 534 | #else |
e90c1d2a | 535 | #define wxFNCONV(name) name |
d5c8817c | 536 | #endif |
e90c1d2a | 537 | #define wxFNSTRINGCAST WXSTRINGCAST |
6001e347 RR |
538 | #endif |
539 | ||
f5a1953b | 540 | #else // !wxUSE_WCHAR_T |
6001e347 | 541 | |
e90c1d2a | 542 | // ---------------------------------------------------------------------------- |
6001e347 | 543 | // stand-ins in absence of wchar_t |
e90c1d2a | 544 | // ---------------------------------------------------------------------------- |
6001e347 | 545 | |
bddd7a8d | 546 | class WXDLLIMPEXP_BASE wxMBConv |
6001e347 RR |
547 | { |
548 | public: | |
e90c1d2a VZ |
549 | const char* cMB2WX(const char *psz) const { return psz; } |
550 | const char* cWX2MB(const char *psz) const { return psz; } | |
6001e347 | 551 | }; |
e90c1d2a | 552 | |
bde4baac VZ |
553 | #define wxConvFile wxConvLocal |
554 | ||
16cba29d | 555 | extern WXDLLIMPEXP_DATA_BASE(wxMBConv) wxConvLibc, |
8b04d4c4 VZ |
556 | wxConvLocal, |
557 | wxConvISO8859_1, | |
558 | wxConvUTF8; | |
16cba29d | 559 | extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent; |
6001e347 RR |
560 | |
561 | #define wxFNCONV(name) name | |
e90c1d2a | 562 | #define wxFNSTRINGCAST WXSTRINGCAST |
6001e347 RR |
563 | |
564 | #endif | |
565 | // wxUSE_WCHAR_T | |
566 | ||
e90c1d2a VZ |
567 | // ---------------------------------------------------------------------------- |
568 | // macros for the most common conversions | |
569 | // ---------------------------------------------------------------------------- | |
570 | ||
571 | #if wxUSE_UNICODE | |
572 | #define wxConvertWX2MB(s) wxConvCurrent->cWX2MB(s) | |
573 | #define wxConvertMB2WX(s) wxConvCurrent->cMB2WX(s) | |
69c928ef VZ |
574 | |
575 | // these functions should be used when the conversions really, really have | |
576 | // to succeed (usually because we pass their results to a standard C | |
577 | // function which would crash if we passed NULL to it), so these functions | |
578 | // always return a valid pointer if their argument is non-NULL | |
579 | ||
580 | // this function safety is achieved by trying wxConvLibc first, wxConvUTF8 | |
581 | // next if it fails and, finally, wxConvISO8859_1 which always succeeds | |
582 | extern WXDLLIMPEXP_BASE wxWCharBuffer wxSafeConvertMB2WX(const char *s); | |
583 | ||
584 | // this function uses wxConvLibc and wxConvUTF8(MAP_INVALID_UTF8_TO_OCTAL) | |
585 | // if it fails | |
586 | extern WXDLLIMPEXP_BASE wxCharBuffer wxSafeConvertWX2MB(const wchar_t *ws); | |
e90c1d2a VZ |
587 | #else // ANSI |
588 | // no conversions to do | |
589 | #define wxConvertWX2MB(s) (s) | |
590 | #define wxConvertMB2WX(s) (s) | |
69c928ef VZ |
591 | #define wxSafeConvertMB2WX(s) (s) |
592 | #define wxSafeConvertWX2MB(s) (s) | |
e90c1d2a VZ |
593 | #endif // Unicode/ANSI |
594 | ||
d36c9347 | 595 | #endif // _WX_STRCONV_H_ |
6001e347 | 596 |