]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/wxchar.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Declarations common to wx char/wchar_t usage (wide chars)
8 // Copyright: (c) wxWindows copyright
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "wxchar.h"
19 // only do SBCS or _UNICODE
21 #error "MBCS is not supported by wxChar"
24 // set wxUSE_UNICODE to 1 if UNICODE or _UNICODE is defined
25 #if defined(_UNICODE) || defined(UNICODE)
27 #define wxUSE_UNICODE 1
30 #define wxUSE_UNICODE 0
34 // and vice versa: define UNICODE and _UNICODE if wxUSE_UNICODE is 1...
44 // Windows (VC++) has broad TCHAR support
45 #if defined(__VISUALC__) && defined(__WIN32__)
48 #if wxUSE_UNICODE // temporary - preserve binary compatibility
49 typedef _TCHAR wxChar
;
50 typedef _TSCHAR wxSChar
;
51 typedef _TUCHAR wxUChar
;
54 #define wxSChar signed char
55 #define wxUChar unsigned char
57 // wchar_t is available
59 #define wxUSE_WCHAR_T 1
62 #define wxIsalnum _istalnum
63 #define wxIsalpha _istalpha
64 #define wxIsctrl _istctrl
65 #define wxIsdigit _istdigit
66 #define wxIsgraph _istgraph
67 #define wxIslower _istlower
68 #define wxIsprint _istprint
69 #define wxIspunct _istpunct
70 #define wxIsspace _istspace
71 #define wxIsupper _istupper
72 #define wxIsxdigit _istxdigit
73 #define wxTolower _totlower
74 #define wxToupper _totupper
77 #define wxSetlocale _tsetlocale
80 #define wxStrcat _tcscat
81 #define wxStrchr _tcschr
82 #define wxStrcmp _tcscmp
83 #define wxStrcoll _tcscoll
84 #define wxStrcpy _tcscpy
85 #define wxStrcspn _tcscspn
86 #define wxStrftime _tcsftime
87 #define wxStricmp _tcsicmp
88 #define wxStrlen_ _tcslen // used in wxStrlen inline function
89 #define wxStrncat _tcsncat
90 #define wxStrncmp _tcsncmp
91 #define wxStrncpy _tcsncpy
92 #define wxStrpbrk _tcspbrk
93 #define wxStrrchr _tcsrchr
94 #define wxStrspn _tcsspn
95 #define wxStrstr _tcsstr
96 #define wxStrtod _tcstod
97 // is there a _tcstok[_r] ?
98 #define wxStrtol _tcstol
99 #define wxStrtoul _tcstoul
100 #define wxStrxfrm _tcsxfrm
103 #define wxFgetc _fgettc
104 #define wxFgetchar _fgettchar
105 #define wxFgets _fgetts
106 #define wxFopen _tfopen
107 #define wxFputc _fputtc
108 #define wxFputchar _fputtchar
109 #define wxFprintf _ftprintf
110 #define wxFreopen _tfreopen
111 #define wxFscanf _ftscanf
112 #define wxGetc _gettc
113 #define wxGetchar _gettchar
114 #define wxGets _getts
115 #define wxPerror _tperror
116 #define wxPrintf _tprintf
117 #define wxPutc _puttc
118 #define wxPutchar _puttchar
119 #define wxPuts _putts
120 #define wxRemove _tremove
121 #define wxRename _trename
122 #define wxScanf _tscanf
123 #define wxSprintf _stprintf
124 #define wxSscanf _stscanf
125 #define wxTmpnam _ttmpnam
126 #define wxUngetc _tungetc
127 #define wxVfprint _vftprintf
128 #define wxVprintf _vtprintf
129 #define wxVsscanf _vstscanf
130 #define wxVsprintf _vstprintf
132 // stdlib.h functions
138 #define wxGetenv _tgetenv
139 #define wxSystem _tsystem
142 #define wxAsctime _tasctime
143 #define wxCtime _tctime
145 // #elif defined(XXX)
146 // #include XXX-specific files here
147 // typeddef YYY wxChar;
149 // translate wxZZZ names
151 #elif defined(__BORLANDC__) && defined(__WIN32__)
153 // Borland C++ 4.52 doesn't have much tchar support
154 // maybe Borland C++ 5.02 has, can't check right now
155 // but I'll use the Win32 API instead here
158 #if wxUSE_UNICODE // temporary - preserve binary compatibility
159 typedef _TCHAR wxChar
;
160 typedef _TSCHAR wxSChar
;
161 typedef _TUCHAR wxUChar
;
164 #define wxSChar signed char
165 #define wxUChar unsigned char
167 // wchar_t is available
169 #define wxUSE_WCHAR_T 1
177 inline WORD
__wxMSW_ctype(wxChar ch
)
180 GetStringTypeEx(LOCALE_USER_DEFAULT
, CT_CTYPE1
, &ch
, 1, &ret
);
183 #define wxIsalnum(x) IsCharAlphaNumeric
184 #define wxIsalpha IsCharAlpha
185 #define wxIsctrl(x) (__wxMSW_ctype(x) & C1_CNTRL)
186 #define wxIsdigit(x) (__wxMSW_ctype(x) & C1_DIGIT)
187 #define wxIsgraph(x) (__wxMSW_ctype(x) & (C1_DIGIT|C1_PUNCT|C1_ALPHA))
188 #define wxIslower(x) IsCharLower
189 #define wxIsprint(x) (__wxMSW_ctype(x) & (C1_DIGIT|C1_SPACE|C1_PUNCT|C1_ALPHA))
190 #define wxIspunct(x) (__wxMSW_ctype(x) & C1_PUNCT)
191 #define wxIsspace(x) (__wxMSW_ctype(x) & C1_SPACE)
192 #define wxIsupper(x) IsCharUpper
193 #define wxIsxdigit(x) (__wxMSW_ctype(x) & C1_XDIGIT)
194 #define wxTolower(x) (wxChar)CharLower((LPTSTR)(x))
195 #define wxToupper(x) (wxChar)CharUpper((LPTSTR)(x))
197 // #define wxStrtok strtok_r // Borland C++ 4.52 doesn't have strtok_r
198 #define wxNEED_WX_STRING_H
199 #define wxNEED_WX_STDIO_H
200 #define wxNEED_WX_STDLIB_H
201 #define wxNEED_WX_TIME_H
202 #define wxNEED_WCSLEN
204 #else//!TCHAR-aware compilers
206 // check whether we should include wchar.h or equivalent
209 #define wxUSE_WCHAR_T 1 // wchar_t *must* be available in Unicode mode
210 #elif !defined(wxUSE_WCHAR_T)
211 #if defined(__VISUALC__) && (__VISUALC__ < 900)
212 #define wxUSE_WCHAR_T 0 // wchar_t is not available for MSVC++ 1.5
213 #elif defined(__UNIX__)
214 #if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H)
215 #define wxUSE_WCHAR_T 1
217 #define wxUSE_WCHAR_T 0
220 // add additional compiler checks if this fails
221 #define wxUSE_WCHAR_T 1
223 #endif//wxUSE_UNICODE
233 // check whether we are doing Unicode
238 // this is probably glibc-specific
239 #if defined(__WCHAR_TYPE__)
241 typedef __WCHAR_TYPE__ wxChar
;
242 typedef signed __WCHAR_TYPE__ wxSChar
;
243 typedef unsigned __WCHAR_TYPE__ wxUChar
;
247 // ctype.h functions (wctype.h)
248 #define wxIsalnum iswalnum
249 #define wxIsalpha iswalpha
250 #define wxIsctrl iswcntrl
251 #define wxIsdigit iswdigit
252 #define wxIsgraph iswgraph
253 #define wxIslower iswlower
254 #define wxIsprint iswprint
255 #define wxIspunct iswpunct
256 #define wxIsspace iswspace
257 #define wxIsupper iswupper
258 #define wxIsxdigit iswxdigit
260 #if defined(__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0)
261 // /usr/include/wctype.h incorrectly declares translations tables which
262 // provokes tons of compile-time warnings - try to correct this
263 #define wxTolower(wc) towctrans((wc), (wctrans_t)__ctype_tolower)
264 #define wxToupper(wc) towctrans((wc), (wctrans_t)__ctype_toupper)
266 #define wxTolower towlower
267 #define wxToupper towupper
270 // string.h functions (wchar.h)
271 #define wxStrcat wcscat
272 #define wxStrchr wcschr
273 #define wxStrcmp wcscmp
274 #define wxStrcoll wcscoll
275 #define wxStrcpy wcscpy
276 #define wxStrcspn wcscspn
277 #define wxStrlen_ wcslen // used in wxStrlen inline function
278 #define wxStrncat wcsncat
279 #define wxStrncmp wcsncmp
280 #define wxStrncpy wcsncpy
281 #define wxStrpbrk wcspbrk
282 #define wxStrrchr wcsrchr
283 #define wxStrspn wcsspn
284 #define wxStrstr wcsstr
285 #define wxStrtod wcstod
286 #define wxStrtok wcstok
287 #define wxStrtol wcstol
288 #define wxStrtoul wcstoul
289 #define wxStrxfrm wcsxfrm
291 // glibc doesn't have wc equivalents of the other stuff
292 #define wxNEED_WX_STDIO_H
293 #define wxNEED_WX_STDLIB_H
294 #define wxNEED_WX_TIME_H
297 #error "Please define your compiler's Unicode conventions in wxChar.h"
304 #if 0 // temporary - preserve binary compatibilty
306 typedef signed char wxSChar
;
307 typedef unsigned char wxUChar
;
310 #define wxSChar signed char
311 #define wxUChar unsigned char
317 #define wxIsalnum isalnum
318 #define wxIsalpha isalpha
319 #define wxIsctrl isctrl
320 #define wxIsdigit isdigit
321 #define wxIsgraph isgraph
322 #define wxIslower islower
323 #define wxIsprint isprint
324 #define wxIspunct ispunct
325 #define wxIsspace isspace
326 #define wxIsupper isupper
327 #define wxIsxdigit isxdigit
328 #define wxTolower tolower
329 #define wxToupper toupper
332 #define wxSetlocale setlocale
334 // string.h functions
335 #define wxStricmp strcasecmp
336 // #define wxStrtok strtok_r // this needs a configure check
338 // leave the rest to defaults below
339 #define wxNEED_WX_STRING_H
340 #define wxNEED_WX_STDIO_H
341 #define wxNEED_WX_STDLIB_H
342 #define wxNEED_WX_TIME_H
345 #endif//TCHAR-aware compilers
347 // define wxStricmp for various compilers without Unicode possibilities
348 #if !defined(wxStricmp) && !wxUSE_UNICODE
349 #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__SALFORDC__)
350 #define wxStricmp stricmp
351 #elif defined(__SC__) || defined(__VISUALC__) || (defined(__MWERKS) && defined(__INTEL__))
352 #define wxStricmp _stricmp
353 #elif defined(__UNIX__) || defined(__GNUWIN32__)
354 #define wxStricmp strcasecmp
355 #elif defined(__MWERKS__) && !defined(__INTEL__)
356 // use wxWindows' implementation
358 // if you leave wxStricmp undefined, wxWindows' implementation will be used
359 #error "Please define string case-insensitive compare for your OS/compiler"
363 // if we need to define for standard headers, and we're not using Unicode,
364 // just define to standard C library routines
366 #ifdef wxNEED_WX_STRING_H
367 #define wxStrcat strcat
368 #define wxStrchr strchr
369 #define wxStrcmp strcmp
370 #define wxStrcoll strcoll
371 #define wxStrcpy strcpy
372 #define wxStrcspn strcspn
373 #define wxStrdup strdup
374 #define wxStrlen_ strlen // used in wxStrlen inline function
375 #define wxStrncat strncat
376 #define wxStrncmp strncmp
377 #define wxStrncpy strncpy
378 #define wxStrpbrk strpbrk
379 #define wxStrrchr strrchr
380 #define wxStrspn strspn
381 #define wxStrstr strstr
382 #define wxStrtod strtod
383 #define wxStrtol strtol
384 #define wxStrtoul strtoul
385 #define wxStrxfrm strxfrm
386 #undef wxNEED_WX_STRING_H
389 #ifdef wxNEED_WX_STDIO_H
390 #define wxFgetc fgetc
391 #define wxFgetchar fgetchar
392 #define wxFgets fgets
393 #define wxFopen fopen
394 #define wxFputc fputc
395 #define wxFputchar fputchar
396 #define wxFprintf fprintf
397 #define wxFreopen freopen
398 #define wxFscanf fscanf
400 #define wxGetchar getchar
402 #define wxPerror perror
403 #define wxPrintf printf
405 #define wxPutchar putchar
407 #define wxRemove remove
408 #define wxRename rename
409 #define wxScanf scanf
410 #define wxSprintf sprintf
411 #define wxSscanf sscanf
412 #define wxTmpnam tmpnam
413 #define wxUngetc ungetc
414 #define wxVfprint vfprintf
415 #define wxVprintf vprintf
416 #define wxVsscanf vsscanf
417 #define wxVsprintf vsprintf
418 #undef wxNEED_WX_STDIO_H
421 #ifdef wxNEED_WX_STDLIB_H
425 #define wxGetenv getenv
426 #define wxSystem system
427 #undef wxNEED_WX_STDLIB_H
430 #ifdef wxNEED_WX_TIME_H
431 #define wxAsctime asctime
432 #define wxCtime ctime
433 #define wxStrftime strftime
434 #undef wxNEED_WX_TIME_H
438 #if defined(wxNEED_WCSLEN) && wxUSE_UNICODE
439 #define wcslen wxStrlen
443 /// checks whether the passed in pointer is NULL and if the string is empty
444 inline bool WXDLLEXPORT
wxIsEmpty(const wxChar
*p
) { return !p
|| !*p
; }
446 #ifndef wxNEED_WX_STRING_H
447 /// safe version of strlen() (returns 0 if passed NULL pointer)
448 inline size_t WXDLLEXPORT
wxStrlen(const wxChar
*psz
)
449 { return psz
? wxStrlen_(psz
) : 0; }
453 // multibyte<->widechar conversion
454 size_t WXDLLEXPORT
wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
);
455 size_t WXDLLEXPORT
wxWC2MB(char *buf
, const wchar_t *psz
, size_t n
);
457 #define wxMB2WX wxMB2WC
458 #define wxWX2MB wxWC2MB
459 #define wxWC2WX wxStrncpy
460 #define wxWX2WC wxStrncpy
462 #define wxMB2WX wxStrncpy
463 #define wxWX2MB wxStrncpy
464 #define wxWC2WX wxWC2MB
465 #define wxWX2WC wxMB2WC
468 bool WXDLLEXPORT
wxOKlibc(); // for internal use
470 // if libc versions are not available, use replacements defined in wxchar.cpp
472 wxChar
* WXDLLEXPORT
wxStrdup(const wxChar
*psz
);
476 int WXDLLEXPORT
wxStricmp(const wxChar
*psz1
, const wxChar
*psz2
);
480 wxChar
* WXDLLEXPORT
wxStrtok(wxChar
*psz
, const wxChar
*delim
, wxChar
**save_ptr
);
484 wxChar
* WXDLLEXPORT
wxSetlocale(int category
, const wxChar
*locale
);
487 #ifdef wxNEED_WCSLEN // for use in buffer.h
488 size_t WXDLLEXPORT
wcslen(const wchar_t *s
);
491 #ifdef wxNEED_WX_STRING_H
492 wxChar
* WXDLLEXPORT
wxStrcat(wxChar
*dest
, const wxChar
*src
);
493 wxChar
* WXDLLEXPORT
wxStrchr(const wxChar
*s
, wxChar c
);
494 int WXDLLEXPORT
wxStrcmp(const wxChar
*s1
, const wxChar
*s2
);
495 int WXDLLEXPORT
wxStrcoll(const wxChar
*s1
, const wxChar
*s2
);
496 wxChar
* WXDLLEXPORT
wxStrcpy(wxChar
*dest
, const wxChar
*src
);
497 size_t WXDLLEXPORT
wxStrcspn(const wxChar
*s
, const wxChar
*reject
);
498 size_t WXDLLEXPORT
wxStrlen(const wxChar
*s
);
499 wxChar
* WXDLLEXPORT
wxStrncat(wxChar
*dest
, const wxChar
*src
, size_t n
);
500 int WXDLLEXPORT
wxStrncmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
);
501 wxChar
* WXDLLEXPORT
wxStrncpy(wxChar
*dest
, const wxChar
*src
, size_t n
);
502 wxChar
* WXDLLEXPORT
wxStrpbrk(const wxChar
*s
, const wxChar
*accept
);
503 wxChar
* WXDLLEXPORT
wxStrrchr(const wxChar
*s
, wxChar c
);
504 size_t WXDLLEXPORT
wxStrspn(const wxChar
*s
, const wxChar
*accept
);
505 wxChar
* WXDLLEXPORT
wxStrstr(const wxChar
*haystack
, const wxChar
*needle
);
506 double WXDLLEXPORT
wxStrtod(const wxChar
*nptr
, wxChar
**endptr
);
507 long int WXDLLEXPORT
wxStrtol(const wxChar
*nptr
, wxChar
**endptr
, int base
);
508 unsigned long int WXDLLEXPORT
wxStrtoul(const wxChar
*nptr
, wxChar
**endptr
, int base
);
509 size_t WXDLLEXPORT
wxStrxfrm(wxChar
*dest
, const wxChar
*src
, size_t n
);
512 #ifdef wxNEED_WX_STDIO_H
515 int WXDLLEXPORT
wxPrintf(const wxChar
*fmt
, ...);
516 int WXDLLEXPORT
wxVprintf(const wxChar
*fmt
, va_list argptr
);
517 int WXDLLEXPORT
wxFprintf(FILE *stream
, const wxChar
*fmt
, ...);
518 int WXDLLEXPORT
wxVfprintf(FILE *stream
, const wxChar
*fmt
, va_list argptr
);
519 int WXDLLEXPORT
wxSprintf(wxChar
*buf
, const wxChar
*fmt
, ...);
520 int WXDLLEXPORT
wxVsprintf(wxChar
*buf
, const wxChar
*fmt
, va_list argptr
);
521 int WXDLLEXPORT
wxSscanf(const wxChar
*buf
, const wxChar
*fmt
, ...);
522 int WXDLLEXPORT
wxVsscanf(const wxChar
*buf
, const wxChar
*fmt
, va_list argptr
);
526 double WXDLLEXPORT
wxAtof(const wxChar
*psz
);
529 #ifdef wxNEED_WX_STDLIB_H
530 int WXDLLEXPORT
wxAtoi(const wxChar
*psz
);
531 long WXDLLEXPORT
wxAtol(const wxChar
*psz
);
532 wxChar
* WXDLLEXPORT
wxGetenv(const wxChar
*name
);
533 int WXDLLEXPORT
wxSystem(const wxChar
*psz
);