]> git.saurik.com Git - wxWidgets.git/blob - include/wx/wxchar.h
fix for non-unicode DMC builds
[wxWidgets.git] / include / wx / wxchar.h
1 /*
2 * Name: wx/wxchar.h
3 * Purpose: Declarations common to wx char/wchar_t usage (wide chars)
4 * Author: Joel Farley, Ove Kåven
5 * Modified by: Vadim Zeitlin, Robert Roebling
6 * Created: 1998/06/12
7 * RCS-ID: $Id$
8 * Copyright: (c) 1998-2002 wxWindows dev team
9 * Licence: wxWindows licence
10 */
11
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
13
14 #ifndef _WX_WXCHAR_H_
15 #define _WX_WXCHAR_H_
16
17 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18 #pragma interface "wxchar.h"
19 #endif
20
21 #include "wx/defs.h" /* for wxUSE_UNICODE */
22
23 /* check whether we have wchar_t and which size it is if we do */
24 #if !defined(wxUSE_WCHAR_T)
25 #if defined(__WIN16__)
26 /* no wchar_t under Win16 regadrless of compiler used */
27 #define wxUSE_WCHAR_T 0
28 #elif defined(__UNIX__)
29 #if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H) || defined(__FreeBSD__) || defined(__DARWIN__)
30 #define wxUSE_WCHAR_T 1
31 #else
32 #define wxUSE_WCHAR_T 0
33 #endif
34 #elif defined(__GNUWIN32__) && !defined(__MINGW32__)
35 #define wxUSE_WCHAR_T 0
36 #elif defined(__WATCOMC__)
37 #define wxUSE_WCHAR_T 0
38 #elif defined(__VISAGECPP__) && (__IBMCPP__ < 400)
39 #define wxUSE_WCHAR_T 0
40 #else
41 /* add additional compiler checks if this fails */
42 #define wxUSE_WCHAR_T 1
43 #endif
44 #endif /* !defined(wxUSE_WCHAR_T) */
45
46 /* Unicode support requires wchar_t */
47 #if wxUSE_UNICODE && !wxUSE_WCHAR_T
48 #error "wchar_t must be available in Unicode build"
49 #endif /* Unicode */
50
51 /*
52 Standard headers we need here.
53
54 NB: don't include any wxWindows headers here because almost of them include
55 this one!
56 */
57
58 /* Required for wxPrintf() etc */
59 #include <stdarg.h>
60
61 /* Almost all compiler have strdup(), but not quite all: CodeWarrior under Mac */
62 /* and VC++ for Windows CE don't provide it */
63 #if !(defined(__MWERKS__) && defined(__WXMAC__)) && !defined(__WXWINCE__)
64 /* use #define, not inline wrapper, as it is tested with #ifndef below */
65 #define wxStrdupA strdup
66 #endif
67
68 /*
69 non Unix compilers which do have wchar.h (but not tchar.h which is included
70 below and which includes wchar.h anyhow).
71
72 Actually MinGW has tchar.h, but it does not include wchar.h
73 */
74 #if defined(__MWERKS__) || defined(__VISAGECPP__) || defined(__MINGW32__) || defined(__WATCOMC__)
75 #ifndef HAVE_WCHAR_H
76 #define HAVE_WCHAR_H
77 #endif
78 #endif
79
80 #if wxUSE_WCHAR_T
81 #ifdef HAVE_WCHAR_H
82 /* the current (as of Nov 2002) version of cygwin has a bug in its */
83 /* wchar.h -- there is no extern "C" around the declarations in it and */
84 /* this results in linking errors later; also, at least on some */
85 /* Cygwin versions, wchar.h requires sys/types.h */
86 #ifdef __CYGWIN__
87 #include <sys/types.h>
88 extern "C" {
89 #endif /* Cygwin */
90 #include <wchar.h>
91 #ifdef __CYGWIN__
92 }
93 #endif /* Cygwin */
94 #elif defined(HAVE_WCSTR_H)
95 /* old compilers have relevant declarations here */
96 #include <wcstr.h>
97 #elif defined(__FreeBSD__) || defined(__DARWIN__) || defined(__EMX__)
98 /* include stdlib.h for wchar_t */
99 #include <stdlib.h>
100 #endif /* HAVE_WCHAR_H */
101 #endif /* wxUSE_WCHAR_T */
102
103 /* ---------------------------------------------------------------------------- */
104 /* define wxHAVE_TCHAR_SUPPORT for the compilers which support the TCHAR type */
105 /* mapped to either char or wchar_t depending on the ASCII/Unicode mode and have */
106 /* the function mapping _tfoo() -> foo() or wfoo() */
107 /* ---------------------------------------------------------------------------- */
108
109 /* VC++ and BC++ starting with 5.2 have TCHAR support */
110 #ifdef __VISUALC__
111 #define wxHAVE_TCHAR_SUPPORT
112 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x520)
113 #define wxHAVE_TCHAR_SUPPORT
114 #include <ctype.h>
115 #elif defined(__WATCOMC__)
116 #define wxHAVE_TCHAR_SUPPORT
117 #elif defined(__DMC__)
118 #define wxHAVE_TCHAR_SUPPORT
119 #elif defined(__MINGW32__) && wxCHECK_W32API_VERSION( 1, 0 )
120 #define wxHAVE_TCHAR_SUPPORT
121 #include <stddef.h>
122 #include <string.h>
123 #include <ctype.h>
124 #elif 0 && defined(__VISAGECPP__) && (__IBMCPP__ >= 400)
125 /* VZ: the old VisualAge definitions were completely wrong and had no */
126 /* chance at all to work in Unicode build anyhow so let's pretend that */
127 /* VisualAge does _not_ support TCHAR for the moment (as indicated by */
128 /* "0 &&" above) until someone really has time to delve into Unicode */
129 /* issues under OS/2 */
130
131 /* VisualAge 4.0+ supports TCHAR */
132 #define wxHAVE_TCHAR_SUPPORT
133 #endif /* compilers with (good) TCHAR support */
134
135 #ifdef __MWERKS__
136 #define HAVE_WPRINTF
137 #endif
138
139 #ifdef wxHAVE_TCHAR_SUPPORT
140 /* get TCHAR definition if we've got it */
141 #include <tchar.h>
142
143 /* we surely do have wchar_t if we have TCHAR */
144 #ifndef wxUSE_WCHAR_T
145 #define wxUSE_WCHAR_T 1
146 #endif /* !defined(wxUSE_WCHAR_T) */
147
148 /* and we also do have wcslen() */
149 #ifndef HAVE_WCSLEN
150 #define HAVE_WCSLEN
151 #endif
152 #endif /* wxHAVE_TCHAR_SUPPORT */
153
154 /* ---------------------------------------------------------------------------- */
155 /* define wxChar type */
156 /* ---------------------------------------------------------------------------- */
157
158 /* TODO: define wxCharInt to be equal to either int or wint_t? */
159
160 #if !wxUSE_UNICODE
161 typedef char wxChar;
162 typedef signed char wxSChar;
163 typedef unsigned char wxUChar;
164 #else /* Unicode */
165 /* VZ: note that VC++ defines _T[SU]CHAR simply as wchar_t and not as */
166 /* signed/unsigned version of it which (a) makes sense to me (unlike */
167 /* char wchar_t is always unsigned) and (b) was how the previous */
168 /* definitions worked so keep it like this */
169
170 /* GNU libc has __WCHAR_TYPE__ which requires special treatment, see */
171 /* comment below */
172 #if !defined(__WCHAR_TYPE__) || \
173 (!defined(__GNUC__) || wxCHECK_GCC_VERSION(2, 96))
174 /* standard case */
175 typedef wchar_t wxChar;
176 typedef wchar_t wxSChar;
177 typedef wchar_t wxUChar;
178 #else /* __WCHAR_TYPE__ and gcc < 2.96 */
179 /* VS: wxWindows used to define wxChar as __WCHAR_TYPE__ here. However, */
180 /* this doesn't work with new GCC 3.x compilers because wchar_t is */
181 /* C++'s builtin type in the new standard. OTOH, old compilers (GCC */
182 /* 2.x) won't accept new definition of wx{S,U}Char, therefore we */
183 /* have to define wxChar conditionally depending on detected */
184 /* compiler & compiler version. */
185 /* with old definition of wxChar. */
186 typedef __WCHAR_TYPE__ wxChar;
187 typedef __WCHAR_TYPE__ wxSChar;
188 typedef __WCHAR_TYPE__ wxUChar;
189 #endif /* __WCHAR_TYPE__ */
190 #endif /* ASCII/Unicode */
191
192 /* ---------------------------------------------------------------------------- */
193 /* define _T() and related macros */
194 /* ---------------------------------------------------------------------------- */
195
196 /* BSD systems define _T() to be something different in ctype.h, override it */
197 #if defined(__FreeBSD__) || defined(__DARWIN__)
198 #include <ctype.h>
199 #undef _T
200 #endif
201
202 /* could already be defined by tchar.h (it's quasi standard) */
203 #ifndef _T
204 #if !wxUSE_UNICODE
205 #define _T(x) x
206 #else /* Unicode */
207 #define _T(x) L ## x
208 #endif /* ASCII/Unicode */
209 #endif /* !defined(_T) */
210
211 /* although global macros with such names are normally bad, we want to have */
212 /* another name for _T() which should be used to avoid confusion between _T() */
213 /* and _() in wxWindows sources */
214 #define wxT(x) _T(x)
215
216 /* Unicode-friendly __FILE__, __DATE__ and __TIME__ analogs */
217 #ifndef __TFILE__
218 #define __XFILE__(x) wxT(x)
219 #define __TFILE__ __XFILE__(__FILE__)
220 #endif
221
222 #ifndef __TDATE__
223 #define __XDATE__(x) wxT(x)
224 #define __TDATE__ __XDATE__(__DATE__)
225 #endif
226
227 #ifndef __TTIME__
228 #define __XTIME__(x) wxT(x)
229 #define __TTIME__ __XTIME__(__TIME__)
230 #endif
231
232 /*
233 define wxFoo() function for each standard foo() function whose signature
234 (exceptionally including the return type) includes any mention of char:
235 wxFoo() is going to be a Unicode-friendly version of foo(), i.e. will have
236 the same signature but with char replaced by wxChar which allows us to use
237 it in Unicode build as well
238 */
239
240 #ifdef wxHAVE_TCHAR_SUPPORT
241 #include <ctype.h>
242
243 /* ctype.h functions */
244 #define wxIsalnum _istalnum
245 #define wxIsalpha _istalpha
246 #define wxIscntrl _istcntrl
247 #define wxIsdigit _istdigit
248 #define wxIsgraph _istgraph
249 #define wxIslower _istlower
250 #define wxIsprint _istprint
251 #define wxIspunct _istpunct
252 #define wxIsspace _istspace
253 #define wxIsupper _istupper
254 #define wxIsxdigit _istxdigit
255 #define wxTolower _totlower
256 #define wxToupper _totupper
257
258 /* locale.h functons */
259 #define wxSetlocale _tsetlocale
260
261 /* string.h functions */
262 #define wxStrcat _tcscat
263 #define wxStrchr _tcschr
264 #define wxStrcmp _tcscmp
265 #define wxStrcoll _tcscoll
266 #define wxStrcpy _tcscpy
267 #define wxStrcspn _tcscspn
268 #define wxStrdupW _wcsdup /* notice the 'W'! */
269 #define wxStrftime _tcsftime
270 #define wxStricmp _tcsicmp
271 #define wxStrnicmp _tcsnicmp
272 #define wxStrlen_ _tcslen /* used in wxStrlen inline function */
273 #define wxStrncat _tcsncat
274 #define wxStrncmp _tcsncmp
275 #define wxStrncpy _tcsncpy
276 #define wxStrpbrk _tcspbrk
277 #define wxStrrchr _tcsrchr
278 #define wxStrspn _tcsspn
279 #define wxStrstr _tcsstr
280 #define wxStrtod _tcstod
281 #define wxStrtol _tcstol
282 #define wxStrtoul _tcstoul
283 #define wxStrxfrm _tcsxfrm
284
285 /* stdio.h functions */
286 #define wxFgetc _fgettc
287 #define wxFgetchar _fgettchar
288 #define wxFgets _fgetts
289 #define wxFopen _tfopen
290 #define wxFputc _fputtc
291 #define wxFputchar _fputtchar
292 #define wxFprintf _ftprintf
293 #define wxFputs _fputts
294 #define wxFreopen _tfreopen
295 #define wxFscanf _ftscanf
296 #define wxGetc _gettc
297 #define wxGetchar _gettchar
298 #define wxGets _getts
299 #define wxPerror _tperror
300 #define wxPrintf _tprintf
301 #define wxPutc _puttc
302 #define wxPutchar _puttchar
303 #define wxPuts _putts
304 #define wxScanf _tscanf
305 #if defined(__DMC__)
306 /* Digital Mars adds count to _stprintf (C99) so it does not fit wxWindows needs */
307 /* and there is a bug in D Mars tchar.h prior to 8.39.4n, so define as sprintf */
308 /* for non-unicode builds CE */
309 /* Unicode broken 10 Feb 04 Fixme */
310 #if wxUSE_UNICODE
311 #define wxSprintf swprintf
312 #else
313 #define wxSprintf sprintf
314 #endif
315 #else
316 #define wxSprintf _stprintf
317 #endif
318
319 #define wxSscanf _stscanf
320 #define wxTmpnam _ttmpnam
321 #define wxUngetc _tungetc
322 #define wxVfprintf _vftprintf
323 #define wxVprintf _vtprintf
324 #define wxVsscanf _vstscanf
325 #define wxVsprintf _vstprintf
326
327 /* special case: not all TCHAR-aware compilers have those */
328 #if defined(__VISUALC__) || \
329 (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
330 #define wxVsnprintf_ _vsntprintf
331 #define wxSnprintf_ _sntprintf
332 #endif
333
334 /* special case: these functions are missing under Win9x with Unicows so we */
335 /* have to implement them ourselves */
336 #if wxUSE_UNICODE_MSLU
337 #define wxRemove wxMSLU__tremove
338 #define wxRename wxMSLU__trename
339 #else
340 #ifdef __WXWINCE__
341 #define wxRemove DeleteFile
342 #else
343 #define wxRemove _tremove
344 #define wxRename _trename
345 #endif
346 #endif
347
348 /* stdlib.h functions */
349 #define wxAtoi _ttoi
350 #define wxAtol _ttol
351 /* #define wxAtof _tttof -- notice that there is no such thing (why?) */
352 #define wxGetenv _tgetenv
353 #define wxSystem _tsystem
354
355 /* time.h functions */
356 #define wxAsctime _tasctime
357 #define wxCtime _tctime
358 #else /* !TCHAR-aware compilers */
359 #if wxUSE_UNICODE
360 #include <wctype.h>
361
362 /* this is probably glibc-specific */
363 #if defined(__WCHAR_TYPE__) && !defined(__MWERKS__)
364 /* ctype.h functions (wctype.h) */
365 #define wxIsalnum iswalnum
366 #define wxIsalpha iswalpha
367 #define wxIscntrl iswcntrl
368 #define wxIsdigit iswdigit
369 #define wxIsgraph iswgraph
370 #define wxIslower iswlower
371 #define wxIsprint iswprint
372 #define wxIspunct iswpunct
373 #define wxIsspace iswspace
374 #define wxIsupper iswupper
375 #define wxIsxdigit iswxdigit
376
377 #if defined(__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0)
378 /* /usr/include/wctype.h incorrectly declares translations */
379 /* tables which provokes tons of compile-time warnings -- try */
380 /* to correct this */
381 #define wxTolower(wc) towctrans((wc), (wctrans_t)__ctype_tolower)
382 #define wxToupper(wc) towctrans((wc), (wctrans_t)__ctype_toupper)
383 #else /* !glibc 2.0 */
384 #define wxTolower towlower
385 #define wxToupper towupper
386 #endif /* gcc/!gcc */
387
388 /* string.h functions (wchar.h) */
389 #define wxStrcat wcscat
390 #define wxStrchr wcschr
391 #define wxStrcmp wcscmp
392 #define wxStrcoll wcscoll
393 #define wxStrcpy wcscpy
394 #define wxStrcspn wcscspn
395 #define wxStrlen_ wxWcslen /* wxStrlen_() is used in wxStrlen() */
396 #define wxStrncat wcsncat
397 #define wxStrncmp wcsncmp
398 #define wxStrncpy wcsncpy
399 #define wxStrpbrk wcspbrk
400 #define wxStrrchr wcsrchr
401 #define wxStrspn wcsspn
402 #define wxStrstr wcsstr
403 #define wxStrtod wcstod
404 #define wxStrtol wcstol
405 #define wxStrtoul wcstoul
406 #define wxStrxfrm wcsxfrm
407
408 #define wxFgetc fgetwc
409 #define wxFgetchar fgetwchar
410 #define wxFgets fgetws
411 #define wxFputc fputwc
412 #define wxFputchar fputwchar
413 #define wxGetc getwc
414 #define wxGetchar getwchar
415 #define wxGets getws
416 #define wxUngetc ungetwc
417
418 #ifdef HAVE_FPUTWC
419 #define wxPutc wputc
420 #define wxPutchar wputchar
421 #define wxPuts putws
422 #define wxFputs fputws
423 #else
424 #define wxNEED_FPUTWC
425
426 #include <stdio.h>
427
428 int wxFputs(const wxChar *ch, FILE *stream);
429 int wxPutc(wxChar ch, FILE *stream);
430
431 #define wxPuts(ws) wxFputs(ws, stdout)
432 #define wxPutchar(wch) wxPutc(wch, stdout)
433 #endif
434
435 /* we need %s to %ls conversion for printf and scanf etc */
436 #define wxNEED_PRINTF_CONVERSION
437
438 /* glibc doesn't have wide char equivalents of the other stuff so */
439 /* use our own versions */
440 #define wxNEED_WX_STDIO_H
441 #define wxNEED_WX_STDLIB_H
442 #define wxNEED_WX_TIME_H
443 #elif defined(__MWERKS__) && ( defined(macintosh) || defined(__MACH__) )
444 /* ctype.h functions (wctype.h) */
445 #define wxIsalnum iswalnum
446 #define wxIsalpha iswalpha
447 #define wxIscntrl iswcntrl
448 #define wxIsdigit iswdigit
449 #define wxIsgraph iswgraph
450 #define wxIslower iswlower
451 #define wxIsprint iswprint
452 #define wxIspunct iswpunct
453 #define wxIsspace iswspace
454 #define wxIsupper iswupper
455 #define wxIsxdigit iswxdigit
456 #define wxTolower towlower
457 #define wxToupper towupper
458
459 /* string.h functions (wchar.h) */
460 #define wxStrcat wcscat
461 #define wxStrchr wcschr
462 #define wxStrcmp wcscmp
463 #define wxStrcoll wcscoll
464 #define wxStrcpy wcscpy
465 #define wxStrcspn wcscspn
466 #define wxStrlen_ wxWcslen /* wxStrlen_() is used in wxStrlen() */
467 #define wxStrncat wcsncat
468 #define wxStrncmp wcsncmp
469 #define wxStrncpy wcsncpy
470 #define wxStrpbrk wcspbrk
471 #define wxStrrchr wcsrchr
472 #define wxStrspn wcsspn
473 #define wxStrstr wcsstr
474 #define wxStrtod wcstod
475 #define wxStrtol wcstol
476 #define wxStrtoul wcstoul
477 #define wxStrxfrm wcsxfrm
478
479 #define wxFgetc fgetwc
480 #define wxFgetchar fgetwchar
481 #define wxFgets fgetws
482 #define wxFputc fputwc
483 #define wxFputchar fputwchar
484 #define wxGetc getwc
485 #define wxGetchar getwchar
486 #define wxGets getws
487 #define wxUngetc ungetwc
488
489 #define wxNEED_PRINTF_CONVERSION
490
491 #define wxPutc putwc
492 #define wxPutchar putwchar
493 #define wxFputs fputws
494
495 /* stdio.h functions */
496
497 #define wxNEED_WX_STDIO_H
498
499 /* stdlib.h functions */
500 #define wxAtof watof
501 #define wxAtoi watoi
502 #define wxAtol watol
503 #define wxGetenv(a) ((wxChar*)NULL)
504 #define wxSystem(a) ((int)NULL)
505
506 /* time.h functions */
507 #define wxAsctime wasciitime
508 #define wxCtime wctime
509 /* #define wxStrftime wcsftime */
510
511 #define wxNEED_WX_TIME_H
512 #else /* !metrowerks for apple */
513 #error "Please define wide character functions for your environment"
514 #endif
515 #else /* ASCII */
516 #include <ctype.h>
517 #include <string.h>
518
519 /* ctype.h functions */
520 #define wxIsalnum isalnum
521 #define wxIsalpha isalpha
522 #define wxIscntrl iscntrl
523 #define wxIsdigit isdigit
524 #define wxIsgraph isgraph
525 #define wxIslower islower
526 #define wxIsprint isprint
527 #define wxIspunct ispunct
528 #define wxIsspace isspace
529 #define wxIsupper isupper
530 #define wxIsxdigit isxdigit
531 #define wxTolower tolower
532 #define wxToupper toupper
533
534 /* locale.h functons */
535 #define wxSetlocale setlocale
536
537 /* string.h functions */
538 #define wxStrcat strcat
539 #define wxStrchr strchr
540 #define wxStrcmp strcmp
541 #define wxStrcoll strcoll
542 #define wxStrcpy strcpy
543 #define wxStrcspn strcspn
544
545 /* wxStricmp and wxStrnicmp are defined below */
546 #define wxStrlen_ strlen /* used in wxStrlen inline function */
547 #define wxStrncat strncat
548 #define wxStrncmp strncmp
549 #define wxStrncpy strncpy
550 #define wxStrpbrk strpbrk
551 #define wxStrrchr strrchr
552 #define wxStrspn strspn
553 #define wxStrstr strstr
554 #define wxStrtod strtod
555 #ifdef HAVE_STRTOK_R
556 #define wxStrtok(str, sep, last) strtok_r(str, sep, last)
557 #endif
558 #define wxStrtol strtol
559 #define wxStrtoul strtoul
560 #define wxStrxfrm strxfrm
561
562 /* stdio.h functions */
563 #define wxFopen fopen
564 #define wxFreopen freopen
565 #define wxRemove remove
566 #define wxRename rename
567
568 #define wxPerror perror
569 #define wxTmpnam tmpnam
570
571 #define wxFgetc fgetc
572 #define wxFgetchar fgetchar
573 #define wxFgets fgets
574 #define wxFputc fputc
575 #define wxFputs fputs
576 #define wxFputchar fputchar
577 #define wxFprintf fprintf
578 #define wxFscanf fscanf
579 #define wxGetc getc
580 #define wxGetchar getchar
581 #define wxGets gets
582 #define wxPrintf printf
583 #define wxPutc putc
584 #define wxPutchar putchar
585 #define wxPuts puts
586 #define wxScanf scanf
587 #define wxSprintf sprintf
588 #define wxSscanf sscanf
589 #define wxUngetc ungetc
590 #define wxVfprintf vfprintf
591 #define wxVprintf vprintf
592 #define wxVsscanf vsscanf
593 #define wxVsprintf vsprintf
594
595 /* stdlib.h functions */
596 #define wxAtof atof
597 #define wxAtoi atoi
598 #define wxAtol atol
599 #define wxGetenv getenv
600 #define wxSystem system
601
602 /* time.h functions */
603 #define wxAsctime asctime
604 #define wxCtime ctime
605 #define wxStrftime strftime
606 #endif /* Unicode/ASCII */
607 #endif /* TCHAR-aware compilers/the others */
608
609 /*
610 various special cases
611 */
612
613 /* define wxStricmp and wxStrnicmp for various compilers */
614
615 /* note that in Unicode mode we definitely are going to need our own version */
616 #if !defined(wxStricmp) && !wxUSE_UNICODE
617 #if defined(__BORLANDC__) || defined(__WATCOMC__) || \
618 defined(__SALFORDC__) || defined(__VISAGECPP__) || \
619 defined(__EMX__) || defined(__DJGPP__)
620 #define wxStricmp stricmp
621 #define wxStrnicmp strnicmp
622 #elif defined(__SYMANTEC__) || defined(__VISUALC__) || \
623 (defined(__MWERKS__) && defined(__INTEL__))
624 #define wxStricmp _stricmp
625 #define wxStrnicmp _strnicmp
626 #elif defined(__UNIX__) || defined(__GNUWIN32__)
627 #define wxStricmp strcasecmp
628 #define wxStrnicmp strncasecmp
629 /* #else -- use wxWindows implementation */
630 #endif
631 #endif /* !defined(wxStricmp) */
632
633 /* define wxWcslen() which should be always available if wxUSE_WCHAR_T == 1 (as */
634 /* it's used in wx/buffer.h -- and also might be used just below by wxStrlen() */
635 /* when wxStrlen_() is #define'd as wxWcslen so do it before defining wxStrlen) */
636 #if wxUSE_WCHAR_T
637 #ifdef HAVE_WCSLEN
638 #define wxWcslen wcslen
639 #else
640 inline size_t wxWcslen(const wchar_t *s)
641 {
642 size_t n = 0;
643 while ( *s++ )
644 n++;
645
646 return n;
647 }
648 #endif
649 #endif /* wxUSE_WCHAR_T */
650
651 #ifdef __cplusplus
652 /* checks whether the passed in pointer is NULL and if the string is empty */
653 inline bool wxIsEmpty(const wxChar *p) { return !p || !*p; }
654
655 /* safe version of strlen() (returns 0 if passed NULL pointer) */
656 inline size_t wxStrlen(const wxChar *psz) { return psz ? wxStrlen_(psz) : 0; }
657 #endif
658
659 /*
660 each of strdup() and wcsdup() may or may not be available but we need both
661 of them anyhow for wx/buffer.h so we define the missing one(s) in
662 wxchar.cpp and so we should always have both wxStrdupA and wxStrdupW
663 defined -- if this is somehow not the case in some situations, please
664 correct that and not the lines here
665 */
666 #if wxUSE_UNICODE
667 #define wxStrdup wxStrdupW
668 #else
669 #define wxStrdup wxStrdupA
670 #endif
671
672 #ifdef __cplusplus
673 WXDLLIMPEXP_BASE bool wxOKlibc(); /* for internal use */
674 #endif
675
676 /* printf() family saga */
677
678 /*
679 For some systems vsnprintf() exists in the system libraries but not in the
680 headers, so we need to declare it ourselves to be able to use it.
681 */
682 #if defined(HAVE_VSNPRINTF) && !defined(HAVE_VSNPRINTF_DECL)
683 extern "C"
684 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
685 #endif /* !HAVE_VSNPRINTF_DECL */
686
687 /*
688 First of all, we always want to define safe snprintf() function to be used
689 instead of sprintf(). Some compilers already have it (or rather vsnprintf()
690 which we really need...), otherwise we implement it using our own printf()
691 code.
692
693 We define function with a trailing underscore here because the real one is a
694 wrapper around it as explained below
695 */
696 #ifndef wxVsnprintf_
697 #if wxUSE_UNICODE
698 #if defined(__MWERKS__)
699 #define HAVE_WCSRTOMBS 1
700 #define HAVE_VSWPRINTF 1
701 #endif
702 #if defined(__WATCOMC__)
703 #define wxVsnprintf_ _vsnwprintf
704 #define wxSnprintf_ _snwprintf
705 #endif
706 #if defined(HAVE__VSNWPRINTF)
707 #define wxVsnprintf_ _vsnwprintf
708 /* MinGW?MSVCRT has the wrong vswprintf */
709 #elif defined(HAVE_VSWPRINTF) && !defined(__MINGW32__)
710 #define wxVsnprintf_ vswprintf
711 #endif
712 #else /* ASCII */
713 /* all versions of CodeWarrior supported by wxWindows apparently have */
714 /* vsnprintf() */
715 #if defined(HAVE_VSNPRINTF) || defined(__MWERKS__) || defined(__WATCOMC__)
716 /* assume we have snprintf() too if we have vsnprintf() */
717 #define wxVsnprintf_ vsnprintf
718 #define wxSnprintf_ snprintf
719 #endif
720 #endif
721 #endif /* wxVsnprintf_ not defined yet */
722
723 #ifndef wxSnprintf_
724 /* no [v]snprintf(), cook our own */
725 WXDLLIMPEXP_BASE int wxSnprintf_(wxChar *buf, size_t len, const wxChar *format,
726 ...) ATTRIBUTE_PRINTF_3;
727 #endif
728 #ifndef wxVsnprintf_
729 WXDLLIMPEXP_BASE int wxVsnprintf_(wxChar *buf, size_t len, const wxChar *format,
730 va_list argptr);
731 #endif
732
733 /*
734 In Unicode mode we need to have all standard functions such as wprintf() and
735 so on but not all systems have them so use our own implementations in this
736 case.
737 */
738 #if wxUSE_UNICODE && !defined(wxHAVE_TCHAR_SUPPORT) && !defined(HAVE_WPRINTF)
739 #define wxNEED_WPRINTF
740 #endif
741
742 /*
743 More Unicode complications: although both ANSI C and C++ define a number of
744 wide character functions such as wprintf(), not all environments have them.
745 Worse, those which do have different behaviours: under Windows, %s format
746 specifier changes its meaning in Unicode build and expects a Unicode string
747 while under Unix/POSIX it still means an ASCII string even for wprintf() and
748 %ls has to be used for wide strings.
749
750 We choose to always emulate Windows behaviour as more useful for us so even
751 if we have wprintf() we still must wrap it in a non trivial wxPrintf().
752
753 However, if we don't have any vswprintf() at all we don't need to redefine
754 anything as our own wxVsnprintf_() already behaves as needed.
755 */
756 #ifndef wxVsnprintf_
757 #undef wxNEED_PRINTF_CONVERSION
758 #endif
759
760 #if defined(wxNEED_PRINTF_CONVERSION) || defined(wxNEED_WPRINTF)
761 /*
762 we need to implement all wide character printf and scanf functions
763 either because we don't have them at all or because they don't have the
764 semantics we need
765 */
766
767 #include <stdio.h> /* for FILE */
768
769 int wxScanf( const wxChar *format, ... ) ATTRIBUTE_PRINTF_1;
770 int wxSscanf( const wxChar *str, const wxChar *format, ... ) ATTRIBUTE_PRINTF_2;
771 int wxFscanf( FILE *stream, const wxChar *format, ... ) ATTRIBUTE_PRINTF_2;
772 int wxVsscanf( const wxChar *str, const wxChar *format, va_list ap );
773 int wxPrintf( const wxChar *format, ... ) ATTRIBUTE_PRINTF_1;
774 int wxSprintf( wxChar *str, const wxChar *format, ... ) ATTRIBUTE_PRINTF_2;
775 int wxFprintf( FILE *stream, const wxChar *format, ... ) ATTRIBUTE_PRINTF_2;
776 int wxVfprintf( FILE *stream, const wxChar *format, va_list ap );
777 int wxVprintf( const wxChar *format, va_list ap );
778 int wxVsprintf( wxChar *str, const wxChar *format, va_list ap );
779 #endif /* wxNEED_PRINTF_CONVERSION */
780
781 /* these 2 can be simply mapped to the versions with underscore at the end */
782 /* if we don't have to do the conversion */
783 #ifdef wxNEED_PRINTF_CONVERSION
784 int wxSnprintf( wxChar *str, size_t size, const wxChar *format, ... ) ATTRIBUTE_PRINTF_3;
785 int wxVsnprintf( wxChar *str, size_t size, const wxChar *format, va_list ap );
786 #else
787 #define wxSnprintf wxSnprintf_
788 #define wxVsnprintf wxVsnprintf_
789 #endif
790
791 /*
792 various functions which might not be available in libc and for which we
793 provide our own replacements in wxchar.cpp
794 */
795
796 /* ctype.h functions */
797
798 /* VZ: note that this is never defined currently */
799 #ifdef wxNEED_WX_CTYPE_H
800 WXDLLIMPEXP_BASE int wxIsalnum(wxChar ch);
801 WXDLLIMPEXP_BASE int wxIsalpha(wxChar ch);
802 WXDLLIMPEXP_BASE int wxIscntrl(wxChar ch);
803 WXDLLIMPEXP_BASE int wxIsdigit(wxChar ch);
804 WXDLLIMPEXP_BASE int wxIsgraph(wxChar ch);
805 WXDLLIMPEXP_BASE int wxIslower(wxChar ch);
806 WXDLLIMPEXP_BASE int wxIsprint(wxChar ch);
807 WXDLLIMPEXP_BASE int wxIspunct(wxChar ch);
808 WXDLLIMPEXP_BASE int wxIsspace(wxChar ch);
809 WXDLLIMPEXP_BASE int wxIsupper(wxChar ch);
810 WXDLLIMPEXP_BASE int wxIsxdigit(wxChar ch);
811 WXDLLIMPEXP_BASE int wxTolower(wxChar ch);
812 WXDLLIMPEXP_BASE int wxToupper(wxChar ch);
813 #endif /* wxNEED_WX_CTYPE_H */
814
815 /* under VC++ 6.0 isspace() returns 1 for 8 bit chars which completely breaks */
816 /* the file parsing -- this may be true for 5.0 as well, update #ifdef then */
817 #if defined(__VISUALC__) && (__VISUALC__ >= 1200) && !wxUSE_UNICODE
818 #undef wxIsspace
819 #define wxIsspace(c) ((((unsigned)c) < 128) && isspace(c))
820 #endif /* VC++ */
821
822 /*
823 we had goofed and defined wxIctrl() instead of (correct) wxIscntrl() in the
824 initial versions of this header -- now it is too late to remove it so
825 although we fixed the function/macro name above, still provide the
826 backwards-compatible synonym.
827 */
828 #define wxIsctrl wxIscntrl
829
830 /* string.h functions */
831
832 /* VZ: this is never defined neither currently */
833 #ifdef wxNEED_WX_STRING_H
834 WXDLLIMPEXP_BASE wxChar * wxStrcat(wxChar *dest, const wxChar *src);
835 WXDLLIMPEXP_BASE const wxChar * wxStrchr(const wxChar *s, wxChar c);
836 WXDLLIMPEXP_BASE wxChar * wxStrchr(wxChar *s, wxChar c)
837 { return (wxChar *)wxStrchr((const wxChar *)s, c); }
838 WXDLLIMPEXP_BASE int wxStrcmp(const wxChar *s1, const wxChar *s2);
839 WXDLLIMPEXP_BASE int wxStrcoll(const wxChar *s1, const wxChar *s2);
840 WXDLLIMPEXP_BASE wxChar * wxStrcpy(wxChar *dest, const wxChar *src);
841 WXDLLIMPEXP_BASE size_t wxStrcspn(const wxChar *s, const wxChar *reject);
842 WXDLLIMPEXP_BASE size_t wxStrlen(const wxChar *s);
843 WXDLLIMPEXP_BASE wxChar * wxStrncat(wxChar *dest, const wxChar *src, size_t n);
844 WXDLLIMPEXP_BASE int wxStrncmp(const wxChar *s1, const wxChar *s2, size_t n);
845 WXDLLIMPEXP_BASE wxChar * wxStrncpy(wxChar *dest, const wxChar *src, size_t n);
846 WXDLLIMPEXP_BASE const wxChar * wxStrpbrk(const wxChar *s, const wxChar *accept);
847 WXDLLIMPEXP_BASE wxChar * wxStrpbrk(wxChar *s, const wxChar *accept)
848 { return (wxChar *)wxStrpbrk((const wxChar *)s, accept); }
849 WXDLLIMPEXP_BASE const wxChar * wxStrrchr(const wxChar *s, wxChar c);
850 WXDLLIMPEXP_BASE wxChar * wxStrrchr(wxChar *s, wxChar c)
851 { return (wxChar *)wxStrrchr((const wxChar *)s, c); }
852 WXDLLIMPEXP_BASE size_t wxStrspn(const wxChar *s, const wxChar *accept);
853 WXDLLIMPEXP_BASE const wxChar * wxStrstr(const wxChar *haystack, const wxChar *needle);
854 WXDLLIMPEXP_BASE wxChar *wxStrstr(wxChar *haystack, const wxChar *needle)
855 { return (wxChar *)wxStrstr((const wxChar *)haystack, needle); }
856 WXDLLIMPEXP_BASE double wxStrtod(const wxChar *nptr, wxChar **endptr);
857 WXDLLIMPEXP_BASE long int wxStrtol(const wxChar *nptr, wxChar **endptr, int base);
858 WXDLLIMPEXP_BASE unsigned long int wxStrtoul(const wxChar *nptr, wxChar **endptr, int base);
859 WXDLLIMPEXP_BASE size_t wxStrxfrm(wxChar *dest, const wxChar *src, size_t n);
860 #endif /* wxNEED_WX_STRING_H */
861
862 #ifndef wxStrdupA
863 WXDLLIMPEXP_BASE char *wxStrdupA(const char *psz);
864 #endif
865
866 #ifndef wxStrdupW
867 WXDLLIMPEXP_BASE wchar_t *wxStrdupW(const wchar_t *pwz);
868 #endif
869
870 #ifndef wxStricmp
871 WXDLLIMPEXP_BASE int wxStricmp(const wxChar *psz1, const wxChar *psz2);
872 #endif
873
874 #ifndef wxStrnicmp
875 WXDLLIMPEXP_BASE int wxStrnicmp(const wxChar *psz1, const wxChar *psz2, size_t len);
876 #endif
877
878 #ifndef wxStrtok
879 WXDLLIMPEXP_BASE wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr);
880 #endif
881
882 #ifdef __cplusplus
883 #ifndef wxSetlocale
884 class WXDLLIMPEXP_BASE wxWCharBuffer;
885 WXDLLIMPEXP_BASE wxWCharBuffer wxSetlocale(int category, const wxChar *locale);
886 #endif
887 #endif
888
889 /* stdio.h functions */
890 #ifdef wxNEED_WX_STDIO_H
891 #include <stdio.h>
892 WXDLLIMPEXP_BASE FILE * wxFopen(const wxChar *path, const wxChar *mode);
893 WXDLLIMPEXP_BASE FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream);
894 WXDLLIMPEXP_BASE int wxRemove(const wxChar *path);
895 WXDLLIMPEXP_BASE int wxRename(const wxChar *oldpath, const wxChar *newpath);
896
897 /* *printf() family is handled separately */
898 #endif /* wxNEED_WX_STDIO_H */
899
900
901 /* stdlib.h functions */
902 #ifndef wxAtof
903 WXDLLIMPEXP_BASE double wxAtof(const wxChar *psz);
904 #endif
905
906 #ifdef wxNEED_WX_STDLIB_H
907 WXDLLIMPEXP_BASE int wxAtoi(const wxChar *psz);
908 WXDLLIMPEXP_BASE long wxAtol(const wxChar *psz);
909 WXDLLIMPEXP_BASE wxChar * wxGetenv(const wxChar *name);
910 WXDLLIMPEXP_BASE int wxSystem(const wxChar *psz);
911 #endif
912
913
914 /* time.h functions */
915 #ifdef wxNEED_WX_TIME_H
916 #if defined(__MWERKS__) && defined(macintosh)
917 #include <time.h>
918 #endif
919 WXDLLIMPEXP_BASE size_t wxStrftime(wxChar *s, size_t max,
920 const wxChar *fmt, const struct tm *tm);
921 #endif /* wxNEED_WX_TIME_H */
922
923 /* missing functions in some WinCE versions */
924 #ifdef _WIN32_WCE
925 #if (_WIN32_WCE < 300)
926 WXDLLIMPEXP_BASE void *calloc( size_t num, size_t size );
927 #endif
928 WXDLLIMPEXP_BASE char* strdup(const char* s);
929
930 #if _WIN32_WCE <= 211
931 WXDLLIMPEXP_BASE int isspace(int c);
932 WXDLLIMPEXP_BASE int isascii( int c );
933 #endif
934 #endif
935
936 /* multibyte to wide char conversion functions and macros */
937
938 #if wxUSE_WCHAR_T
939 /* multibyte<->widechar conversion */
940 WXDLLIMPEXP_BASE size_t wxMB2WC(wchar_t *buf, const char *psz, size_t n);
941 WXDLLIMPEXP_BASE size_t wxWC2MB(char *buf, const wchar_t *psz, size_t n);
942
943 #if wxUSE_UNICODE
944 #define wxMB2WX wxMB2WC
945 #define wxWX2MB wxWC2MB
946 #define wxWC2WX wxStrncpy
947 #define wxWX2WC wxStrncpy
948 #else
949 #define wxMB2WX wxStrncpy
950 #define wxWX2MB wxStrncpy
951 #define wxWC2WX wxWC2MB
952 #define wxWX2WC wxMB2WC
953 #endif
954 #else /* !wxUSE_UNICODE */
955 /* No wxUSE_WCHAR_T: we have to do something (JACS) */
956 #define wxMB2WC wxStrncpy
957 #define wxWC2MB wxStrncpy
958 #define wxMB2WX wxStrncpy
959 #define wxWX2MB wxStrncpy
960 #define wxWC2WX wxWC2MB
961 #define wxWX2WC wxMB2WC
962 #endif
963
964 #endif /* _WX_WXCHAR_H_ */
965