]>
Commit | Line | Data |
---|---|---|
462a08f1 SC |
1 | /* |
2 | * Name: wx/osx/iphone/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_IPHONE_CHKCONF_H_ | |
13 | #define _WX_OSX_IPHONE_CHKCONF_H_ | |
14 | ||
15 | /* | |
16 | * text rendering system | |
17 | */ | |
18 | ||
19 | /* we have different options and we turn on all that make sense | |
20 | * under a certain platform | |
21 | */ | |
22 | ||
23 | #define wxOSX_USE_CORE_TEXT 0 | |
24 | #define wxOSX_USE_ATSU_TEXT 0 | |
25 | ||
26 | /* | |
27 | * turning off capabilities that don't work under iphone yet | |
28 | */ | |
29 | ||
30 | #if wxUSE_MDI | |
31 | #undef wxUSE_MDI | |
32 | #define wxUSE_MDI 0 | |
33 | #endif | |
34 | ||
35 | #if wxUSE_MDI_ARCHITECTURE | |
36 | #undef wxUSE_MDI_ARCHITECTURE | |
37 | #define wxUSE_MDI_ARCHITECTURE 0 | |
38 | #endif | |
39 | ||
40 | #if wxUSE_DRAG_AND_DROP | |
41 | #undef wxUSE_DRAG_AND_DROP | |
42 | #define wxUSE_DRAG_AND_DROP 0 | |
43 | #endif | |
44 | ||
45 | #if wxUSE_TASKBARICON | |
46 | #undef wxUSE_TASKBARICON | |
47 | #define wxUSE_TASKBARICON 0 | |
48 | #endif | |
49 | ||
50 | #if wxUSE_TOOLTIPS | |
51 | #undef wxUSE_TOOLTIPS | |
52 | #define wxUSE_TOOLTIPS 0 | |
53 | #endif | |
54 | ||
55 | #if wxUSE_DATAVIEWCTRL | |
56 | #undef wxUSE_DATAVIEWCTRL | |
57 | #define wxUSE_DATAVIEWCTRL 0 | |
58 | #endif | |
59 | ||
60 | #if wxUSE_DRAG_AND_DROP | |
61 | #undef wxUSE_DRAG_AND_DROP | |
62 | #define wxUSE_DRAG_AND_DROP 0 | |
63 | #endif | |
64 | ||
65 | #if wxUSE_TASKBARICON | |
66 | #undef wxUSE_TASKBARICON | |
67 | #define wxUSE_TASKBARICON 0 | |
68 | #endif | |
69 | ||
70 | /* | |
71 | #if wxUSE_POPUPWIN | |
72 | #undef wxUSE_POPUPWIN | |
73 | #define wxUSE_POPUPWIN 0 | |
74 | #endif | |
75 | ||
76 | #if wxUSE_COMBOBOX | |
77 | #undef wxUSE_COMBOBOX | |
78 | #define wxUSE_COMBOBOX 0 | |
79 | #endif | |
80 | ||
81 | ||
82 | #if wxUSE_MENUS | |
83 | #undef wxUSE_MENUS | |
84 | #define wxUSE_MENUS 0 | |
85 | #endif | |
86 | ||
87 | #if wxUSE_CALENDARCTRL | |
88 | #undef wxUSE_CALENDARCTRL | |
89 | #define wxUSE_CALENDARCTRL 0 | |
90 | #endif | |
91 | ||
92 | #if wxUSE_WXHTML_HELP | |
93 | #undef wxUSE_WXHTML_HELP | |
94 | #define wxUSE_WXHTML_HELP 0 | |
95 | #endif | |
96 | ||
97 | #if wxUSE_DOC_VIEW_ARCHITECTURE | |
98 | #undef wxUSE_DOC_VIEW_ARCHITECTURE | |
99 | #define wxUSE_DOC_VIEW_ARCHITECTURE 0 | |
100 | #endif | |
101 | ||
102 | #if wxUSE_PRINTING_ARCHITECTURE | |
103 | #undef wxUSE_PRINTING_ARCHITECTURE | |
104 | #define wxUSE_PRINTING_ARCHITECTURE 0 | |
105 | #endif | |
106 | ||
107 | */ | |
108 | ||
109 | #if wxUSE_CLIPBOARD | |
110 | #undef wxUSE_CLIPBOARD | |
111 | #define wxUSE_CLIPBOARD 0 | |
112 | #endif // wxUSE_CLIPBOARD | |
113 | ||
114 | #endif | |
115 | /* _WX_OSX_IPHONE_CHKCONF_H_ */ | |
116 |