]>
Commit | Line | Data |
---|---|---|
e35d0039 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wxchar.h | |
3 | // Purpose: Declarations common to wx char/wchar_t usage (wide chars) | |
4 | // Author: Joel Farley | |
5 | // Modified by: | |
6 | // Created: 1998/06/12 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows copyright | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_WXCHAR_H_ | |
13 | #define _WX_WXCHAR_H_ | |
14 | ||
191ab39a VZ |
15 | #ifdef __GNUG__ |
16 | #pragma interface "wxchar.h" | |
17 | #endif | |
e35d0039 JS |
18 | |
19 | // only do SBCS or _UNICODE | |
20 | #if defined (_MBCS ) | |
b14391d1 JS |
21 | // It may be OK anyway. |
22 | // # error "MBCS is not supported by wxChar" | |
e35d0039 JS |
23 | #endif |
24 | ||
f6bcfd97 BP |
25 | // ---------------------------------------------------------------------------- |
26 | // first deal with Unicode setting | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
853d7d3d OK |
29 | // set wxUSE_UNICODE to 1 if UNICODE or _UNICODE is defined |
30 | #if defined(_UNICODE) || defined(UNICODE) | |
1777b9bb DW |
31 | # undef wxUSE_UNICODE |
32 | # define wxUSE_UNICODE 1 | |
853d7d3d | 33 | #else |
1777b9bb DW |
34 | # ifndef wxUSE_UNICODE |
35 | # define wxUSE_UNICODE 0 | |
36 | # endif | |
f6bcfd97 | 37 | #endif // Unicode |
853d7d3d OK |
38 | |
39 | // and vice versa: define UNICODE and _UNICODE if wxUSE_UNICODE is 1... | |
40 | #if wxUSE_UNICODE | |
1777b9bb DW |
41 | # ifndef _UNICODE |
42 | # define _UNICODE | |
43 | # endif | |
44 | # ifndef UNICODE | |
45 | # define UNICODE | |
46 | # endif | |
f6bcfd97 BP |
47 | #endif // Unicode |
48 | ||
49 | // Unicode support requires wchar_t | |
50 | #if wxUSE_UNICODE | |
51 | # undef wxUSE_WCHAR_T | |
52 | # define wxUSE_WCHAR_T 1 | |
53 | #endif // Unicode | |
853d7d3d | 54 | |
191ab39a VZ |
55 | // ---------------------------------------------------------------------------- |
56 | // define wxHAVE_TCHAR_FUNCTIONS for the compilers which support the | |
57 | // wide-character functions | |
58 | // ---------------------------------------------------------------------------- | |
59 | ||
60 | #ifdef __WIN32__ | |
61 | // VC++ and BC++ starting with 5.2 have TCHAR support | |
62 | #ifdef __VISUALC__ | |
63 | #define wxHAVE_TCHAR_FUNCTIONS | |
64 | #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x520) | |
65 | #define wxHAVE_TCHAR_FUNCTIONS | |
fbdb357e | 66 | #elif defined(__MINGW32__) && wxCHECK_W32API_VERSION( 1, 0 ) |
161f4f73 VZ |
67 | #define wxHAVE_TCHAR_FUNCTIONS |
68 | #include <stddef.h> | |
69 | #include <string.h> | |
70 | #include <ctype.h> | |
0e448231 | 71 | #elif defined(__CYGWIN__) |
7fc0bd1c | 72 | #define HAVE_WCSLEN |
0e448231 MB |
73 | #include <stddef.h> |
74 | #include <wchar.h> | |
191ab39a VZ |
75 | #endif |
76 | #elif defined(__VISAGECPP__) && (__IBMCPP__ >= 400) | |
77 | // VisualAge 4.0+ supports TCHAR | |
78 | #define wxHAVE_TCHAR_FUNCTIONS | |
79 | ||
80 | // but not stdio.h nor time nor conversion functions | |
81 | #define wxNO_TCHAR_STDIO | |
82 | #define wxNO_TCHAR_STDLIB | |
83 | #define wxNO_TCHAR_TIME | |
9dea36ef DW |
84 | #define wxNO_TCHAR_LOCALE |
85 | // | |
86 | // supplemental VA V4 defs so at least we know what these are | |
87 | // just define to standard defs | |
88 | // | |
89 | ||
90 | // for wcslen | |
91 | #include <wchar.h> | |
92 | ||
93 | // locale.h functons -- not defined in tchar.h | |
94 | #define wxSetlocale setlocale | |
95 | // some stdio functions are defined others are not | |
96 | // these are not | |
97 | #define wxFgetchar fgetchar | |
98 | #define wxFopen fopen | |
99 | #define wxFputchar fputchar | |
100 | #define wxFreopen freopen | |
101 | #define wxGets gets | |
102 | #define wxPerror perror | |
103 | #define wxPuts puts | |
104 | #define wxRemove remove | |
105 | #define wxRename rename | |
106 | #define wxTmpnam tmpnam | |
107 | #define wxUngetc ungetc | |
108 | #define wxVsscanf vsscanf | |
109 | // stdlib not defined in VA V4 | |
110 | #if !wxUSE_UNICODE | |
111 | # define wxAtof atof | |
112 | #endif | |
113 | #define wxAtoi atoi | |
114 | #define wxAtol atol | |
115 | #define wxGetenv getenv | |
116 | #define wxSystem system | |
117 | // time.h functions -- none defined in tchar.h | |
118 | #define wxAsctime asctime | |
119 | #define wxCtime ctime | |
f7efcd81 SC |
120 | #elif defined(__MWERKS__) |
121 | // for wcslen | |
122 | #if wxUSE_WCHAR_T | |
123 | #include <wchar.h> | |
124 | #endif | |
f6bcfd97 | 125 | #endif // compilers with (good) TCHAR support |
e35d0039 | 126 | |
191ab39a | 127 | #ifdef wxHAVE_TCHAR_FUNCTIONS |
1777b9bb | 128 | # define HAVE_WCSLEN 1 |
a23fd0e1 | 129 | |
1777b9bb | 130 | # include <tchar.h> |
73974df1 | 131 | |
1777b9bb | 132 | # if wxUSE_UNICODE // temporary - preserve binary compatibility |
161f4f73 VZ |
133 | #if defined(__GNUWIN32__) |
134 | #define _TCHAR TCHAR | |
135 | #define _TSCHAR TCHAR | |
136 | #define _TUCHAR TCHAR | |
137 | #endif | |
138 | ||
e35d0039 | 139 | typedef _TCHAR wxChar; |
3f4a0c5b | 140 | typedef _TSCHAR wxSChar; |
e35d0039 | 141 | typedef _TUCHAR wxUChar; |
1777b9bb DW |
142 | # else |
143 | # define wxChar char | |
144 | # define wxSChar signed char | |
145 | # define wxUChar unsigned char | |
146 | # endif | |
f6bcfd97 BP |
147 | |
148 | // wchar_t is available | |
149 | #ifndef wxUSE_WCHAR_T | |
150 | #define wxUSE_WCHAR_T 1 | |
151 | #endif // !defined(wxUSE_WCHAR_T) | |
e35d0039 JS |
152 | |
153 | // ctype.h functions | |
191ab39a | 154 | #ifndef wxNO_TCHAR_CTYPE |
f3773655 OK |
155 | #ifdef __BORLANDC__ |
156 | # include <ctype.h> | |
157 | #endif | |
1777b9bb DW |
158 | # define wxIsalnum _istalnum |
159 | # define wxIsalpha _istalpha | |
160 | # define wxIsctrl _istctrl | |
161 | # define wxIsdigit _istdigit | |
162 | # define wxIsgraph _istgraph | |
163 | # define wxIslower _istlower | |
164 | # define wxIsprint _istprint | |
165 | # define wxIspunct _istpunct | |
166 | # define wxIsspace _istspace | |
167 | # define wxIsupper _istupper | |
168 | # define wxIsxdigit _istxdigit | |
169 | # define wxTolower _totlower | |
170 | # define wxToupper _totupper | |
191ab39a | 171 | #endif // wxNO_TCHAR_CTYPE |
e35d0039 JS |
172 | |
173 | // locale.h functons | |
191ab39a | 174 | #ifndef wxNO_TCHAR_LOCALE |
1777b9bb | 175 | # define wxSetlocale _tsetlocale |
191ab39a | 176 | #endif // wxNO_TCHAR_LOCALE |
e35d0039 JS |
177 | |
178 | // string.h functions | |
191ab39a | 179 | #ifndef wxNO_TCHAR_STRING |
1777b9bb DW |
180 | # define wxStrcat _tcscat |
181 | # define wxStrchr _tcschr | |
182 | # define wxStrcmp _tcscmp | |
183 | # define wxStrcoll _tcscoll | |
184 | # define wxStrcpy _tcscpy | |
185 | # define wxStrcspn _tcscspn | |
186 | # define wxStrftime _tcsftime | |
187 | # define wxStricmp _tcsicmp | |
1e6feb95 | 188 | # define wxStrnicmp _tcsnicmp |
1777b9bb DW |
189 | # define wxStrlen_ _tcslen // used in wxStrlen inline function |
190 | # define wxStrncat _tcsncat | |
191 | # define wxStrncmp _tcsncmp | |
192 | # define wxStrncpy _tcsncpy | |
193 | # define wxStrpbrk _tcspbrk | |
194 | # define wxStrrchr _tcsrchr | |
195 | # define wxStrspn _tcsspn | |
196 | # define wxStrstr _tcsstr | |
197 | # define wxStrtod _tcstod | |
1777b9bb DW |
198 | # define wxStrtol _tcstol |
199 | # define wxStrtoul _tcstoul | |
200 | # define wxStrxfrm _tcsxfrm | |
191ab39a | 201 | #endif // wxNO_TCHAR_STRING |
e35d0039 JS |
202 | |
203 | // stdio.h functions | |
191ab39a | 204 | #ifndef wxNO_TCHAR_STDIO |
3d5231db VS |
205 | # if wxUSE_UNICODE_MSLU |
206 | # define wxRemove wxMSLU__tremove | |
207 | # define wxRename wxMSLU__trename | |
208 | # else | |
209 | # define wxRemove _tremove | |
210 | # define wxRename _trename | |
211 | # endif | |
1777b9bb DW |
212 | # define wxFgetc _fgettc |
213 | # define wxFgetchar _fgettchar | |
214 | # define wxFgets _fgetts | |
215 | # define wxFopen _tfopen | |
216 | # define wxFputc _fputtc | |
217 | # define wxFputchar _fputtchar | |
218 | # define wxFprintf _ftprintf | |
219 | # define wxFreopen _tfreopen | |
220 | # define wxFscanf _ftscanf | |
221 | # define wxGetc _gettc | |
222 | # define wxGetchar _gettchar | |
223 | # define wxGets _getts | |
224 | # define wxPerror _tperror | |
225 | # define wxPrintf _tprintf | |
226 | # define wxPutc _puttc | |
227 | # define wxPutchar _puttchar | |
228 | # define wxPuts _putts | |
1777b9bb DW |
229 | # define wxScanf _tscanf |
230 | # define wxSprintf _stprintf | |
231 | # define wxSscanf _stscanf | |
232 | # define wxTmpnam _ttmpnam | |
233 | # define wxUngetc _tungetc | |
234 | # define wxVfprint _vftprintf | |
235 | # define wxVprintf _vtprintf | |
236 | # define wxVsscanf _vstscanf | |
237 | # define wxVsprintf _vstprintf | |
9dea36ef | 238 | #elif defined(__VISAGECPP__) && (__IBMCPP__ >= 400) |
191ab39a | 239 | // it has some stdio.h functions, apparently |
c7173739 | 240 | # define wxFgetc _fgettc |
c7173739 | 241 | # define wxFgets _fgetts |
c7173739 | 242 | # define wxFputc _fputtc |
c7173739 | 243 | # define wxFprintf _ftprintf |
c7173739 VZ |
244 | # define wxFscanf _ftscanf |
245 | # define wxGetc _gettc | |
246 | # define wxGetchar _gettchar | |
c7173739 VZ |
247 | # define wxPrintf _tprintf |
248 | # define wxPutc _puttc | |
249 | # define wxPutchar _puttchar | |
c7173739 VZ |
250 | # define wxScanf _tscanf |
251 | # define wxSprintf _stprintf | |
252 | # define wxSscanf _stscanf | |
c7173739 VZ |
253 | # define wxVfprint _vftprintf |
254 | # define wxVprintf _vtprintf | |
c7173739 | 255 | # define wxVsprintf _vstprintf |
191ab39a | 256 | #endif // wxNO_TCHAR_STDIO |
c7173739 VZ |
257 | |
258 | // stdlib.h functions | |
191ab39a VZ |
259 | #ifndef wxNO_TCHAR_STDLIB |
260 | # if !wxUSE_UNICODE | |
261 | # define wxAtof atof | |
262 | # endif | |
c7173739 VZ |
263 | # define wxAtoi _ttoi |
264 | # define wxAtol _ttol | |
265 | # define wxGetenv _tgetenv | |
266 | # define wxSystem _tsystem | |
191ab39a | 267 | #endif // wxNO_TCHAR_STDLIB |
c7173739 VZ |
268 | |
269 | // time.h functions | |
191ab39a | 270 | #ifndef wxNO_TCHAR_TIME |
c7173739 VZ |
271 | # define wxAsctime _tasctime |
272 | # define wxCtime _tctime | |
191ab39a | 273 | #endif // wxNO_TCHAR_TIME |
c7173739 | 274 | |
191ab39a | 275 | #else // !TCHAR-aware compilers |
34f9227c | 276 | |
81d425f6 | 277 | // check whether we should include wchar.h or equivalent |
f6bcfd97 | 278 | # if !defined(wxUSE_WCHAR_T) |
1777b9bb DW |
279 | # if defined(__VISUALC__) && (__VISUALC__ < 900) |
280 | # define wxUSE_WCHAR_T 0 // wchar_t is not available for MSVC++ 1.5 | |
281 | # elif defined(__UNIX__) | |
750c3a6d | 282 | # if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H) || defined(__FreeBSD__) || defined(__DARWIN__) |
1777b9bb DW |
283 | # define wxUSE_WCHAR_T 1 |
284 | # else | |
285 | # define wxUSE_WCHAR_T 0 | |
286 | # endif | |
287 | # elif defined(__GNUWIN32__) && !defined(__MINGW32__) // Cygwin (not Mingw32) doesn't have wcslen.h, needed in buffer.h | |
288 | # define wxUSE_WCHAR_T 0 | |
289 | # elif defined(__BORLANDC__) // WIN16 BC++ | |
290 | # define wxUSE_WCHAR_T 0 | |
291 | # elif defined(__WATCOMC__) | |
292 | # define wxUSE_WCHAR_T 0 | |
afa59b4e DW |
293 | # elif defined(__VISAGECPP__) && (__IBMCPP__ < 400) |
294 | # define wxUSE_WCHAR_T 0 | |
1777b9bb | 295 | # else |
a27d279f | 296 | // add additional compiler checks if this fails |
1777b9bb DW |
297 | # define wxUSE_WCHAR_T 1 |
298 | # endif | |
f6bcfd97 | 299 | # endif // !defined(wxUSE_WCHAR_T) |
1777b9bb | 300 | |
a27d279f VZ |
301 | # if wxUSE_WCHAR_T |
302 | # ifdef HAVE_WCHAR_H | |
303 | // include wchar.h to get wcslen() declaration used by wx/buffer.h | |
304 | # include <wchar.h> | |
305 | # elif defined(HAVE_WCSTR_H) | |
306 | // old compilers have wcslen() here | |
307 | # include <wcstr.h> | |
308 | # elif defined(__FreeBSD__) || defined(__DARWIN__) || defined(__EMX__) | |
309 | // include stdlib.h for wchar_t, wcslen is provided in wxchar.cpp | |
310 | # include <stdlib.h> | |
311 | size_t WXDLLEXPORT wcslen(const wchar_t *s); | |
312 | # endif // HAVE_WCHAR_H | |
313 | # endif // wxUSE_WCHAR_T | |
65d77246 | 314 | |
34f9227c | 315 | // check whether we are doing Unicode |
1777b9bb | 316 | # if wxUSE_UNICODE |
34f9227c | 317 | |
1777b9bb | 318 | # include <wctype.h> |
34f9227c OK |
319 | |
320 | // this is probably glibc-specific | |
1777b9bb | 321 | # if defined(__WCHAR_TYPE__) |
34f9227c OK |
322 | |
323 | typedef __WCHAR_TYPE__ wxChar; | |
324 | typedef signed __WCHAR_TYPE__ wxSChar; | |
325 | typedef unsigned __WCHAR_TYPE__ wxUChar; | |
326 | ||
cdb51680 | 327 | # define _T(x) L##x |
1777b9bb DW |
328 | |
329 | // ctype.h functions (wctype.h) | |
330 | # define wxIsalnum iswalnum | |
331 | # define wxIsalpha iswalpha | |
332 | # define wxIsctrl iswcntrl | |
333 | # define wxIsdigit iswdigit | |
334 | # define wxIsgraph iswgraph | |
335 | # define wxIslower iswlower | |
336 | # define wxIsprint iswprint | |
337 | # define wxIspunct iswpunct | |
338 | # define wxIsspace iswspace | |
339 | # define wxIsupper iswupper | |
340 | # define wxIsxdigit iswxdigit | |
341 | ||
342 | # if defined(__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0) | |
343 | // /usr/include/wctype.h incorrectly declares translations tables which | |
344 | // provokes tons of compile-time warnings - try to correct this | |
345 | # define wxTolower(wc) towctrans((wc), (wctrans_t)__ctype_tolower) | |
346 | # define wxToupper(wc) towctrans((wc), (wctrans_t)__ctype_toupper) | |
347 | # else | |
348 | # define wxTolower towlower | |
349 | # define wxToupper towupper | |
350 | # endif // gcc/!gcc | |
351 | ||
352 | // string.h functions (wchar.h) | |
353 | # define wxStrcat wcscat | |
354 | # define wxStrchr wcschr | |
355 | # define wxStrcmp wcscmp | |
356 | # define wxStrcoll wcscoll | |
357 | # define wxStrcpy wcscpy | |
358 | # define wxStrcspn wcscspn | |
359 | # define wxStrlen_ wcslen // used in wxStrlen inline function | |
360 | # define wxStrncat wcsncat | |
361 | # define wxStrncmp wcsncmp | |
362 | # define wxStrncpy wcsncpy | |
363 | # define wxStrpbrk wcspbrk | |
364 | # define wxStrrchr wcsrchr | |
365 | # define wxStrspn wcsspn | |
366 | # define wxStrstr wcsstr | |
367 | # define wxStrtod wcstod | |
368 | # define wxStrtok wcstok | |
369 | # define wxStrtol wcstol | |
370 | # define wxStrtoul wcstoul | |
371 | # define wxStrxfrm wcsxfrm | |
e35d0039 | 372 | |
34f9227c | 373 | // glibc doesn't have wc equivalents of the other stuff |
1777b9bb DW |
374 | # define wxNEED_WX_STDIO_H |
375 | # define wxNEED_WX_STDLIB_H | |
376 | # define wxNEED_WX_TIME_H | |
34f9227c | 377 | |
1777b9bb DW |
378 | # else//!glibc |
379 | # error "Please define your compiler's Unicode conventions in wxChar.h" | |
380 | # endif | |
381 | # else//!Unicode | |
e35d0039 | 382 | |
1777b9bb DW |
383 | # include <ctype.h> |
384 | # include <string.h> | |
e97a90f0 | 385 | |
a27d279f VZ |
386 | typedef char wxChar; |
387 | typedef signed char wxSChar; | |
388 | typedef unsigned char wxUChar; | |
e90c1d2a | 389 | |
6e040042 | 390 | # if defined(__FreeBSD__) || defined(__DARWIN__) |
cdb51680 | 391 | # undef _T |
e90c1d2a | 392 | # endif |
b4fe5125 JS |
393 | |
394 | # if !defined(__MINGW32__) || !defined(_T) | |
395 | # define _T(x) x | |
396 | # endif | |
1777b9bb DW |
397 | |
398 | // ctype.h functions | |
e90c1d2a VZ |
399 | # define wxIsalnum isalnum |
400 | # define wxIsalpha isalpha | |
401 | # define wxIsctrl isctrl | |
402 | # define wxIsdigit isdigit | |
403 | # define wxIsgraph isgraph | |
404 | # define wxIslower islower | |
405 | # define wxIsprint isprint | |
406 | # define wxIspunct ispunct | |
407 | # define wxIsspace isspace | |
408 | # define wxIsupper isupper | |
409 | # define wxIsxdigit isxdigit | |
410 | # define wxTolower tolower | |
411 | # define wxToupper toupper | |
412 | ||
413 | // locale.h functons | |
414 | # define wxSetlocale setlocale | |
415 | ||
416 | // string.h functions | |
417 | // #define wxStricmp strcasecmp | |
418 | // wxStricmp is defined below!! | |
419 | ||
420 | #ifdef HAVE_STRTOK_R | |
421 | #define wxStrtok(str, sep, last) strtok_r(str, sep, last) | |
422 | #else | |
423 | #define wxStrtok(str, sep, last) strtok(str, sep) | |
424 | #endif | |
1777b9bb DW |
425 | |
426 | // leave the rest to defaults below | |
e90c1d2a VZ |
427 | # define wxNEED_WX_STRING_H |
428 | # define wxNEED_WX_STDIO_H | |
429 | # define wxNEED_WX_STDLIB_H | |
430 | # define wxNEED_WX_TIME_H | |
1777b9bb DW |
431 | |
432 | # endif//Unicode | |
853d7d3d OK |
433 | #endif//TCHAR-aware compilers |
434 | ||
435 | // define wxStricmp for various compilers without Unicode possibilities | |
436 | #if !defined(wxStricmp) && !wxUSE_UNICODE | |
14704334 | 437 | # if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__SALFORDC__) || defined(__VISAGECPP__) || defined(__EMX__) || defined(__DJGPP__) |
1777b9bb | 438 | # define wxStricmp stricmp |
9199e66f | 439 | # define wxStrnicmp strnicmp |
585ae8cb | 440 | # elif defined(__SC__) || defined(__VISUALC__) || (defined(__MWERKS__) && defined(__INTEL__)) |
1777b9bb | 441 | # define wxStricmp _stricmp |
9199e66f | 442 | # define wxStrnicmp _strnicmp |
03e11df5 | 443 | # elif defined(__UNIX__) || defined(__GNUWIN32__) |
1777b9bb | 444 | # define wxStricmp strcasecmp |
9199e66f | 445 | # define wxStrnicmp strncasecmp |
1777b9bb DW |
446 | # elif defined(__MWERKS__) && !defined(__INTEL__) |
447 | // use wxWindows' implementation | |
448 | # else | |
449 | // if you leave wxStricmp undefined, wxWindows' implementation will be used | |
450 | # error "Please define string case-insensitive compare for your OS/compiler" | |
451 | # endif | |
853d7d3d OK |
452 | #endif |
453 | ||
454 | // if we need to define for standard headers, and we're not using Unicode, | |
455 | // just define to standard C library routines | |
456 | #if !wxUSE_UNICODE | |
1777b9bb DW |
457 | # ifdef wxNEED_WX_STRING_H |
458 | # define wxStrcat strcat | |
459 | # define wxStrchr strchr | |
460 | # define wxStrcmp strcmp | |
461 | # define wxStrcoll strcoll | |
462 | # define wxStrcpy strcpy | |
463 | # define wxStrcspn strcspn | |
ab1437ca | 464 | #if !defined(__MWERKS__) || !defined(__WXMAC__) |
1777b9bb | 465 | # define wxStrdup strdup |
ab1437ca | 466 | #endif |
1777b9bb DW |
467 | # define wxStrlen_ strlen // used in wxStrlen inline function |
468 | # define wxStrncat strncat | |
469 | # define wxStrncmp strncmp | |
470 | # define wxStrncpy strncpy | |
471 | # define wxStrpbrk strpbrk | |
472 | # define wxStrrchr strrchr | |
473 | # define wxStrspn strspn | |
474 | # define wxStrstr strstr | |
475 | # define wxStrtod strtod | |
476 | # define wxStrtol strtol | |
477 | # define wxStrtoul strtoul | |
478 | # define wxStrxfrm strxfrm | |
479 | # undef wxNEED_WX_STRING_H | |
480 | # endif | |
481 | ||
482 | # ifdef wxNEED_WX_STDIO_H | |
483 | # define wxFgetc fgetc | |
484 | # define wxFgetchar fgetchar | |
485 | # define wxFgets fgets | |
486 | # define wxFopen fopen | |
487 | # define wxFputc fputc | |
488 | # define wxFputchar fputchar | |
489 | # define wxFprintf fprintf | |
490 | # define wxFreopen freopen | |
491 | # define wxFscanf fscanf | |
492 | # define wxGetc getc | |
493 | # define wxGetchar getchar | |
494 | # define wxGets gets | |
495 | # define wxPerror perror | |
496 | # define wxPrintf printf | |
497 | # define wxPutc putc | |
498 | # define wxPutchar putchar | |
499 | # define wxPuts puts | |
500 | # define wxRemove remove | |
501 | # define wxRename rename | |
502 | # define wxScanf scanf | |
503 | # define wxSprintf sprintf | |
504 | # define wxSscanf sscanf | |
505 | # define wxTmpnam tmpnam | |
506 | # define wxUngetc ungetc | |
507 | # define wxVfprint vfprintf | |
508 | # define wxVprintf vprintf | |
509 | # define wxVsscanf vsscanf | |
510 | # define wxVsprintf vsprintf | |
511 | # undef wxNEED_WX_STDIO_H | |
512 | # endif | |
513 | ||
514 | # ifdef wxNEED_WX_STDLIB_H | |
515 | # define wxAtof atof | |
516 | # define wxAtoi atoi | |
517 | # define wxAtol atol | |
518 | # define wxGetenv getenv | |
519 | # define wxSystem system | |
520 | # undef wxNEED_WX_STDLIB_H | |
521 | # endif | |
522 | ||
523 | # ifdef wxNEED_WX_TIME_H | |
524 | # define wxAsctime asctime | |
525 | # define wxCtime ctime | |
526 | # define wxStrftime strftime | |
527 | # undef wxNEED_WX_TIME_H | |
528 | # endif | |
853d7d3d | 529 | #endif //!Unicode |
e35d0039 | 530 | |
191ab39a | 531 | // checks whether the passed in pointer is NULL and if the string is empty |
6d56eb5c | 532 | inline bool wxIsEmpty(const wxChar *p) { return !p || !*p; } |
e35d0039 | 533 | |
853d7d3d | 534 | #ifndef wxNEED_WX_STRING_H |
191ab39a | 535 | // safe version of strlen() (returns 0 if passed NULL pointer) |
6d56eb5c | 536 | inline size_t wxStrlen(const wxChar *psz) |
853d7d3d | 537 | { return psz ? wxStrlen_(psz) : 0; } |
34f9227c | 538 | #endif |
e35d0039 | 539 | |
81d425f6 | 540 | #if wxUSE_WCHAR_T |
e97a90f0 | 541 | // multibyte<->widechar conversion |
49828363 RD |
542 | WXDLLEXPORT size_t wxMB2WC(wchar_t *buf, const char *psz, size_t n); |
543 | WXDLLEXPORT size_t wxWC2MB(char *buf, const wchar_t *psz, size_t n); | |
1777b9bb DW |
544 | # if wxUSE_UNICODE |
545 | # define wxMB2WX wxMB2WC | |
546 | # define wxWX2MB wxWC2MB | |
547 | # define wxWC2WX wxStrncpy | |
548 | # define wxWX2WC wxStrncpy | |
549 | # else | |
550 | # define wxMB2WX wxStrncpy | |
551 | # define wxWX2MB wxStrncpy | |
552 | # define wxWC2WX wxWC2MB | |
553 | # define wxWX2WC wxMB2WC | |
554 | # endif | |
0f3e3e0c JS |
555 | #else |
556 | // No wxUSE_WCHAR_T: we have to do something (JACS) | |
1777b9bb DW |
557 | # define wxMB2WC wxStrncpy |
558 | # define wxWC2MB wxStrncpy | |
559 | # define wxMB2WX wxStrncpy | |
560 | # define wxWX2MB wxStrncpy | |
561 | # define wxWC2WX wxWC2MB | |
562 | # define wxWX2WC wxMB2WC | |
81d425f6 | 563 | #endif |
0f3e3e0c | 564 | |
49828363 | 565 | WXDLLEXPORT bool wxOKlibc(); // for internal use |
e97a90f0 OK |
566 | |
567 | // if libc versions are not available, use replacements defined in wxchar.cpp | |
568 | #ifndef wxStrdup | |
49828363 | 569 | WXDLLEXPORT wxChar * wxStrdup(const wxChar *psz); |
e97a90f0 OK |
570 | #endif |
571 | ||
0841bffa | 572 | #ifndef wxStricmp |
49828363 | 573 | WXDLLEXPORT int wxStricmp(const wxChar *psz1, const wxChar *psz2); |
0841bffa OK |
574 | #endif |
575 | ||
e766c8a9 SC |
576 | #ifndef wxStrnicmp |
577 | WXDLLEXPORT int wxStrnicmp(const wxChar *psz1, const wxChar *psz2, size_t len); | |
578 | #endif | |
579 | ||
e97a90f0 | 580 | #ifndef wxStrtok |
49828363 | 581 | WXDLLEXPORT wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr); |
e97a90f0 OK |
582 | #endif |
583 | ||
584 | #ifndef wxSetlocale | |
f3773655 | 585 | class wxWCharBuffer; |
191ab39a | 586 | WXDLLEXPORT wxWCharBuffer wxSetlocale(int category, const wxChar *locale); |
e97a90f0 | 587 | #endif |
853d7d3d | 588 | |
57f6da0d | 589 | #ifdef wxNEED_WX_CTYPE_H |
49828363 RD |
590 | WXDLLEXPORT int wxIsalnum(wxChar ch); |
591 | WXDLLEXPORT int wxIsalpha(wxChar ch); | |
592 | WXDLLEXPORT int wxIsctrl(wxChar ch); | |
593 | WXDLLEXPORT int wxIsdigit(wxChar ch); | |
594 | WXDLLEXPORT int wxIsgraph(wxChar ch); | |
595 | WXDLLEXPORT int wxIslower(wxChar ch); | |
596 | WXDLLEXPORT int wxIsprint(wxChar ch); | |
597 | WXDLLEXPORT int wxIspunct(wxChar ch); | |
598 | WXDLLEXPORT int wxIsspace(wxChar ch); | |
599 | WXDLLEXPORT int wxIsupper(wxChar ch); | |
600 | WXDLLEXPORT int wxIsxdigit(wxChar ch); | |
601 | WXDLLEXPORT int wxTolower(wxChar ch); | |
602 | WXDLLEXPORT int wxToupper(wxChar ch); | |
57f6da0d OK |
603 | #endif |
604 | ||
853d7d3d | 605 | #ifdef wxNEED_WX_STRING_H |
49828363 RD |
606 | WXDLLEXPORT wxChar * wxStrcat(wxChar *dest, const wxChar *src); |
607 | WXDLLEXPORT wxChar * wxStrchr(const wxChar *s, wxChar c); | |
608 | WXDLLEXPORT int wxStrcmp(const wxChar *s1, const wxChar *s2); | |
609 | WXDLLEXPORT int wxStrcoll(const wxChar *s1, const wxChar *s2); | |
610 | WXDLLEXPORT wxChar * wxStrcpy(wxChar *dest, const wxChar *src); | |
611 | WXDLLEXPORT size_t wxStrcspn(const wxChar *s, const wxChar *reject); | |
612 | WXDLLEXPORT size_t wxStrlen(const wxChar *s); | |
613 | WXDLLEXPORT wxChar * wxStrncat(wxChar *dest, const wxChar *src, size_t n); | |
614 | WXDLLEXPORT int wxStrncmp(const wxChar *s1, const wxChar *s2, size_t n); | |
615 | WXDLLEXPORT wxChar * wxStrncpy(wxChar *dest, const wxChar *src, size_t n); | |
616 | WXDLLEXPORT wxChar * wxStrpbrk(const wxChar *s, const wxChar *accept); | |
617 | WXDLLEXPORT wxChar * wxStrrchr(const wxChar *s, wxChar c); | |
618 | WXDLLEXPORT size_t wxStrspn(const wxChar *s, const wxChar *accept); | |
619 | WXDLLEXPORT wxChar * wxStrstr(const wxChar *haystack, const wxChar *needle); | |
620 | WXDLLEXPORT double wxStrtod(const wxChar *nptr, wxChar **endptr); | |
621 | WXDLLEXPORT long int wxStrtol(const wxChar *nptr, wxChar **endptr, int base); | |
622 | WXDLLEXPORT unsigned long int wxStrtoul(const wxChar *nptr, wxChar **endptr, int base); | |
623 | WXDLLEXPORT size_t wxStrxfrm(wxChar *dest, const wxChar *src, size_t n); | |
853d7d3d OK |
624 | #endif |
625 | ||
e97a90f0 | 626 | #ifdef wxNEED_WX_STDIO_H |
1777b9bb DW |
627 | # include <stdio.h> |
628 | # include <stdarg.h> | |
e385b3ff OK |
629 | WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode); |
630 | WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream); | |
f6bcfd97 BP |
631 | WXDLLEXPORT int wxRemove(const wxChar *path); |
632 | WXDLLEXPORT int wxRename(const wxChar *oldpath, const wxChar *newpath); | |
49828363 RD |
633 | WXDLLEXPORT int wxPrintf(const wxChar *fmt, ...); |
634 | WXDLLEXPORT int wxVprintf(const wxChar *fmt, va_list argptr); | |
635 | WXDLLEXPORT int wxFprintf(FILE *stream, const wxChar *fmt, ...); | |
636 | WXDLLEXPORT int wxVfprintf(FILE *stream, const wxChar *fmt, va_list argptr); | |
637 | WXDLLEXPORT int wxSprintf(wxChar *buf, const wxChar *fmt, ...); | |
638 | WXDLLEXPORT int wxVsprintf(wxChar *buf, const wxChar *fmt, va_list argptr); | |
639 | WXDLLEXPORT int wxSscanf(const wxChar *buf, const wxChar *fmt, ...); | |
640 | WXDLLEXPORT int wxVsscanf(const wxChar *buf, const wxChar *fmt, va_list argptr); | |
e97a90f0 OK |
641 | #endif |
642 | ||
a982ddd2 | 643 | #ifndef wxAtof |
49828363 | 644 | WXDLLEXPORT double wxAtof(const wxChar *psz); |
a982ddd2 OK |
645 | #endif |
646 | ||
647 | #ifdef wxNEED_WX_STDLIB_H | |
49828363 RD |
648 | WXDLLEXPORT int wxAtoi(const wxChar *psz); |
649 | WXDLLEXPORT long wxAtol(const wxChar *psz); | |
650 | WXDLLEXPORT wxChar * wxGetenv(const wxChar *name); | |
651 | WXDLLEXPORT int wxSystem(const wxChar *psz); | |
639a9fb5 OK |
652 | #endif |
653 | ||
e385b3ff OK |
654 | #ifdef wxNEED_WX_TIME_H |
655 | WXDLLEXPORT size_t wxStrftime(wxChar *s, size_t max, const wxChar *fmt, const struct tm *tm); | |
656 | #endif | |
657 | ||
18c50997 VZ |
658 | // under VC++ 6.0 isspace() returns 1 for 8 bit chars which completely breaks |
659 | // the file parsing - this may be true for 5.0 as well, update #ifdef then | |
660 | #if defined(__VISUALC__) && (__VISUALC__ >= 1200) && !wxUSE_UNICODE | |
661 | #undef wxIsspace | |
662 | #define wxIsspace(c) ((((unsigned)c) < 128) && isspace(c)) | |
663 | #endif // VC++ | |
664 | ||
f6bcfd97 BP |
665 | // ---------------------------------------------------------------------------- |
666 | // common macros which are always defined | |
667 | // ---------------------------------------------------------------------------- | |
668 | ||
cdb51680 VZ |
669 | // although global macros with such names are really bad, we want to have |
670 | // another name for _T() which should be used to avoid confusion between _T() | |
671 | // and _() in wxWindows sources | |
223d09f6 | 672 | #define wxT(x) _T(x) |
cdb51680 | 673 | |
3f562374 | 674 | // Unicode-friendly __FILE__, __DATE__ and __TIME__ analogs |
e90c1d2a | 675 | #ifndef __TFILE__ |
223d09f6 | 676 | #define __XFILE__(x) wxT(x) |
e90c1d2a VZ |
677 | #define __TFILE__ __XFILE__(__FILE__) |
678 | #endif | |
679 | ||
3f562374 VZ |
680 | #ifndef __TDATE__ |
681 | #define __XDATE__(x) wxT(x) | |
682 | #define __TDATE__ __XDATE__(__DATE__) | |
683 | #endif | |
684 | ||
685 | #ifndef __TTIME__ | |
686 | #define __XTIME__(x) wxT(x) | |
687 | #define __TTIME__ __XTIME__(__TIME__) | |
688 | #endif | |
689 | ||
e35d0039 JS |
690 | #endif |
691 | //_WX_WXCHAR_H_ | |
1777b9bb | 692 |