]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/wince/chkconf.h
remove an unused pool of strings using wxStringList
[wxWidgets.git] / include / wx / msw / wince / chkconf.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/wince/chkconf.h
3 // Purpose: WinCE-specific configuration options checks
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 2005-03-07
7 // RCS-ID: $Id$
8 // Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MSW_WINCE_CHKCONF_H_
13 #define _WX_MSW_WINCE_CHKCONF_H_
14
15 // ----------------------------------------------------------------------------
16 // Disable features which don't work or don't make sense under CE
17 // ----------------------------------------------------------------------------
18
19 // please keep the list in alphabetic order except for closely related settings
20 // (e.g. wxUSE_ENH_METAFILE is put immediately after wxUSE_METAFILE)
21
22 #undef wxUSE_DEBUGREPORT
23 #define wxUSE_DEBUGREPORT 0
24
25 #if _WIN32_WCE < 400
26 // not enough API and lack of ddraw.h
27 #undef wxUSE_DISPLAY
28 #define wxUSE_DISPLAY 0
29 #endif
30
31 // wxFSVolume currently doesn't compile under CE and it's not clear if it makes
32 // sense at all there (the drives and their names are fixed on CE systems)
33 #undef wxUSE_FSVOLUME
34 #define wxUSE_FSVOLUME 0
35
36 // no .INI files API under CE
37 #undef wxUSE_INICONF
38 #define wxUSE_INICONF 0
39
40 // DDE doesn't exist under WinCE and wxIPC is DDE-based under MSW
41 #undef wxUSE_IPC
42 #define wxUSE_IPC 0
43
44 // doesn't make sense for CE devices and doesn't compile anyhow
45 #undef wxUSE_JOYSTICK
46 #define wxUSE_JOYSTICK 0
47
48 // libtiff doesn't build with eVC but is ok with VC8
49 #if !wxCHECK_VISUALC_VERSION(8)
50 #undef wxUSE_LIBTIFF
51 #define wxUSE_LIBTIFF 0
52 #endif
53
54 // no AUI under CE: it's unnecessary and currently doesn't compile
55 #undef wxUSE_AUI
56 #define wxUSE_AUI 0
57
58 // no MDI under CE
59 #undef wxUSE_MDI
60 #define wxUSE_MDI 0
61 #undef wxUSE_MDI_ARCHITECTURE
62 #define wxUSE_MDI_ARCHITECTURE 0
63
64 // metafiles are not supported neither
65 #undef wxUSE_METAFILE
66 #define wxUSE_METAFILE 0
67 #undef wxUSE_ENH_METAFILE
68 #define wxUSE_ENH_METAFILE 0
69
70 // not sure if this is supported by CE but it doesn't compile currently anyhow
71 #undef wxUSE_MS_HTML_HELP
72 #define wxUSE_MS_HTML_HELP 0
73
74 // eVC doesn't support SEH
75 #undef wxUSE_ON_FATAL_EXCEPTION
76 #define wxUSE_ON_FATAL_EXCEPTION 0
77
78 // no owner drawn controls (not sure if this is possible at all but in any case
79 // the code doesn't currently compile)
80 #undef wxUSE_OWNER_DRAWN
81 #define wxUSE_OWNER_DRAWN 0
82
83 #undef wxUSE_PRINTING_ARCHITECTURE
84 #define wxUSE_PRINTING_ARCHITECTURE 0
85
86 // regex doesn't build with eVC but is ok with VC8
87 #if !wxCHECK_VISUALC_VERSION(8)
88 #undef wxUSE_REGEX
89 #define wxUSE_REGEX 0
90 #endif
91
92 #undef wxUSE_RICHEDIT
93 #define wxUSE_RICHEDIT 0
94 #undef wxUSE_RICHEDIT2
95 #define wxUSE_RICHEDIT2 0
96
97 // Standard SDK lacks a few things, forcefully disable them
98 #ifdef WCE_PLATFORM_STANDARDSDK
99 // no shell functions support
100 #undef wxUSE_STDPATHS
101 #define wxUSE_STDPATHS 0
102 #endif // WCE_PLATFORM_STANDARDSDK
103
104 // there is no support for balloon taskbar icons
105 #undef wxUSE_TASKBARICON_BALLOONS
106 #define wxUSE_TASKBARICON_BALLOONS 0
107
108 // not sure if this is supported by eVC but VC8 SDK lacks the tooltips control
109 // related declarations
110 #if wxCHECK_VISUALC_VERSION(8)
111 #undef wxUSE_TOOLTIPS
112 #define wxUSE_TOOLTIPS 0
113 #endif
114
115 #undef wxUSE_UNICODE_MSLU
116 #define wxUSE_UNICODE_MSLU 0
117
118 #undef wxUSE_UXTHEME
119 #define wxUSE_UXTHEME 0
120
121 #undef wxUSE_WXHTML_HELP
122 #define wxUSE_WXHTML_HELP 0
123
124
125 // Disable features which don't make sense for MS Smartphones
126 // (due to pointer device usage, limited controls or dialogs, file system)
127 #if defined(__SMARTPHONE__)
128 #undef wxUSE_LISTBOOK
129 #define wxUSE_LISTBOOK 0
130
131 #undef wxUSE_NOTEBOOK
132 #define wxUSE_NOTEBOOK 0
133
134 #undef wxUSE_STATUSBAR
135 #define wxUSE_STATUSBAR 0
136
137 #undef wxUSE_COLOURPICKERCTRL
138 #define wxUSE_COLOURPICKERCTRL 0
139
140 #undef wxUSE_COLOURDLG
141 #define wxUSE_COLOURDLG 0
142 #endif // __SMARTPHONE__
143
144 #endif // _WX_MSW_WINCE_CHKCONF_H_
145