]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/osx/cocoa/chkconf.h
   2  * Name:        wx/osx/cocoa/chkconf.h 
   3  * Purpose:     Compiler-specific configuration checking 
   4  * Author:      Stefan Csomor 
   7  * RCS-ID:      $Id: chkconf.h 54833 2008-07-29 21:03:18Z SC $ 
   8  * Copyright:   (c) Stefan Csomor 
   9  * Licence:     wxWindows licence 
  12 #ifndef _WX_OSX_COCOA_CHKCONF_H_ 
  13 #define _WX_OSX_COCOA_CHKCONF_H_ 
  16  * native (1) or emulated (0) toolbar 
  19 #ifndef wxOSX_USE_NATIVE_TOOLBAR 
  20     #define wxOSX_USE_NATIVE_TOOLBAR 1 
  24  * text rendering system 
  27 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 
  29     #define wxOSX_USE_CORE_TEXT 1 
  30     #define wxOSX_USE_ATSU_TEXT 0 
  32 #else // platform < 10.5 
  34     #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 
  35         #define wxOSX_USE_CORE_TEXT 1 
  37         #define wxOSX_USE_CORE_TEXT 0 
  39     #define wxOSX_USE_ATSU_TEXT 1 
  47 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 
  48     #define wxOSX_USE_QUICKTIME 0 
  49     #define wxOSX_USE_AUDIOTOOLBOX 1 
  50 #else // platform < 10.5 
  51     #define wxOSX_USE_QUICKTIME 1 
  52     #define wxOSX_USE_AUDIOTOOLBOX 0 
  56  * turning off capabilities that don't work under cocoa yet 
  60     /* _WX_MAC_CHKCONF_H_ */