2005-03-07 17:42:59 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2005-12-11 11:11:15 -05:00
|
|
|
// Name: wx/msw/wince/chkconf.h
|
2005-03-07 17:42:59 -05:00
|
|
|
// Purpose: WinCE-specific configuration options checks
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2005-03-07
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSW_WINCE_CHKCONF_H_
|
|
|
|
#define _WX_MSW_WINCE_CHKCONF_H_
|
|
|
|
|
|
|
|
// Standard SDK lacks a few things, forcefully disable them
|
|
|
|
#ifdef WCE_PLATFORM_STANDARDSDK
|
|
|
|
// no shell functions support
|
|
|
|
#undef wxUSE_STDPATHS
|
|
|
|
#define wxUSE_STDPATHS 0
|
|
|
|
#endif // WCE_PLATFORM_STANDARDSDK
|
|
|
|
|
2005-12-11 11:11:15 -05:00
|
|
|
#if _WIN32_WCE < 400
|
|
|
|
// not enough API and lack of ddraw.h
|
|
|
|
#undef wxUSE_DISPLAY
|
|
|
|
#define wxUSE_DISPLAY 0
|
|
|
|
#endif
|
|
|
|
|
2005-03-10 14:11:57 -05:00
|
|
|
// DDE doesn't exist under WinCE and wxIPC is DDE-based under MSW
|
|
|
|
#undef wxUSE_IPC
|
|
|
|
#define wxUSE_IPC 0
|
|
|
|
|
|
|
|
// metafiles are not supported neither
|
|
|
|
#undef wxUSE_ENH_METAFILE
|
|
|
|
#define wxUSE_ENH_METAFILE 0
|
|
|
|
|
|
|
|
#undef wxUSE_METAFILE
|
|
|
|
#define wxUSE_METAFILE 0
|
|
|
|
|
|
|
|
// eVC doesn't support SEH
|
|
|
|
#undef wxUSE_ON_FATAL_EXCEPTION
|
|
|
|
#define wxUSE_ON_FATAL_EXCEPTION 0
|
|
|
|
|
2005-03-11 02:32:27 -05:00
|
|
|
#undef wxUSE_WXHTML_HELP
|
|
|
|
#define wxUSE_WXHTML_HELP 0
|
|
|
|
|
2005-03-10 14:11:57 -05:00
|
|
|
// libtiff and regex apparently don't compile with eVC (to check with eVC4?)
|
|
|
|
// and they're disabled for WinCE in build/bakefiles/{tiff|regex}.bkl so can't
|
|
|
|
// be enabled here
|
|
|
|
#undef wxUSE_LIBTIFF
|
|
|
|
#define wxUSE_LIBTIFF 0
|
|
|
|
|
|
|
|
#undef wxUSE_REGEX
|
|
|
|
#define wxUSE_REGEX 0
|
|
|
|
|
2005-03-22 05:38:26 -05:00
|
|
|
#undef wxUSE_DEBUGREPORT
|
|
|
|
#define wxUSE_DEBUGREPORT 0
|
2005-03-10 14:11:57 -05:00
|
|
|
|
2005-07-30 08:46:11 -04:00
|
|
|
// other MSW settings not supported by CE
|
|
|
|
#undef wxUSE_RICHEDIT
|
|
|
|
#define wxUSE_RICHEDIT 0
|
|
|
|
#undef wxUSE_RICHEDIT2
|
|
|
|
#define wxUSE_RICHEDIT2 0
|
|
|
|
|
|
|
|
#undef wxUSE_UXTHEME
|
|
|
|
#define wxUSE_UXTHEME 0
|
|
|
|
#undef wxUSE_UXTHEME_AUTO
|
|
|
|
#define wxUSE_UXTHEME_AUTO 0
|
|
|
|
|
|
|
|
#undef wxUSE_UNICODE_MSLU
|
|
|
|
#define wxUSE_UNICODE_MSLU 0
|
|
|
|
|
|
|
|
|
2005-03-13 10:26:54 -05:00
|
|
|
// Disable features which don't make sense for MS Smartphones
|
|
|
|
// (due to pointer device usage, limited controls, file system)
|
2005-03-10 14:11:57 -05:00
|
|
|
#if defined(__SMARTPHONE__)
|
|
|
|
#undef wxUSE_LISTBOOK
|
|
|
|
#define wxUSE_LISTBOOK 0
|
|
|
|
|
|
|
|
#undef wxUSE_NOTEBOOK
|
|
|
|
#define wxUSE_NOTEBOOK 0
|
|
|
|
|
|
|
|
#undef wxUSE_STATUSBAR
|
|
|
|
#define wxUSE_STATUSBAR 0
|
|
|
|
#endif // __SMARTPHONE__
|
|
|
|
|
2005-03-07 17:42:59 -05:00
|
|
|
#endif // _WX_MSW_WINCE_CHKCONF_H_
|
|
|
|
|