]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/chartype.h
3 * Purpose: Declarations of wxChar and related types
4 * Author: Joel Farley, Ove Kåven
5 * Modified by: Vadim Zeitlin, Robert Roebling, Ron Lee
8 * Copyright: (c) 1998-2006 wxWidgets dev team
9 * Licence: wxWindows licence
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
14 #ifndef _WX_WXCHARTYPE_H_
15 #define _WX_WXCHARTYPE_H_
17 /* defs.h indirectly includes this file, so don't include it here */
18 #include "wx/platform.h"
20 /* check whether we have wchar_t and which size it is if we do */
21 #if !defined(wxUSE_WCHAR_T)
23 #if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H) || defined(__FreeBSD__) || defined(__DARWIN__)
24 #define wxUSE_WCHAR_T 1
26 #define wxUSE_WCHAR_T 0
28 #elif defined(__GNUWIN32__) && !defined(__MINGW32__)
29 #define wxUSE_WCHAR_T 0
30 #elif defined(__WATCOMC__)
31 #define wxUSE_WCHAR_T 0
32 #elif defined(__VISAGECPP__) && (__IBMCPP__ < 400)
33 #define wxUSE_WCHAR_T 0
35 /* add additional compiler checks if this fails */
36 #define wxUSE_WCHAR_T 1
38 #endif /* !defined(wxUSE_WCHAR_T) */
40 /* Unicode support requires wchar_t */
42 #error "wchar_t must be available"
46 non Unix compilers which do have wchar.h (but not tchar.h which is included
47 below and which includes wchar.h anyhow).
49 Actually MinGW has tchar.h, but it does not include wchar.h
51 #if defined(__MWERKS__) || defined(__VISAGECPP__) || defined(__MINGW32__) || defined(__WATCOMC__)
56 #if defined(__MWERKS__) && !defined(__MACH__)
63 /* the current (as of Nov 2002) version of cygwin has a bug in its */
64 /* wchar.h -- there is no extern "C" around the declarations in it */
65 /* and this results in linking errors later; also, at least on some */
66 /* Cygwin versions, wchar.h requires sys/types.h */
68 #include <sys/types.h>
76 #if defined(__CYGWIN__) && defined(__cplusplus)
78 #endif /* Cygwin and C++ */
80 #elif defined(HAVE_WCSTR_H)
81 /* old compilers have relevant declarations here */
83 #elif defined(__FreeBSD__) || defined(__DARWIN__) || defined(__EMX__)
84 /* include stdlib.h for wchar_t */
86 #endif /* HAVE_WCHAR_H */
92 /* -------------------------------------------------------------------------- */
93 /* define wxHAVE_TCHAR_SUPPORT for the compilers which support the TCHAR type */
94 /* mapped to either char or wchar_t depending on the ASCII/Unicode mode and */
95 /* have the function mapping _tfoo() -> foo() or wfoo() */
96 /* -------------------------------------------------------------------------- */
98 /* VC++ and BC++ starting with 5.2 have TCHAR support */
100 #define wxHAVE_TCHAR_SUPPORT
101 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x520)
102 #define wxHAVE_TCHAR_SUPPORT
104 #elif defined(__WATCOMC__)
105 #define wxHAVE_TCHAR_SUPPORT
106 #elif defined(__DMC__)
107 #define wxHAVE_TCHAR_SUPPORT
108 #elif defined(__MINGW32__) && wxCHECK_W32API_VERSION( 1, 0 )
109 #define wxHAVE_TCHAR_SUPPORT
113 #elif 0 && defined(__VISAGECPP__) && (__IBMCPP__ >= 400)
114 /* VZ: the old VisualAge definitions were completely wrong and had no */
115 /* chance at all to work in Unicode build anyhow so let's pretend */
116 /* that VisualAge does _not_ support TCHAR for the moment (as */
117 /* indicated by "0 &&" above) until someone really has time to delve */
118 /* into Unicode issues under OS/2 */
120 /* VisualAge 4.0+ supports TCHAR */
121 #define wxHAVE_TCHAR_SUPPORT
122 #endif /* compilers with (good) TCHAR support */
124 #ifdef wxHAVE_TCHAR_SUPPORT
125 /* get TCHAR definition if we've got it */
128 /* we surely do have wchar_t if we have TCHAR */
129 #ifndef wxUSE_WCHAR_T
130 #define wxUSE_WCHAR_T 1
131 #endif /* !defined(wxUSE_WCHAR_T) */
132 #endif /* wxHAVE_TCHAR_SUPPORT */
134 /* ------------------------------------------------------------------------- */
135 /* define wxChar type */
136 /* ------------------------------------------------------------------------- */
138 /* TODO: define wxCharInt to be equal to either int or wint_t? */
142 typedef signed char wxSChar
;
143 typedef unsigned char wxUChar
;
145 /* VZ: note that VC++ defines _T[SU]CHAR simply as wchar_t and not as */
146 /* signed/unsigned version of it which (a) makes sense to me (unlike */
147 /* char wchar_t is always unsigned) and (b) was how the previous */
148 /* definitions worked so keep it like this */
150 /* Sun's SunPro compiler supports the wchar_t type and wide character */
151 /* functions, but does not define __WCHAR_TYPE__. Define it here to */
152 /* allow unicode enabled builds. */
153 #if (defined(__SUNPRO_CC) || defined(__SUNPRO_C)) && !defined(__WCHAR_TYPE__)
154 #define __WCHAR_TYPE__ wxchar_t
157 /* GNU libc has __WCHAR_TYPE__ which requires special treatment, see */
159 #if !defined(__WCHAR_TYPE__) || \
160 (!defined(__GNUC__) || wxCHECK_GCC_VERSION(2, 96))
162 typedef wchar_t wxChar
;
163 typedef wchar_t wxSChar
;
164 typedef wchar_t wxUChar
;
165 #else /* __WCHAR_TYPE__ and gcc < 2.96 */
166 /* VS: wxWidgets used to define wxChar as __WCHAR_TYPE__ here. */
167 /* However, this doesn't work with new GCC 3.x compilers because */
168 /* wchar_t is C++'s builtin type in the new standard. OTOH, old */
169 /* compilers (GCC 2.x) won't accept new definition of */
170 /* wx{S,U}CharType, so we have to define wxChar */
171 /* conditionally depending on detected compiler & compiler */
174 /* with old definition of wxChar. */
175 #define wchar_t __WCHAR_TYPE__
176 typedef __WCHAR_TYPE__ wxChar
;
177 typedef __WCHAR_TYPE__ wxSChar
;
178 typedef __WCHAR_TYPE__ wxUChar
;
179 #endif /* __WCHAR_TYPE__ */
180 #endif /* ASCII/Unicode */
182 /* ------------------------------------------------------------------------- */
183 /* define wxStringCharType */
184 /* ------------------------------------------------------------------------- */
186 /* depending on the platform, Unicode build can either store wxStrings as
187 wchar_t* or UTF-8 encoded char*: */
189 /* FIXME-UTF8: what would be better place for this? */
190 #if defined(wxUSE_UTF8_LOCALE_ONLY) && !defined(wxUSE_UNICODE_UTF8)
191 #error "wxUSE_UTF8_LOCALE_ONLY only makes sense with wxUSE_UNICODE_UTF8"
193 #ifndef wxUSE_UTF8_LOCALE_ONLY
194 #define wxUSE_UTF8_LOCALE_ONLY 0
197 #ifndef wxUSE_UNICODE_UTF8
198 #define wxUSE_UNICODE_UTF8 0
201 #if wxUSE_UNICODE_UTF8
202 #define wxUSE_UNICODE_WCHAR 0
204 #define wxUSE_UNICODE_WCHAR 1
207 #define wxUSE_UNICODE_WCHAR 0
208 #define wxUSE_UNICODE_UTF8 0
209 #define wxUSE_UTF8_LOCALE_ONLY 0
212 /* define char type used by wxString internal representation: */
213 #if wxUSE_UNICODE_WCHAR
214 typedef wchar_t wxStringCharType
;
215 #else /* wxUSE_UNICODE_UTF8 || ANSI */
216 typedef char wxStringCharType
;
220 /* ------------------------------------------------------------------------- */
221 /* define wxT() and related macros */
222 /* ------------------------------------------------------------------------- */
224 /* BSD systems define _T() to be something different in ctype.h, override it */
225 #if defined(__FreeBSD__) || defined(__DARWIN__)
231 wxT ("wx text") macro turns a literal string constant into a wide char
232 constant. It is mostly unnecessary with wx 2.9 but defined for
240 Notice that we use an intermediate macro to allow x to be expanded
241 if it's a macro itself.
243 #ifndef wxCOMPILER_BROKEN_CONCAT_OPER
244 #define wxT(x) wxCONCAT_HELPER(L, x)
246 #define wxT(x) wxPREPEND_L(x)
248 #endif /* ASCII/Unicode */
249 #endif /* !defined(wxT) */
252 wxT_2 exists only for compatibility with wx 2.x and is the same as wxT() in
253 that version but nothing in the newer ones.
258 wxS ("wx string") macro can be used to create literals using the same
259 representation as wxString does internally, i.e. wchar_t in Unicode build
260 under Windows or char in UTF-8-based Unicode builds and (deprecated) ANSI
261 builds everywhere (see wxStringCharType definition above).
263 #if wxUSE_UNICODE_WCHAR
265 As above with wxT(), wxS() argument is expanded if it's a macro.
267 #ifndef wxCOMPILER_BROKEN_CONCAT_OPER
268 #define wxS(x) wxCONCAT_HELPER(L, x)
270 #define wxS(x) wxPREPEND_L(x)
272 #else /* wxUSE_UNICODE_UTF8 || ANSI */
277 _T() is a synonym for wxT() familiar to Windows programmers. As this macro
278 has even higher risk of conflicting with system headers, its use is
279 discouraged and you may predefine wxNO__T to disable it. Additionally, we
280 do it ourselves for Sun CC which is known to use it in its standard headers
283 #if defined(__SUNPRO_C) || defined(__SUNPRO_CC)
289 #if !defined(_T) && !defined(wxNO__T)
293 /* a helper macro allowing to make another macro Unicode-friendly, see below */
294 #define wxAPPLY_T(x) wxT(x)
296 /* Unicode-friendly __FILE__, __DATE__ and __TIME__ analogs */
298 #define __TFILE__ wxAPPLY_T(__FILE__)
302 #define __TDATE__ wxAPPLY_T(__DATE__)
306 #define __TTIME__ wxAPPLY_T(__TIME__)
309 #endif /* _WX_WXCHARTYPE_H_ */