]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/strconv.h
made FindWindow() member functions const (this makes it possible to use XRCCTRL(...
[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// not very accurately named because it is not necessarily of type wxMBConvLibc
90// (but the name can't eb changed because of backwards compatibility) default
91// conversion
92WXDLLIMPEXP_DATA_BASE(extern wxMBConv&) wxConvLibc;
93
94// ----------------------------------------------------------------------------
95// wxMBConvUTF7 (for conversion using UTF7 encoding)
96// ----------------------------------------------------------------------------
97
98class WXDLLIMPEXP_BASE wxMBConvUTF7 : public wxMBConv
99{
100public:
101 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
102 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
103};
104
105WXDLLIMPEXP_DATA_BASE(extern wxMBConvUTF7&) wxConvUTF7;
106
107// ----------------------------------------------------------------------------
108// wxMBConvUTF8 (for conversion using UTF8 encoding)
109// ----------------------------------------------------------------------------
110
111class WXDLLIMPEXP_BASE wxMBConvUTF8 : public wxMBConv
112{
113public:
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};
117
118WXDLLIMPEXP_DATA_BASE(extern wxMBConvUTF8&) wxConvUTF8;
119
120// ----------------------------------------------------------------------------
121// wxMBConvUTF16LE (for conversion using UTF16 Little Endian encoding)
122// ----------------------------------------------------------------------------
123
124class WXDLLIMPEXP_BASE wxMBConvUTF16LE : public wxMBConv
125{
126public:
127 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
128 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
129};
130
131// ----------------------------------------------------------------------------
132// wxMBConvUTF16BE (for conversion using UTF16 Big Endian encoding)
133// ----------------------------------------------------------------------------
134
135class WXDLLIMPEXP_BASE wxMBConvUTF16BE : public wxMBConv
136{
137public:
138 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
139 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
140};
141
142// ----------------------------------------------------------------------------
143// wxMBConvUCS4LE (for conversion using UTF32 Little Endian encoding)
144// ----------------------------------------------------------------------------
145
146class WXDLLIMPEXP_BASE wxMBConvUTF32LE : public wxMBConv
147{
148public:
149 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
150 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
151};
152
153// ----------------------------------------------------------------------------
154// wxMBConvUCS4BE (for conversion using UTF32 Big Endian encoding)
155// ----------------------------------------------------------------------------
156
157class WXDLLIMPEXP_BASE wxMBConvUTF32BE : public wxMBConv
158{
159public:
160 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
161 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
162};
163
164// ----------------------------------------------------------------------------
165// wxCSConv (for conversion based on loadable char sets)
166// ----------------------------------------------------------------------------
167
168#include "wx/fontenc.h"
169
170class WXDLLIMPEXP_BASE wxCSConv : public wxMBConv
171{
172public:
173 // we can be created either from charset name or from an encoding constant
174 // but we can't have both at once
175 wxCSConv(const wxChar *charset);
176 wxCSConv(wxFontEncoding encoding);
177
178 wxCSConv(const wxCSConv& conv);
179 virtual ~wxCSConv();
180
181 wxCSConv& operator=(const wxCSConv& conv);
182
183 virtual size_t MB2WC(wchar_t *outputBuf, const char *psz, size_t outputSize) const;
184 virtual size_t WC2MB(char *outputBuf, const wchar_t *psz, size_t outputSize) const;
185
186 void Clear() ;
187
188private:
189 // common part of all ctors
190 void Init();
191
192 // creates m_convReal if necessary
193 void CreateConvIfNeeded() const;
194
195 // do create m_convReal (unconditionally)
196 wxMBConv *DoCreate() const;
197
198 // set the name (may be only called when m_name == NULL), makes copy of
199 // charset string
200 void SetName(const wxChar *charset);
201
202
203 // note that we can't use wxString here because of compilation
204 // dependencies: we're included from wx/string.h
205 wxChar *m_name;
206 wxFontEncoding m_encoding;
207
208 // use CreateConvIfNeeded() before accessing m_convReal!
209 wxMBConv *m_convReal;
210 bool m_deferred;
211};
212
213#ifdef __WXOSX__
214#define wxConvFile wxConvUTF8
215#else
216#define wxConvFile wxConvLocal
217#endif
218
219WXDLLIMPEXP_DATA_BASE(extern wxCSConv&) wxConvLocal;
220WXDLLIMPEXP_DATA_BASE(extern wxCSConv&) wxConvISO8859_1;
221WXDLLIMPEXP_DATA_BASE(extern wxMBConv *) wxConvCurrent;
222
223// ----------------------------------------------------------------------------
224// endianness-dependent conversions
225// ----------------------------------------------------------------------------
226
227#ifdef WORDS_BIGENDIAN
228 typedef wxMBConvUTF16BE wxMBConvUTF16;
229 typedef wxMBConvUTF32BE wxMBConvUTF32;
230#else
231 typedef wxMBConvUTF16LE wxMBConvUTF16;
232 typedef wxMBConvUTF32LE wxMBConvUTF32;
233#endif
234
235// ----------------------------------------------------------------------------
236// filename conversion macros
237// ----------------------------------------------------------------------------
238
239// filenames are multibyte on Unix and probably widechar on Windows?
240#if defined(__UNIX__) || defined(__BORLANDC__) || defined(__WXMAC__ )
241 #define wxMBFILES 1
242#else
243 #define wxMBFILES 0
244#endif
245
246#if wxMBFILES && wxUSE_UNICODE
247 #define wxFNCONV(name) wxConvFile.cWX2MB(name)
248 #define wxFNSTRINGCAST wxMBSTRINGCAST
249#else
250#if defined( __WXOSX__ ) && wxMBFILES
251 #define wxFNCONV(name) wxConvFile.cWC2MB( wxConvLocal.cWX2WC(name) )
252#else
253 #define wxFNCONV(name) name
254#endif
255 #define wxFNSTRINGCAST WXSTRINGCAST
256#endif
257
258#else
259 // !wxUSE_WCHAR_T
260
261// ----------------------------------------------------------------------------
262// stand-ins in absence of wchar_t
263// ----------------------------------------------------------------------------
264
265class WXDLLIMPEXP_BASE wxMBConv
266{
267public:
268 const char* cMB2WX(const char *psz) const { return psz; }
269 const char* cWX2MB(const char *psz) const { return psz; }
270};
271
272#define wxConvFile wxConvLocal
273
274WXDLLIMPEXP_DATA_BASE(extern wxMBConv) wxConvLibc,
275 wxConvLocal,
276 wxConvISO8859_1,
277 wxConvUTF8;
278WXDLLIMPEXP_DATA_BASE(extern wxMBConv *) wxConvCurrent;
279
280#define wxFNCONV(name) name
281#define wxFNSTRINGCAST WXSTRINGCAST
282
283#endif
284 // wxUSE_WCHAR_T
285
286// ----------------------------------------------------------------------------
287// macros for the most common conversions
288// ----------------------------------------------------------------------------
289
290#if wxUSE_UNICODE
291 #define wxConvertWX2MB(s) wxConvCurrent->cWX2MB(s)
292 #define wxConvertMB2WX(s) wxConvCurrent->cMB2WX(s)
293#else // ANSI
294 // no conversions to do
295 #define wxConvertWX2MB(s) (s)
296 #define wxConvertMB2WX(s) (s)
297#endif // Unicode/ANSI
298
299#endif
300 // _WX_WXSTRCONVH__
301