]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/strconv.h
we need our own imaglist implementation because in wxmac wxIcon does not inherit...
[wxWidgets.git] / include / wx / strconv.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: strconv.h
3// Purpose: conversion routines for char sets any Unicode
4// Author: Robert Roebling, Ove Kaaven
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Ove Kaaven, Robert Roebling, Vadim Zeitlin
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_WXSTRCONVH__
13#define _WX_WXSTRCONVH__
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "strconv.h"
17#endif
18
19#include "wx/defs.h"
20#include "wx/wxchar.h"
21#include "wx/buffer.h"
22
23#ifdef __DIGITALMARS__
24#include "typeinfo.h"
25#endif
26
27#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
28# undef __BSEXCPT__
29#endif
30
31#include <stdlib.h>
32
33#if wxUSE_WCHAR_T
34
35// ----------------------------------------------------------------------------
36// wxMBConv (abstract base class for conversions)
37// ----------------------------------------------------------------------------
38
39class WXDLLIMPEXP_BASE wxMBConv
40{
41public:
42 // the actual conversion takes place here
43 //
44 // note that outputSize is the size of the output buffer, not the length of input
45 // (the latter is always supposed to be NUL-terminated)
46 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const = 0;
47 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const = 0;
48
49 // MB <-> WC
50 const wxWCharBuffer cMB2WC(const char *psz) const;
51 const wxCharBuffer cWC2MB(const wchar_t *psz) const;
52
53 // MB <-> WC for strings with embedded null characters
54 //
55 // pszLen length of the input string
56 // pOutSize gets the final size of the converted string
57 const wxWCharBuffer cMB2WC(const char *psz, size_t pszLen, size_t* pOutSize) const;
58 const wxCharBuffer cWC2MB(const wchar_t *psz, size_t pszLen, size_t* pOutSize) const;
59
60 // convenience functions for converting MB or WC to/from wxWin default
61#if wxUSE_UNICODE
62 const wxWCharBuffer cMB2WX(const char *psz) const { return cMB2WC(psz); }
63 const wxCharBuffer cWX2MB(const wchar_t *psz) const { return cWC2MB(psz); }
64 const wchar_t* cWC2WX(const wchar_t *psz) const { return psz; }
65 const wchar_t* cWX2WC(const wchar_t *psz) const { return psz; }
66#else // ANSI
67 const char* cMB2WX(const char *psz) const { return psz; }
68 const char* cWX2MB(const char *psz) const { return psz; }
69 const wxCharBuffer cWC2WX(const wchar_t *psz) const { return cWC2MB(psz); }
70 const wxWCharBuffer cWX2WC(const char *psz) const { return cMB2WC(psz); }
71#endif // Unicode/ANSI
72
73 // virtual dtor for any base class
74 virtual ~wxMBConv();
75};
76
77// ----------------------------------------------------------------------------
78// wxMBConvLibc uses standard mbstowcs() and wcstombs() functions for
79// conversion (hence it depends on the current locale)
80// ----------------------------------------------------------------------------
81
82class WXDLLIMPEXP_BASE wxMBConvLibc : public wxMBConv
83{
84public:
85 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
86 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
87};
88
89// ----------------------------------------------------------------------------
90// wxMBConvUTF7 (for conversion using UTF7 encoding)
91// ----------------------------------------------------------------------------
92
93class WXDLLIMPEXP_BASE wxMBConvUTF7 : public wxMBConv
94{
95public:
96 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
97 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
98};
99
100// ----------------------------------------------------------------------------
101// wxMBConvUTF8 (for conversion using UTF8 encoding)
102// ----------------------------------------------------------------------------
103
104class WXDLLIMPEXP_BASE wxMBConvUTF8 : public wxMBConv
105{
106public:
107 enum {
108 MAP_INVALID_UTF8_NOT = 0,
109 MAP_INVALID_UTF8_TO_PUA = 1,
110 MAP_INVALID_UTF8_TO_OCTAL = 2
111 };
112
113 wxMBConvUTF8(int options = MAP_INVALID_UTF8_NOT) : m_options(options) { }
114 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
115 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
116
117private:
118 int m_options;
119};
120
121// ----------------------------------------------------------------------------
122// wxMBConvUTF16LE (for conversion using UTF16 Little Endian encoding)
123// ----------------------------------------------------------------------------
124
125class WXDLLIMPEXP_BASE wxMBConvUTF16LE : public wxMBConv
126{
127public:
128 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
129 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
130};
131
132// ----------------------------------------------------------------------------
133// wxMBConvUTF16BE (for conversion using UTF16 Big Endian encoding)
134// ----------------------------------------------------------------------------
135
136class WXDLLIMPEXP_BASE wxMBConvUTF16BE : public wxMBConv
137{
138public:
139 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
140 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
141};
142
143// ----------------------------------------------------------------------------
144// wxMBConvUCS4LE (for conversion using UTF32 Little Endian encoding)
145// ----------------------------------------------------------------------------
146
147class WXDLLIMPEXP_BASE wxMBConvUTF32LE : public wxMBConv
148{
149public:
150 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
151 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
152};
153
154// ----------------------------------------------------------------------------
155// wxMBConvUCS4BE (for conversion using UTF32 Big Endian encoding)
156// ----------------------------------------------------------------------------
157
158class WXDLLIMPEXP_BASE wxMBConvUTF32BE : public wxMBConv
159{
160public:
161 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
162 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
163};
164
165// ----------------------------------------------------------------------------
166// wxCSConv (for conversion based on loadable char sets)
167// ----------------------------------------------------------------------------
168
169#include "wx/fontenc.h"
170
171class WXDLLIMPEXP_BASE wxCSConv : public wxMBConv
172{
173public:
174 // we can be created either from charset name or from an encoding constant
175 // but we can't have both at once
176 wxCSConv(const wxChar *charset);
177 wxCSConv(wxFontEncoding encoding);
178
179 wxCSConv(const wxCSConv& conv);
180 virtual ~wxCSConv();
181
182 wxCSConv& operator=(const wxCSConv& conv);
183
184 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
185 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
186
187 void Clear() ;
188
189private:
190 // common part of all ctors
191 void Init();
192
193 // creates m_convReal if necessary
194 void CreateConvIfNeeded() const;
195
196 // do create m_convReal (unconditionally)
197 wxMBConv *DoCreate() const;
198
199 // set the name (may be only called when m_name == NULL), makes copy of
200 // charset string
201 void SetName(const wxChar *charset);
202
203
204 // note that we can't use wxString here because of compilation
205 // dependencies: we're included from wx/string.h
206 wxChar *m_name;
207 wxFontEncoding m_encoding;
208
209 // use CreateConvIfNeeded() before accessing m_convReal!
210 wxMBConv *m_convReal;
211 bool m_deferred;
212};
213
214// ----------------------------------------------------------------------------
215// declare predefined conversion objects
216// ----------------------------------------------------------------------------
217
218// conversion to be used with all standard functions affected by locale, e.g.
219// strtol(), strftime(), ...
220extern WXDLLIMPEXP_DATA_BASE(wxMBConv&) wxConvLibc;
221
222// conversion ISO-8859-1/UTF-7/UTF-8 <-> wchar_t
223extern WXDLLIMPEXP_DATA_BASE(wxCSConv&) wxConvISO8859_1;
224extern WXDLLIMPEXP_DATA_BASE(wxMBConvUTF7&) wxConvUTF7;
225extern WXDLLIMPEXP_DATA_BASE(wxMBConvUTF8&) wxConvUTF8;
226
227// conversion used for the file names on the systems where they're not Unicode
228// (basically anything except Windows)
229//
230// this is used by all file functions, can be changed by the application
231//
232// by default UTF-8 under Mac OS X and wxConvLibc elsewhere (but it's not used
233// under Windows normally)
234extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvFileName;
235
236// backwards compatible define
237#define wxConvFile (*wxConvFileName)
238
239// the current conversion object, may be set to any conversion, is used by
240// default in a couple of places inside wx (initially same as wxConvLibc)
241extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent;
242
243// ???
244extern WXDLLIMPEXP_DATA_BASE(wxCSConv&) wxConvLocal;
245
246
247// ----------------------------------------------------------------------------
248// endianness-dependent conversions
249// ----------------------------------------------------------------------------
250
251#ifdef WORDS_BIGENDIAN
252 typedef wxMBConvUTF16BE wxMBConvUTF16;
253 typedef wxMBConvUTF32BE wxMBConvUTF32;
254#else
255 typedef wxMBConvUTF16LE wxMBConvUTF16;
256 typedef wxMBConvUTF32LE wxMBConvUTF32;
257#endif
258
259// ----------------------------------------------------------------------------
260// filename conversion macros
261// ----------------------------------------------------------------------------
262
263// filenames are multibyte on Unix and probably widechar on Windows?
264#if defined(__UNIX__) || defined(__BORLANDC__) || defined(__WXMAC__ )
265 #define wxMBFILES 1
266#else
267 #define wxMBFILES 0
268#endif
269
270#if wxMBFILES && wxUSE_UNICODE
271 #define wxFNCONV(name) wxConvFileName->cWX2MB(name)
272 #define wxFNSTRINGCAST wxMBSTRINGCAST
273#else
274#if defined( __WXOSX__ ) && wxMBFILES
275 #define wxFNCONV(name) wxConvFileName->cWC2MB( wxConvLocal.cWX2WC(name) )
276#else
277 #define wxFNCONV(name) name
278#endif
279 #define wxFNSTRINGCAST WXSTRINGCAST
280#endif
281
282#else // !wxUSE_WCHAR_T
283
284// ----------------------------------------------------------------------------
285// stand-ins in absence of wchar_t
286// ----------------------------------------------------------------------------
287
288class WXDLLIMPEXP_BASE wxMBConv
289{
290public:
291 const char* cMB2WX(const char *psz) const { return psz; }
292 const char* cWX2MB(const char *psz) const { return psz; }
293};
294
295#define wxConvFile wxConvLocal
296
297extern WXDLLIMPEXP_DATA_BASE(wxMBConv) wxConvLibc,
298 wxConvLocal,
299 wxConvISO8859_1,
300 wxConvUTF8;
301extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvCurrent;
302
303#define wxFNCONV(name) name
304#define wxFNSTRINGCAST WXSTRINGCAST
305
306#endif
307 // wxUSE_WCHAR_T
308
309// ----------------------------------------------------------------------------
310// macros for the most common conversions
311// ----------------------------------------------------------------------------
312
313#if wxUSE_UNICODE
314 #define wxConvertWX2MB(s) wxConvCurrent->cWX2MB(s)
315 #define wxConvertMB2WX(s) wxConvCurrent->cMB2WX(s)
316#else // ANSI
317 // no conversions to do
318 #define wxConvertWX2MB(s) (s)
319 #define wxConvertMB2WX(s) (s)
320#endif // Unicode/ANSI
321
322#endif
323 // _WX_WXSTRCONVH__
324