From 462a08f103aa0ac507b0f933150e2c71afc5e51e Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 30 Jul 2008 15:02:41 +0000 Subject: [PATCH] OSX reshuffling git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/iphone/chkconf.h | 116 ++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 include/wx/osx/iphone/chkconf.h diff --git a/include/wx/osx/iphone/chkconf.h b/include/wx/osx/iphone/chkconf.h new file mode 100644 index 0000000000..53f08b67c3 --- /dev/null +++ b/include/wx/osx/iphone/chkconf.h @@ -0,0 +1,116 @@ +/* + * Name: wx/osx/iphone/chkconf.h + * Purpose: Compiler-specific configuration checking + * Author: Stefan Csomor + * Modified by: + * Created: 2008-07-30 + * RCS-ID: $Id: chkconf.h 54833 2008-07-29 21:03:18Z SC $ + * Copyright: (c) Stefan Csomor + * Licence: wxWindows licence + */ + +#ifndef _WX_OSX_IPHONE_CHKCONF_H_ +#define _WX_OSX_IPHONE_CHKCONF_H_ + +/* + * text rendering system + */ + +/* we have different options and we turn on all that make sense + * under a certain platform + */ + +#define wxOSX_USE_CORE_TEXT 0 +#define wxOSX_USE_ATSU_TEXT 0 + +/* + * turning off capabilities that don't work under iphone yet + */ + +#if wxUSE_MDI +#undef wxUSE_MDI +#define wxUSE_MDI 0 +#endif + +#if wxUSE_MDI_ARCHITECTURE +#undef wxUSE_MDI_ARCHITECTURE +#define wxUSE_MDI_ARCHITECTURE 0 +#endif + +#if wxUSE_DRAG_AND_DROP +#undef wxUSE_DRAG_AND_DROP +#define wxUSE_DRAG_AND_DROP 0 +#endif + +#if wxUSE_TASKBARICON +#undef wxUSE_TASKBARICON +#define wxUSE_TASKBARICON 0 +#endif + +#if wxUSE_TOOLTIPS +#undef wxUSE_TOOLTIPS +#define wxUSE_TOOLTIPS 0 +#endif + +#if wxUSE_DATAVIEWCTRL +#undef wxUSE_DATAVIEWCTRL +#define wxUSE_DATAVIEWCTRL 0 +#endif + +#if wxUSE_DRAG_AND_DROP +#undef wxUSE_DRAG_AND_DROP +#define wxUSE_DRAG_AND_DROP 0 +#endif + +#if wxUSE_TASKBARICON +#undef wxUSE_TASKBARICON +#define wxUSE_TASKBARICON 0 +#endif + +/* +#if wxUSE_POPUPWIN +#undef wxUSE_POPUPWIN +#define wxUSE_POPUPWIN 0 +#endif + +#if wxUSE_COMBOBOX +#undef wxUSE_COMBOBOX +#define wxUSE_COMBOBOX 0 +#endif + + +#if wxUSE_MENUS +#undef wxUSE_MENUS +#define wxUSE_MENUS 0 +#endif + +#if wxUSE_CALENDARCTRL +#undef wxUSE_CALENDARCTRL +#define wxUSE_CALENDARCTRL 0 +#endif + +#if wxUSE_WXHTML_HELP +#undef wxUSE_WXHTML_HELP +#define wxUSE_WXHTML_HELP 0 +#endif + +#if wxUSE_DOC_VIEW_ARCHITECTURE +#undef wxUSE_DOC_VIEW_ARCHITECTURE +#define wxUSE_DOC_VIEW_ARCHITECTURE 0 +#endif + +#if wxUSE_PRINTING_ARCHITECTURE +#undef wxUSE_PRINTING_ARCHITECTURE +#define wxUSE_PRINTING_ARCHITECTURE 0 +#endif + +*/ + +#if wxUSE_CLIPBOARD +#undef wxUSE_CLIPBOARD +#define wxUSE_CLIPBOARD 0 +#endif // wxUSE_CLIPBOARD + +#endif + /* _WX_OSX_IPHONE_CHKCONF_H_ */ + -- 2.45.2