]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/platform.h
3 * Purpose: define the OS and compiler identification macros
4 * Author: Vadim Zeitlin
6 * Created: 29.10.01 (extracted from wx/defs.h)
8 * Copyright: (c) 1997-2001 Vadim Zeitlin
9 * Licence: wxWindows licence
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
14 #ifndef _WX_PLATFORM_H_
15 #define _WX_PLATFORM_H_
19 Codewarrior doesn't define any Windows symbols until some headers
28 __WXMAC_CLASSIC__ means ppc non-carbon builds, __WXMAC_CARBON__ means
29 carbon API available (mach or cfm builds) , __WXMAC_OSX__ means mach-o
30 builds, running under 10.2 + only
33 # if defined(__MACH__)
34 # define __WXMAC_OSX__
35 # define __WXMAC_CARBON__
36 # ifdef __WXMAC_XCODE__
38 # include "wx/mac/carbon/config_xcode.h"
42 # define __WXMAC_CARBON__
44 # define __WXMAC_CLASSIC__
50 __WXOSX__ is a common define to wxMac (Carbon) and wxCocoa ports under OS X.
52 #if defined(__WXMAC_OSX__) || defined(__WXCOCOA__)
57 first define Windows symbols if they're not defined on the command line: we
58 can autodetect everything we need if _WIN32 is defined
60 #if defined(__CYGWIN__) && defined(__WINDOWS__)
74 #if defined(__PALMOS__)
98 a lot of code (mistakenly) uses #ifdef _WIN32 to either test for
99 Windows or to test for !__WIN16__, so we must define _WIN32 for
100 Win64 as well to ensure that the existing code continues to work.
103 # endif /* !_WIN32 */
107 # endif /* !__WIN64__ */
110 #if (defined(_WIN32) || defined(WIN32) || defined(__NT__) || defined(__WXWINCE__)) \
111 && !defined(__WXMOTIF__) && !defined(__WXGTK__) && !defined(__WXX11__)
121 #if defined(__WXMSW__) || defined(__WIN32__)
122 # if !defined(__WINDOWS__)
127 /* detect MS SmartPhone */
128 #if defined( WIN32_PLATFORM_WFSP )
129 # ifndef __SMARTPHONE__
130 # define __SMARTPHONE__
137 /* detect PocketPC */
138 #if defined( WIN32_PLATFORM_PSPC )
139 # ifndef __POCKETPC__
140 # define __POCKETPC__
147 /* detect Standard WinCE SDK */
148 #if defined( WCE_PLATFORM_STANDARDSDK )
149 # ifndef __WINCE_STANDARDSDK__
150 # define __WINCE_STANDARDSDK__
157 #if defined(_WIN32_WCE) && !defined(WIN32_PLATFORM_WFSP) && !defined(WIN32_PLATFORM_PSPC)
158 # if (_WIN32_WCE >= 400)
159 # ifndef __WINCE_NET__
160 # define __WINCE_NET__
162 # elif (_WIN32_WCE >= 200)
163 # ifndef __HANDHELDPC__
164 # define __HANDHELDPC__
173 Include wx/setup.h for the Unix platform defines generated by configure and
174 the library compilation options
176 Note that it must be included before defining hardware symbols below as they
177 could be already defined by configure
179 #include "wx/setup.h"
182 Hardware platform detection.
184 VC++ defines _M_xxx symbols.
186 #if defined(_M_IX86) || defined(i386) || defined(__i386) || defined(__i386__)
198 #if defined(_M_MPPC) || defined(__PPC__)
204 #if defined(_M_ALPHA) || defined(__AXP__)
212 adjust the Unicode setting: wxUSE_UNICODE should be defined as 0 or 1
213 and is used by wxWidgets, _UNICODE and/or UNICODE may be defined or used by
214 the system headers so bring these settings in sync
217 /* set wxUSE_UNICODE to 1 if UNICODE or _UNICODE is defined */
218 #if defined(_UNICODE) || defined(UNICODE)
219 # undef wxUSE_UNICODE
220 # define wxUSE_UNICODE 1
222 # ifndef wxUSE_UNICODE
223 # define wxUSE_UNICODE 0
225 #endif /* UNICODE/!UNICODE */
227 /* and vice versa: define UNICODE and _UNICODE if wxUSE_UNICODE is 1 */
235 #endif /* wxUSE_UNICODE */
237 #if defined( __MWERKS__ ) && !defined(__INTEL__)
238 /* otherwise MSL headers bring in WIN32 dependant APIs */
244 This macro can be used to test the Open Watcom version.
247 # define wxWATCOM_VERSION(major,minor) 0
248 # define wxCHECK_WATCOM_VERSION(major,minor) 0
249 # define wxONLY_WATCOM_EARLIER_THAN(major,minor) 0
250 #elif defined(__WATCOMC__) && __WATCOMC__ < 1200
251 # error "Only Open Watcom is supported in this release"
253 # define wxWATCOM_VERSION(major,minor) ( major * 100 + minor * 10 + 1100 )
254 # define wxCHECK_WATCOM_VERSION(major,minor) ( __WATCOMC__ >= wxWATCOM_VERSION(major,minor) )
255 # define wxONLY_WATCOM_EARLIER_THAN(major,minor) ( __WATCOMC__ < wxWATCOM_VERSION(major,minor) )
259 check the consistency of the settings in setup.h: note that this must be
260 done after setting wxUSE_UNICODE correctly as it is used in wx/chkconf.h
262 #include "wx/chkconf.h"
266 some compilers don't support iostream.h any longer, while some of theme
267 are not updated with <iostream> yet, so override the users setting here
270 #if defined(_MSC_VER) && (_MSC_VER >= 1310)
271 # undef wxUSE_IOSTREAMH
272 # define wxUSE_IOSTREAMH 0
273 #elif defined(__DMC__) || defined(__WATCOMC__)
274 # undef wxUSE_IOSTREAMH
275 # define wxUSE_IOSTREAMH 1
276 #elif defined(__MINGW32__)
277 # undef wxUSE_IOSTREAMH
278 # define wxUSE_IOSTREAMH 0
279 #endif /* compilers with/without iostream.h */
282 old C++ headers (like <iostream.h>) declare classes in the global namespace
283 while the new, standard ones (like <iostream>) do it in std:: namespace,
284 unless it's an old gcc version.
286 using this macro allows constuctions like "wxSTD iostream" to work in
289 #if !wxUSE_IOSTREAMH && (!defined(__GNUC__) || ( __GNUC__ > 2 ) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
296 OS: first of all, test for MS-DOS platform. We must do this before testing
297 for Unix, because DJGPP compiler defines __unix__ under MS-DOS
299 #if defined(__GO32__) || defined(__DJGPP__) || defined(__DOS__)
303 /* size_t is the same as unsigned int for Watcom 11 compiler, */
304 /* so define it if it hadn't been done by configure yet */
305 # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
307 # define wxSIZE_T_IS_UINT
310 # define wxSIZE_T_IS_ULONG
315 OS: then test for generic Unix defines, then for particular flavours and
316 finally for Unix-like systems
318 #elif defined(__UNIX__) || defined(__unix) || defined(__unix__) || \
319 defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \
320 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
321 defined(__EMX__) || defined(__VMS) || defined(__BEOS__)
323 # define __UNIX_LIKE__
325 /* Helps SGI compilation, apparently */
328 # define __need_wchar_t
331 Note I use the term __SGI_CC__ for both cc and CC, its not a good
332 idea to mix gcc and cc/CC, the name mangling is different
335 # endif /* gcc/!gcc */
337 /* system headers use this symbol and not __cplusplus in some places */
338 # ifndef _LANGUAGE_C_PLUS_PLUS
339 # define _LANGUAGE_C_PLUS_PLUS
343 # if defined(sun) || defined(__SUN__)
352 # define OS2EMX_PLAIN_CHAR
355 /* define __HPUX__ for HP-UX where standard macro is __hpux */
356 # if defined(__hpux) && !defined(__HPUX__)
360 # if defined(__CYGWIN__) || defined(__WINE__)
361 # if !defined(wxSIZE_T_IS_UINT)
362 # define wxSIZE_T_IS_UINT
365 #elif defined(applec) || \
366 defined(THINK_C) || \
367 (defined(__MWERKS__) && !defined(__INTEL__))
369 # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
370 # define wxSIZE_T_IS_ULONG
372 #elif defined(__WXMAC__) && defined(__APPLE__)
374 # define __UNIX_LIKE__
377 These defines are needed when compiling using Project Builder
378 with a non generated setup0.h
387 # define __DARWIN__ 1
390 # define __POWERPC__ 1
392 # ifndef TARGET_CARBON
393 # define TARGET_CARBON 1
396 # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
397 # define wxSIZE_T_IS_ULONG
400 Some code has been added to workaround defects(?) in the
401 bundled gcc compiler. These corrections are identified by
402 __DARWIN__ for Darwin related corrections (wxMac, wxMotif)
404 #elif defined(__OS2__)
406 /* wxOS2 vs. non wxOS2 ports on OS2 platform */
407 # if !defined(__WXMOTIF__) && !defined(__WXGTK__) && !defined(__WXX11__)
413 # if defined(__IBMCPP__)
414 # define __VISAGEAVER__ __IBMCPP__
417 /* Place other OS/2 compiler environment defines here */
418 # if defined(__VISAGECPP__)
419 /* VisualAge is the only thing that understands _Optlink */
420 # define LINKAGEMODE _Optlink
422 # define wxSIZE_T_IS_UINT
424 #elif defined(__PALMOS__)
426 # error "__WIN32__ should not be defined for PalmOS"
429 # error "__WINDOWS__ should not be defined for PalmOS"
432 # error "__WXMSW__ should not be defined for PalmOS"
438 # endif /* Windows */
440 /* to be changed for Win64! */
442 # error "__WIN32__ should be defined for Win32 and Win64, Win16 is not supported"
446 define another standard symbol for Microsoft Visual C++: the standard
447 one (_MSC_VER) is also defined by Metrowerks compiler
449 # if defined(_MSC_VER) && !defined(__MWERKS__)
450 # define __VISUALC__ _MSC_VER
451 # elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
452 # define __BORLANDC__
453 # elif defined(__WATCOMC__)
454 # elif defined(__SC__)
455 # define __SYMANTECC__
456 # endif /* compiler */
458 /* size_t is the same as unsigned int for all Windows compilers we know, */
459 /* so define it if it hadn't been done by configure yet */
460 # if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
461 # define wxSIZE_T_IS_UINT
466 if we're on a Unix system but didn't use configure (so that setup.h didn't
467 define __UNIX__), do define __UNIX__ now
469 #if !defined(__UNIX__) && defined(__UNIX_LIKE__)
473 #if defined(__WXMOTIF__) || defined(__WXX11__)
479 # define __DIGITALMARS__
481 # define __SYMANTEC__
485 #ifdef __INTEL_COMPILER
490 We get "Large Files (ILP32) not supported in strict ANSI mode." #error
491 from HP-UX standard headers when compiling with g++ without this:
493 #if defined(__HPUX__) && !defined(__STDC_EXT__)
494 # define __STDC_EXT__ 1
497 /* Force linking against required libraries under Windows: */
499 # include "wx/msw/wince/libraries.h"
500 #elif defined __WINDOWS__
501 # include "wx/msw/libraries.h"
505 This macro can be used to test the gcc version and can be used like this:
507 # if wxCHECK_GCC_VERSION(3, 1)
508 ... we have gcc 3.1 or later ...
510 ... no gcc at all or gcc < 3.1 ...
513 #define wxCHECK_GCC_VERSION( major, minor ) \
514 ( defined(__GNUC__) && defined(__GNUC_MINOR__) \
515 && ( ( __GNUC__ > (major) ) \
516 || ( __GNUC__ == (major) && __GNUC_MINOR__ >= (minor) ) ) )
519 This macro can be used to check that the version of mingw32 compiler is
522 #if ( defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || \
523 ( defined( __CYGWIN__ ) && defined( __WINDOWS__ ) ) || \
524 wxCHECK_WATCOM_VERSION(1,0) ) && \
525 !defined(__DOS__) && \
526 !defined(__WXPM__) && \
527 !defined(__WXMOTIF__) && \
528 !defined(__WXGTK__) && \
529 !defined(__WXX11__) && \
530 !defined(__WXPALMOS__)
531 # include "wx/msw/gccpriv.h"
533 # undef wxCHECK_W32API_VERSION
534 # define wxCHECK_W32API_VERSION(maj, min) (0)
537 #if defined (__WXMSW__)
538 # if !defined(__WATCOMC__)
539 # define wxHAVE_RAW_BITMAP
543 #if defined (__WXMAC__)
544 # if ( !defined(__MACH__) || ( defined(__BIG_ENDIAN__) && __BIG_ENDIAN__ ) )
545 # define WORDS_BIGENDIAN 1
547 # undef WORDS_BIGENDIAN
551 /* Choose which method we will use for updating menus
552 * - in OnIdle, or when we receive a wxEVT_MENU_OPEN event.
553 * Presently, only Windows and GTK+ support wxEVT_MENU_OPEN.
555 #ifndef wxUSE_IDLEMENUUPDATES
556 # if (defined(__WXMSW__) || defined(__WXGTK__)) && !defined(__WXUNIVERSAL__)
557 # define wxUSE_IDLEMENUUPDATES 0
559 # define wxUSE_IDLEMENUUPDATES 1
564 * Define symbols that are not yet in
565 * configure or possibly some setup.h files.
566 * They will need to be added.
569 #ifndef wxUSE_FILECONFIG
571 # define wxUSE_FILECONFIG 1
573 # define wxUSE_FILECONFIG 0
578 # define wxUSE_HOTKEY 0
581 #if !defined(wxUSE_WXDIB) && defined(__WXMSW__)
582 # define wxUSE_WXDIB 1
586 We need AvailabilityMacros.h for ifdefing out things that don't exist on
588 FIXME: We need a better way to detect for 10.3 then including a system header
591 #include <AvailabilityMacros.h>
594 #endif /* _WX_PLATFORM_H_ */