]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/wince/chkconf.h
Do the right thing for Smartphone if creating button sizer
[wxWidgets.git] / include / wx / msw / wince / chkconf.h
CommitLineData
69dada2e
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/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// Standard SDK lacks a few things, forcefully disable them
16#ifdef WCE_PLATFORM_STANDARDSDK
17 // no shell functions support
18 #undef wxUSE_STDPATHS
19 #define wxUSE_STDPATHS 0
20#endif // WCE_PLATFORM_STANDARDSDK
21
5e7f00a1
VZ
22// DDE doesn't exist under WinCE and wxIPC is DDE-based under MSW
23#undef wxUSE_IPC
24#define wxUSE_IPC 0
25
26// metafiles are not supported neither
27#undef wxUSE_ENH_METAFILE
28#define wxUSE_ENH_METAFILE 0
29
30#undef wxUSE_METAFILE
31#define wxUSE_METAFILE 0
32
33// eVC doesn't support SEH
34#undef wxUSE_ON_FATAL_EXCEPTION
35#define wxUSE_ON_FATAL_EXCEPTION 0
36
37// media stuff not supported under CE
38#undef wxUSE_DIRECTSHOW
39#define wxUSE_DIRECTSHOW 0
40
41#undef wxUSE_MEDIACTRL
42#define wxUSE_MEDIACTRL 0
43
a14132e1
WS
44#undef wxUSE_WXHTML_HELP
45#define wxUSE_WXHTML_HELP 0
46
5e7f00a1
VZ
47// libtiff and regex apparently don't compile with eVC (to check with eVC4?)
48// and they're disabled for WinCE in build/bakefiles/{tiff|regex}.bkl so can't
49// be enabled here
50#undef wxUSE_LIBTIFF
51#define wxUSE_LIBTIFF 0
52
53#undef wxUSE_REGEX
54#define wxUSE_REGEX 0
55
56
0bb0e26c
WS
57// Disable features which don't make sense for MS Smartphones
58// (due to pointer device usage, limited controls, file system)
5e7f00a1
VZ
59#if defined(__SMARTPHONE__)
60 #undef wxUSE_LISTBOOK
61 #define wxUSE_LISTBOOK 0
62
63 #undef wxUSE_NOTEBOOK
64 #define wxUSE_NOTEBOOK 0
65
66 #undef wxUSE_STATUSBAR
67 #define wxUSE_STATUSBAR 0
0bb0e26c
WS
68
69 #undef wxUSE_DEBUGREPORT
70 #define wxUSE_DEBUGREPORT 0
5e7f00a1
VZ
71#endif // __SMARTPHONE__
72
69dada2e
VZ
73#endif // _WX_MSW_WINCE_CHKCONF_H_
74