Source changes needed to get MDI support compiling on OS X Cocoa, and a explicit...
[wxWidgets.git] / include / wx / osx / cocoa / chkconf.h
1 /*
2 * Name: wx/osx/cocoa/chkconf.h
3 * Purpose: Compiler-specific configuration checking
4 * Author: Stefan Csomor
5 * Modified by:
6 * Created: 2008-07-30
7 * RCS-ID: $Id: chkconf.h 54833 2008-07-29 21:03:18Z SC $
8 * Copyright: (c) Stefan Csomor
9 * Licence: wxWindows licence
10 */
11
12 #ifndef _WX_OSX_COCOA_CHKCONF_H_
13 #define _WX_OSX_COCOA_CHKCONF_H_
14
15 /*
16 * native (1) or emulated (0) toolbar
17 */
18
19 #ifndef wxOSX_USE_NATIVE_TOOLBAR
20 #define wxOSX_USE_NATIVE_TOOLBAR 1
21 #endif
22
23 /*
24 * text rendering system
25 */
26
27 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
28
29 #define wxOSX_USE_CORE_TEXT 1
30 #define wxOSX_USE_ATSU_TEXT 0
31
32 #else // platform < 10.5
33
34 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
35 #define wxOSX_USE_CORE_TEXT 1
36 #else
37 #define wxOSX_USE_CORE_TEXT 0
38 #endif
39 #define wxOSX_USE_ATSU_TEXT 1
40
41 #endif
42
43 /*
44 * turning off capabilities that don't work under cocoa yet
45 */
46
47 #if wxUSE_DRAG_AND_DROP
48 #undef wxUSE_DRAG_AND_DROP
49 #define wxUSE_DRAG_AND_DROP 0
50 #endif
51
52 #if wxUSE_TASKBARICON
53 #undef wxUSE_TASKBARICON
54 #define wxUSE_TASKBARICON 0
55 #endif
56
57 #if wxUSE_TOOLTIPS
58 #undef wxUSE_TOOLTIPS
59 #define wxUSE_TOOLTIPS 0
60 #endif
61
62 #if wxUSE_DATAVIEWCTRL
63 #undef wxUSE_DATAVIEWCTRL
64 #define wxUSE_DATAVIEWCTRL 0
65 #endif
66
67 #if wxUSE_WXHTML_HELP
68 #undef wxUSE_WXHTML_HELP
69 #endif
70
71 #define wxUSE_WXHTML_HELP 0
72
73 #endif
74 /* _WX_MAC_CHKCONF_H_ */
75