2003-12-17 19:51:03 +00:00
|
|
|
/**
|
2004-03-04 14:33:20 +00:00
|
|
|
* Name: wx/features.h
|
|
|
|
* Purpose: test macros for the features which might be available in some
|
2004-05-23 14:56:36 +00:00
|
|
|
* wxWidgets ports but not others
|
2004-03-04 14:33:20 +00:00
|
|
|
* Author: Vadim Zeitlin
|
2003-12-17 19:51:03 +00:00
|
|
|
* Modified by: Ryan Norton (Converted to C)
|
2004-03-04 14:33:20 +00:00
|
|
|
* Created: 18.03.02
|
|
|
|
* RCS-ID: $Id$
|
2004-05-23 14:56:36 +00:00
|
|
|
* Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org>
|
2004-05-23 20:53:33 +00:00
|
|
|
* Licence: wxWindows licence
|
2003-12-17 19:51:03 +00:00
|
|
|
*/
|
2003-12-17 19:30:31 +00:00
|
|
|
|
|
|
|
/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
|
2002-03-18 19:41:35 +00:00
|
|
|
|
|
|
|
#ifndef _WX_FEATURES_H_
|
|
|
|
#define _WX_FEATURES_H_
|
|
|
|
|
2003-12-17 19:30:31 +00:00
|
|
|
/* radio menu items are currently only implemented in wxGTK and wxMSW */
|
2002-03-21 02:35:08 +00:00
|
|
|
#if defined(__WXGTK__) || defined(__WXMSW__)
|
2002-03-18 19:41:35 +00:00
|
|
|
#define wxHAS_RADIO_MENU_ITEMS
|
|
|
|
#else
|
|
|
|
#undef wxHAS_RADIO_MENU_ITEMS
|
|
|
|
#endif
|
|
|
|
|
2003-12-17 19:30:31 +00:00
|
|
|
/* the raw keyboard codes are generated under wxGTK and wxMSW only */
|
2002-04-07 21:06:59 +00:00
|
|
|
#if defined(__WXGTK__) || defined(__WXMSW__)
|
|
|
|
#define wxHAS_RAW_KEY_CODES
|
|
|
|
#else
|
|
|
|
#undef wxHAS_RAW_KEY_CODES
|
|
|
|
#endif
|
|
|
|
|
2004-10-14 14:07:27 +00:00
|
|
|
/* taskbar is implemented in the major ports */
|
2004-10-15 22:52:28 +00:00
|
|
|
#if defined(__WXMSW__) || defined(__WXCOCOA__) || \
|
|
|
|
defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXX11__) || \
|
2004-11-01 05:57:25 +00:00
|
|
|
(defined(__WXMAC__) && defined(__WXMAC_OSX__)) || defined(__WXCOCOA__)
|
2003-06-19 22:14:06 +00:00
|
|
|
#define wxHAS_TASK_BAR_ICON
|
|
|
|
#else
|
|
|
|
#undef wxHAS_TASK_BAR_ICON
|
|
|
|
#endif
|
|
|
|
|
2003-12-17 19:30:31 +00:00
|
|
|
/* wxIconLocation appeared in the middle of 2.5.0 so it's handy to have a */
|
|
|
|
/* separate define for it */
|
2003-07-13 21:19:26 +00:00
|
|
|
#define wxHAS_ICON_LOCATION
|
|
|
|
|
2003-12-17 19:30:31 +00:00
|
|
|
/* same for wxCrashReport */
|
2003-07-13 21:19:26 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
#define wxHAS_CRASH_REPORT
|
|
|
|
#else
|
|
|
|
#undef wxHAS_CRASH_REPORT
|
|
|
|
#endif
|
|
|
|
|
2004-02-19 17:28:56 +00:00
|
|
|
/* wxRE_ADVANCED is not always available, depending on regex library used
|
|
|
|
* (it's unavailable only if compiling via configure against system library) */
|
|
|
|
#ifndef WX_NO_REGEX_ADVANCED
|
|
|
|
#define wxHAS_REGEX_ADVANCED
|
|
|
|
#else
|
|
|
|
#undef wxHAS_REGEX_ADVANCED
|
|
|
|
#endif
|
|
|
|
|
2003-12-17 19:30:31 +00:00
|
|
|
#endif /* _WX_FEATURES_H_ */
|
2002-03-18 19:41:35 +00:00
|
|
|
|