]>
Commit | Line | Data |
---|---|---|
e0c749a7 RN |
1 | /** |
2 | * Name: wx/platform.h | |
3 | * Purpose: define the OS and compiler identification macros | |
4 | * Author: Vadim Zeitlin | |
5 | * Modified by: | |
6 | * Created: 29.10.01 (extracted from wx/defs.h) | |
7 | * RCS-ID: $Id$ | |
8 | * Copyright: (c) 1997-2001 wxWindows team | |
9 | * Licence: wxWindows licence | |
10 | */ | |
78340847 VZ |
11 | |
12 | /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */ | |
13 | ||
14 | #ifndef _WX_PLATFORM_H_ | |
15 | #define _WX_PLATFORM_H_ | |
16 | ||
a203834e MB |
17 | |
18 | /* | |
19 | Codewarrior doesn't define any Windows symbols until some headers | |
20 | are included | |
21 | */ | |
22 | #if __MWERKS__ | |
ef620df0 | 23 | # include <stddef.h> |
a203834e MB |
24 | #endif |
25 | ||
78340847 VZ |
26 | /* |
27 | first define Windows symbols if they're not defined on the command line: we | |
28 | can autodetect everything we need if _WIN32 is defined | |
29 | */ | |
d66dcb60 MB |
30 | #if defined(__CYGWIN32__) && !defined(__WXMOTIF__) && !defined(__WXGTK__) \ |
31 | && !defined(__WXX11__) | |
32 | /* for Cygwin, default to wxMSW unless otherwise specified */ | |
ef620df0 VZ |
33 | # ifndef __WXMSW__ |
34 | # define __WXMSW__ | |
35 | # endif | |
d66dcb60 | 36 | |
ef620df0 VZ |
37 | # ifndef _WIN32 |
38 | # define _WIN32 | |
39 | # endif | |
d66dcb60 | 40 | |
ef620df0 VZ |
41 | # ifndef WIN32 |
42 | # define WIN32 | |
43 | # endif | |
d66dcb60 MB |
44 | #endif |
45 | ||
ef620df0 VZ |
46 | #if defined(_WIN64) |
47 | # ifndef _WIN32 | |
48 | /* | |
49 | a lot of code (mistakenly) uses #ifdef _WIN32 to either test for | |
50 | Windows or to test for !__WIN16__, so we must define _WIN32 for | |
51 | Win64 as well to ensure that the existing code continues to work. | |
52 | */ | |
53 | # define _WIN32 | |
54 | # endif /* !_WIN32 */ | |
55 | ||
56 | # ifndef __WIN64__ | |
57 | # define __WIN64__ | |
58 | # endif /* !__WIN64__ */ | |
59 | #endif /* _WIN64 */ | |
60 | ||
158b6688 | 61 | #if defined(_WIN32) || defined(WIN32) || defined(__NT__) || defined(__WXWINCE__) |
ef620df0 VZ |
62 | # ifndef __WXMSW__ |
63 | # define __WXMSW__ | |
64 | # endif | |
78340847 | 65 | |
ef620df0 VZ |
66 | # ifndef __WIN32__ |
67 | # define __WIN32__ | |
68 | # endif | |
78340847 | 69 | |
7863fab4 VZ |
70 | /* |
71 | see MSDN for the description of possible WINVER values, this one is a | |
72 | good default and, anyhow, we check for most of the features we use | |
73 | during run-time. | |
74 | */ | |
ef620df0 VZ |
75 | # ifndef WINVER |
76 | # define WINVER 0x0400 | |
77 | # endif | |
7863fab4 | 78 | |
78340847 | 79 | /* Win95 means Win95-style UI, i.e. Win9x/NT 4+ */ |
ef620df0 VZ |
80 | # if !defined(__WIN95__) && (WINVER >= 0x0400) |
81 | # define __WIN95__ | |
82 | # endif | |
78340847 VZ |
83 | #endif /* Win32 */ |
84 | ||
85 | #if defined(__WXMSW__) || defined(__WIN32__) | |
ef620df0 VZ |
86 | # if !defined(__WINDOWS__) |
87 | # define __WINDOWS__ | |
88 | # endif | |
78340847 VZ |
89 | #endif |
90 | ||
b4da152e | 91 | #ifdef __WINE__ |
ef620df0 VZ |
92 | # ifndef __WIN95__ |
93 | # define __WIN95__ | |
94 | # endif | |
78340847 VZ |
95 | #endif /* WINE */ |
96 | ||
78340847 VZ |
97 | /* |
98 | Include wx/setup.h for the Unix platform defines generated by configure and | |
99 | the library compilation options | |
100 | */ | |
101 | #include "wx/setup.h" | |
102 | ||
103 | /* check the consistency of the settings in setup.h */ | |
104 | #include "wx/chkconf.h" | |
105 | ||
63e7198b VZ |
106 | /* |
107 | adjust the Unicode setting: wxUSE_UNICODE should be defined as 0 or 1 | |
108 | and is used by wxWindows, _UNICODE and/or UNICODE may be defined or used by | |
109 | the system headers so bring these settings in sync | |
110 | */ | |
111 | ||
112 | /* set wxUSE_UNICODE to 1 if UNICODE or _UNICODE is defined */ | |
113 | #if defined(_UNICODE) || defined(UNICODE) | |
114 | # undef wxUSE_UNICODE | |
115 | # define wxUSE_UNICODE 1 | |
116 | #else /* !UNICODE */ | |
117 | # ifndef wxUSE_UNICODE | |
118 | # define wxUSE_UNICODE 0 | |
119 | # endif | |
120 | #endif /* UNICODE/!UNICODE */ | |
121 | ||
122 | /* and vice versa: define UNICODE and _UNICODE if wxUSE_UNICODE is 1 */ | |
123 | #if wxUSE_UNICODE | |
124 | # ifndef _UNICODE | |
125 | # define _UNICODE | |
126 | # endif | |
127 | # ifndef UNICODE | |
128 | # define UNICODE | |
129 | # endif | |
130 | #endif /* wxUSE_UNICODE */ | |
131 | ||
132 | ||
eb382f3e | 133 | /* |
fb21f36d CE |
134 | some compilers don't support iostream.h any longer, while some of theme |
135 | are not updated with <iostream> yet, so override the users setting here | |
136 | in such case. | |
eb382f3e VZ |
137 | */ |
138 | #if defined(_MSC_VER) && (_MSC_VER >= 1310) | |
ef620df0 VZ |
139 | # undef wxUSE_IOSTREAMH |
140 | # define wxUSE_IOSTREAMH 0 | |
fb21f36d CE |
141 | #elif defined(__DMC__) |
142 | # undef wxUSE_IOSTREAMH | |
143 | # define wxUSE_IOSTREAMH 1 | |
eb382f3e VZ |
144 | #endif /* compilers not supporting iostream.h */ |
145 | ||
78340847 VZ |
146 | /* |
147 | old C++ headers (like <iostream.h>) declare classes in the global namespace | |
148 | while the new, standard ones (like <iostream>) do it in std:: namespace | |
149 | ||
150 | using this macro allows constuctions like "wxSTD iostream" to work in | |
151 | either case | |
152 | */ | |
153 | #if !wxUSE_IOSTREAMH | |
ef620df0 | 154 | # define wxSTD std:: |
78340847 | 155 | #else |
ef620df0 | 156 | # define wxSTD |
78340847 VZ |
157 | #endif |
158 | ||
159 | /* | |
865c589e VS |
160 | OS: first of all, test for MS-DOS platform. We must do this before testing |
161 | for Unix, because DJGPP compiler defines __unix__ under MS-DOS | |
162 | */ | |
163 | #if defined(__GO32__) || defined(__DJGPP__) || defined(__DOS__) | |
ef620df0 VZ |
164 | # ifndef __DOS__ |
165 | # define __DOS__ | |
166 | # endif | |
865c589e VS |
167 | /* size_t is the same as unsigned int for Watcom 11 compiler, */ |
168 | /* so define it if it hadn't been done by configure yet */ | |
ef620df0 VZ |
169 | # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG) |
170 | # ifdef __WATCOMC__ | |
171 | # define wxSIZE_T_IS_UINT | |
172 | # endif | |
173 | # ifdef __DJGPP__ | |
174 | # define wxSIZE_T_IS_ULONG | |
175 | # endif | |
176 | # endif | |
865c589e VS |
177 | |
178 | /* | |
179 | OS: then test for generic Unix defines, then for particular flavours and | |
78340847 VZ |
180 | finally for Unix-like systems |
181 | */ | |
865c589e VS |
182 | #elif defined(__UNIX__) || defined(__unix) || defined(__unix__) || \ |
183 | defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \ | |
184 | defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \ | |
185 | defined(__EMX__) || defined(__VMS) || defined(__BEOS__) | |
78340847 | 186 | |
ef620df0 | 187 | # define __UNIX_LIKE__ |
78340847 VZ |
188 | |
189 | /* Helps SGI compilation, apparently */ | |
ef620df0 VZ |
190 | # ifdef __SGI__ |
191 | # ifdef __GNUG__ | |
192 | # define __need_wchar_t | |
193 | # else /* !gcc */ | |
78340847 VZ |
194 | /* |
195 | Note I use the term __SGI_CC__ for both cc and CC, its not a good | |
196 | idea to mix gcc and cc/CC, the name mangling is different | |
197 | */ | |
ef620df0 VZ |
198 | # define __SGI_CC__ |
199 | # endif /* gcc/!gcc */ | |
200 | # endif /* SGI */ | |
201 | ||
202 | # if defined(sun) || defined(__SUN__) | |
203 | # ifndef __GNUG__ | |
204 | # ifndef __SUNCC__ | |
205 | # define __SUNCC__ | |
206 | # endif /* Sun CC */ | |
207 | # endif | |
208 | # endif /* Sun */ | |
209 | ||
210 | # ifdef __EMX__ | |
211 | # define OS2EMX_PLAIN_CHAR | |
7047ddc0 DW |
212 | # ifdef __INNOTEK_LIBC__ |
213 | # define wxSIZE_T_IS_UINT | |
214 | # endif | |
ef620df0 | 215 | # endif |
78340847 VZ |
216 | |
217 | /* define __HPUX__ for HP-UX where standard macro is __hpux */ | |
ef620df0 VZ |
218 | # if defined(__hpux) && !defined(__HPUX__) |
219 | # define __HPUX__ | |
220 | # endif /* HP-UX */ | |
221 | ||
222 | # if defined(__CYGWIN__) || defined(__WINE__) | |
223 | # if !defined(wxSIZE_T_IS_UINT) | |
224 | # define wxSIZE_T_IS_UINT | |
225 | # endif | |
226 | # endif | |
78340847 VZ |
227 | #elif defined(applec) || \ |
228 | defined(THINK_C) || \ | |
229 | (defined(__MWERKS__) && !defined(__INTEL__)) | |
230 | /* MacOS */ | |
ef620df0 VZ |
231 | # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG) |
232 | # define wxSIZE_T_IS_ULONG | |
233 | # endif | |
67087ab4 | 234 | #elif defined(__WXMAC__) && defined(__APPLE__) |
78340847 | 235 | /* Mac OS X */ |
ef620df0 | 236 | # define __UNIX_LIKE__ |
78340847 | 237 | |
67087ab4 GD |
238 | /* |
239 | These defines are needed when compiling using Project Builder | |
240 | with a non generated setup0.h | |
241 | */ | |
ef620df0 VZ |
242 | # ifndef __UNIX__ |
243 | # define __UNIX__ 1 | |
244 | # endif | |
245 | # ifndef __BSD__ | |
246 | # define __BSD__ 1 | |
247 | # endif | |
248 | # ifndef __DARWIN__ | |
249 | # define __DARWIN__ 1 | |
250 | # endif | |
251 | # ifndef __POWERPC__ | |
252 | # define __POWERPC__ 1 | |
253 | # endif | |
254 | # ifndef TARGET_CARBON | |
255 | # define TARGET_CARBON 1 | |
256 | # endif | |
257 | ||
258 | # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG) | |
259 | # define wxSIZE_T_IS_ULONG | |
260 | # endif | |
78340847 VZ |
261 | /* |
262 | Some code has been added to workaround defects(?) in the | |
67087ab4 GD |
263 | bundled gcc compiler. These corrections are identified by |
264 | __DARWIN__ for Darwin related corrections (wxMac, wxMotif) | |
78340847 | 265 | */ |
78340847 | 266 | #elif defined(__OS2__) |
ef620df0 VZ |
267 | # if defined(__IBMCPP__) |
268 | # define __VISAGEAVER__ __IBMCPP__ | |
269 | # endif | |
270 | # ifndef __WXOS2__ | |
271 | # define __WXOS2__ | |
272 | # endif | |
273 | # ifndef __WXPM__ | |
274 | # define __WXPM__ | |
275 | # endif | |
78340847 VZ |
276 | |
277 | /* Place other OS/2 compiler environment defines here */ | |
ef620df0 | 278 | # if defined(__VISAGECPP__) |
78340847 | 279 | /* VisualAge is the only thing that understands _Optlink */ |
ef620df0 VZ |
280 | # define LINKAGEMODE _Optlink |
281 | # endif | |
282 | # define wxSIZE_T_IS_UINT | |
c427acc8 | 283 | |
78340847 | 284 | #else /* Windows */ |
ef620df0 VZ |
285 | # ifndef __WINDOWS__ |
286 | # define __WINDOWS__ | |
287 | # endif /* Windows */ | |
78340847 VZ |
288 | |
289 | /* to be changed for Win64! */ | |
ef620df0 VZ |
290 | # ifndef __WIN32__ |
291 | # define __WIN16__ | |
292 | # endif | |
78340847 VZ |
293 | |
294 | /* | |
295 | define another standard symbol for Microsoft Visual C++: the standard | |
296 | one (_MSC_VER) is also defined by Metrowerks compiler | |
297 | */ | |
ef620df0 VZ |
298 | # if defined(_MSC_VER) && !defined(__MWERKS__) |
299 | # define __VISUALC__ _MSC_VER | |
300 | # elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__) | |
301 | # define __BORLANDC__ | |
302 | # elif defined(__WATCOMC__) | |
303 | # elif defined(__SC__) | |
304 | # define __SYMANTECC__ | |
305 | # endif /* compiler */ | |
78340847 VZ |
306 | |
307 | /* size_t is the same as unsigned int for all Windows compilers we know, */ | |
308 | /* so define it if it hadn't been done by configure yet */ | |
ef620df0 VZ |
309 | # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG) |
310 | # define wxSIZE_T_IS_UINT | |
311 | # endif | |
78340847 VZ |
312 | #endif /* OS */ |
313 | ||
314 | /* | |
315 | if we're on a Unix system but didn't use configure (so that setup.h didn't | |
316 | define __UNIX__), do define __UNIX__ now | |
317 | */ | |
318 | #if !defined(__UNIX__) && defined(__UNIX_LIKE__) | |
ef620df0 | 319 | # define __UNIX__ |
78340847 VZ |
320 | #endif /* Unix */ |
321 | ||
322 | #if defined(__HPUX__) && !defined(__WXGTK__) | |
ef620df0 VZ |
323 | # ifndef __WXMOTIF__ |
324 | # define __WXMOTIF__ | |
325 | # endif /* __WXMOTIF__ */ | |
78340847 VZ |
326 | #endif |
327 | ||
f79bd02d | 328 | #if defined(__WXMOTIF__) || defined(__WXX11__) |
ef620df0 | 329 | # define __X__ |
78340847 VZ |
330 | #endif |
331 | ||
4b41ab26 | 332 | #ifdef __SC__ |
ef620df0 VZ |
333 | # ifdef __DMC__ |
334 | # define __DIGITALMARS__ | |
335 | # else | |
336 | # define __SYMANTEC__ | |
337 | # endif | |
4b41ab26 VS |
338 | #endif |
339 | ||
44893b87 VZ |
340 | /* |
341 | This macro can be used to test the gcc version and can be used like this: | |
342 | ||
ef620df0 | 343 | # if wxCHECK_GCC_VERSION(3, 1) |
44893b87 | 344 | ... we have gcc 3.1 or later ... |
ef620df0 | 345 | # else |
44893b87 | 346 | ... no gcc at all or gcc < 3.1 ... |
ef620df0 | 347 | # endif |
44893b87 VZ |
348 | */ |
349 | #define wxCHECK_GCC_VERSION( major, minor ) \ | |
350 | ( defined(__GNUC__) && defined(__GNUC_MINOR__) \ | |
351 | && ( ( __GNUC__ > (major) ) \ | |
352 | || ( __GNUC__ == (major) && __GNUC_MINOR__ >= (minor) ) ) ) | |
353 | ||
78340847 VZ |
354 | /* |
355 | This macro can be used to check that the version of mingw32 compiler is | |
356 | at least maj.min | |
357 | */ | |
1c53456f | 358 | #if ( defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || \ |
ac776ec9 | 359 | defined( __CYGWIN__ ) || \ |
1c53456f VS |
360 | (defined(__WATCOMC__) && __WATCOMC__ >= 1200) ) && \ |
361 | !defined(__DOS__) | |
ef620df0 | 362 | # include "wx/msw/gccpriv.h" |
78340847 | 363 | #else |
ef620df0 VZ |
364 | # undef wxCHECK_W32API_VERSION |
365 | # define wxCHECK_W32API_VERSION(maj, min) (0) | |
78340847 VZ |
366 | #endif |
367 | ||
1e3c12d7 | 368 | #if defined (__WXMSW__) |
ef620df0 VZ |
369 | # if !defined(__WATCOMC__) |
370 | # define wxHAVE_RAW_BITMAP | |
371 | # endif | |
1e3c12d7 | 372 | #endif |
bf978f96 | 373 | |
01ebf752 | 374 | #if defined (__WXMAC__) |
ef620df0 VZ |
375 | # ifndef WORDS_BIGENDIAN |
376 | # define WORDS_BIGENDIAN 1 | |
377 | # endif | |
01ebf752 JS |
378 | #endif |
379 | ||
0b30bb0b JS |
380 | /* Choose which method we will use for updating menus |
381 | * - in OnIdle, or when we receive a wxEVT_MENU_OPEN event. | |
382 | * Presently, only Windows and GTK+ support wxEVT_MENU_OPEN. | |
383 | */ | |
384 | #ifndef wxUSE_IDLEMENUUPDATES | |
12c19488 | 385 | # if (defined(__WXMSW__) || defined(__WXGTK__)) && !defined(__WXUNIVERSAL__) |
ef620df0 VZ |
386 | # define wxUSE_IDLEMENUUPDATES 0 |
387 | # else | |
388 | # define wxUSE_IDLEMENUUPDATES 1 | |
389 | # endif | |
0b30bb0b JS |
390 | #endif |
391 | ||
5e967044 JS |
392 | /* |
393 | * Define symbols that are not yet in | |
394 | * configure or possibly some setup.h files. | |
395 | * They will need to be added. | |
396 | */ | |
397 | ||
398 | #ifndef wxUSE_FILECONFIG | |
ef620df0 VZ |
399 | # if wxUSE_CONFIG |
400 | # define wxUSE_FILECONFIG 1 | |
401 | # else | |
402 | # define wxUSE_FILECONFIG 0 | |
403 | # endif | |
5e967044 JS |
404 | #endif |
405 | ||
406 | #ifndef wxUSE_HOTKEY | |
ef620df0 | 407 | # define wxUSE_HOTKEY 0 |
5e967044 JS |
408 | #endif |
409 | ||
086b3a5b | 410 | #if !defined(wxUSE_WXDIB) && defined(__WXMSW__) |
ef620df0 | 411 | # define wxUSE_WXDIB 1 |
086b3a5b JS |
412 | #endif |
413 | ||
78340847 VZ |
414 | #endif /* _WX_PLATFORM_H_ */ |
415 |