moved WinCE-specific part into wx/msw/wince/chkconf.h; added more stuff to it (partly moved from wince/setup.h)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32718 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-10 19:11:57 +00:00
parent 13304c1b9b
commit 5e7f00a137
3 changed files with 85 additions and 72 deletions

View File

@@ -21,7 +21,6 @@
/*
* If using PostScript-in-MSW in Univ, must enable PostScript
*/
#if defined(__WXUNIVERSAL__) && wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW && !wxUSE_POSTSCRIPT
# undef wxUSE_POSTSCRIPT
# define wxUSE_POSTSCRIPT 1
@@ -51,10 +50,7 @@
#define wxUSE_STACKWALKER 0
#endif // compiler doesn't support SEH
/*
* wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior
*/
/* wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior */
#if defined(__MWERKS__)
#undef wxUSE_DEBUG_NEW_ALWAYS
#define wxUSE_DEBUG_NEW_ALWAYS 0
@@ -71,7 +67,7 @@
# undef wxUSE_DEBUG_NEW_ALWAYS
# define wxUSE_DEBUG_NEW_ALWAYS 0
/* Cygwin betas don't have wcslen */
/* some Cygwin versions don't have wcslen */
# if defined(__CYGWIN__) || defined(__CYGWIN32__)
# if ! ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
# undef wxUSE_WCHAR_T
@@ -79,8 +75,7 @@
# endif
#endif
#endif
/* __GNUWIN32__ */
#endif /* __GNUWIN32__ */
/* MFC duplicates these operators */
#if wxUSE_MFC
@@ -89,8 +84,7 @@
# undef wxUSE_DEBUG_NEW_ALWAYS
# define wxUSE_DEBUG_NEW_ALWAYS 0
#endif
/* wxUSE_MFC */
#endif /* wxUSE_MFC */
#if (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
/* GnuWin32 doesn't have appropriate headers for e.g. IUnknown. */
@@ -126,29 +120,11 @@
# define wxUSE_DEBUG_NEW_ALWAYS 0
#endif
/* Early Watcom version don't have good enough wide char support */
#if defined(__WXMSW__) && (defined(__WATCOMC__) && __WATCOMC__ < 1200)
# undef wxUSE_WCHAR_T
# define wxUSE_WCHAR_T 0
#endif
/* Media not supported in eVC3 */
#if defined(_WIN32_WCE)
#if (_WIN32_WCE < 400)
#undef wxUSE_DIRECTSHOW
#undef wxUSE_MEDIACTRL
#define wxUSE_DIRECTSHOW 0
#define wxUSE_MEDIACTRL 0
#endif
#endif
/* Disable controls for pointing devices */
#if defined(__SMARTPHONE__)
#undef wxUSE_NOTEBOOK
#undef wxUSE_LISTBOOK
#define wxUSE_NOTEBOOK 0
#define wxUSE_LISTBOOK 0
#endif
#endif
/* _WX_MSW_CHKCONF_H_ */
#endif /* _WX_MSW_CHKCONF_H_ */

View File

@@ -19,5 +19,49 @@
#define wxUSE_STDPATHS 0
#endif // WCE_PLATFORM_STANDARDSDK
// 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
// media stuff not supported under CE
#undef wxUSE_DIRECTSHOW
#define wxUSE_DIRECTSHOW 0
#undef wxUSE_MEDIACTRL
#define wxUSE_MEDIACTRL 0
// 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
// Disable controls which don't make sense for phones
#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__
#endif // _WX_MSW_WINCE_CHKCONF_H_

View File

@@ -1052,10 +1052,11 @@
// Windows CE specific stuff
// ----------------------------------------------------------------------------
// stuff which doesn't work/compile/make sense under Windows CE in alphabetical
// order (please keep it!)
// list of things which don't make sense under Windows CE in alphabetical order
// (please keep it!)
//
// TODO: explain why each item is disabled and whether it can be enabled
// NB: stuff which doesn't work at all under CE is forcefully disabled in
// wx/msw/wince/chkconf.h
// wxCheckListBox requires wxOwnerDrawn which is disabled below
#undef wxUSE_CHECKLISTBOX
@@ -1067,7 +1068,7 @@
// Windows CE doesn't use RAS so wxDialUpManager doesn't work under it
#undef wxUSE_DIALUP_MANAGER
#define wxUSE_DIALUP_MANAGER
#define wxUSE_DIALUP_MANAGER 0
#undef wxUSE_DYNAMIC_LOADER
#define wxUSE_DYNAMIC_LOADER 0
@@ -1078,9 +1079,6 @@
#undef wxUSE_FSVOLUME
#define wxUSE_FSVOLUME 0
#undef wxUSE_MEDIACTRL
#define wxUSE_MEDIACTRL 0
// MDI is not supported under CE
#undef wxUSE_MDI
#define wxUSE_MDI 0
@@ -1104,11 +1102,6 @@
#undef wxUSE_PRINTING_ARCHITECTURE
#define wxUSE_PRINTING_ARCHITECTURE 0
#ifdef __SMARTPHONE__
#undef wxUSE_STATUSBAR
#define wxUSE_STATUSBAR 0
#endif
// doesn't make much sense in absence of mouse...
#undef wxUSE_TOOLTIPS
#define wxUSE_TOOLTIPS 0