]>
git.saurik.com Git - wxWidgets.git/blob - 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
8 // Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_WINCE_CHKCONF_H_
13 #define _WX_MSW_WINCE_CHKCONF_H_
15 // Standard SDK lacks a few things, forcefully disable them
16 #ifdef WCE_PLATFORM_STANDARDSDK
17 // no shell functions support
19 #define wxUSE_STDPATHS 0
20 #endif // WCE_PLATFORM_STANDARDSDK
23 // not enough API and lack of ddraw.h
25 #define wxUSE_DISPLAY 0
28 // DDE doesn't exist under WinCE and wxIPC is DDE-based under MSW
32 // metafiles are not supported neither
33 #undef wxUSE_ENH_METAFILE
34 #define wxUSE_ENH_METAFILE 0
37 #define wxUSE_METAFILE 0
39 // eVC doesn't support SEH
40 #undef wxUSE_ON_FATAL_EXCEPTION
41 #define wxUSE_ON_FATAL_EXCEPTION 0
43 #undef wxUSE_WXHTML_HELP
44 #define wxUSE_WXHTML_HELP 0
46 // libtiff and regex apparently don't compile with eVC (to check with eVC4?)
47 // and they're disabled for WinCE in build/bakefiles/{tiff|regex}.bkl so can't
50 #define wxUSE_LIBTIFF 0
55 #undef wxUSE_DEBUGREPORT
56 #define wxUSE_DEBUGREPORT 0
58 // other MSW settings not supported by CE
60 #define wxUSE_RICHEDIT 0
61 #undef wxUSE_RICHEDIT2
62 #define wxUSE_RICHEDIT2 0
65 #define wxUSE_UXTHEME 0
66 #undef wxUSE_UXTHEME_AUTO
67 #define wxUSE_UXTHEME_AUTO 0
69 #undef wxUSE_UNICODE_MSLU
70 #define wxUSE_UNICODE_MSLU 0
73 // Disable features which don't make sense for MS Smartphones
74 // (due to pointer device usage, limited controls or dialogs, file system)
75 #if defined(__SMARTPHONE__)
77 #define wxUSE_LISTBOOK 0
80 #define wxUSE_NOTEBOOK 0
82 #undef wxUSE_STATUSBAR
83 #define wxUSE_STATUSBAR 0
85 #undef wxUSE_COLOURPICKERCTRL
86 #define wxUSE_COLOURPICKERCTRL 0
87 #endif // __SMARTPHONE__
89 #endif // _WX_MSW_WINCE_CHKCONF_H_