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_
|
|
|
|
|
2006-07-06 00:17:50 +00:00
|
|
|
/* radio menu items are currently not implemented in wxMotif, use this
|
|
|
|
symbol (kept for compatibility from the time when they were not implemented
|
|
|
|
under other platforms as well) to test for this */
|
|
|
|
#if !defined(__WXMOTIF__)
|
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 */
|
2006-08-27 09:42:42 +00:00
|
|
|
#if defined(__WXGTK__) || defined(__WXMSW__) || defined(__WXMAC__) \
|
|
|
|
|| defined(__WXDFB__)
|
2002-04-07 21:06:59 +00:00
|
|
|
#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 */
|
2005-04-04 10:34:56 +00:00
|
|
|
#if defined(__WXMSW__) || defined(__WXCOCOA__) \
|
|
|
|
|| defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXX11__) \
|
|
|
|
|| 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
|
|
|
|
|
2007-01-22 14:05:07 +00:00
|
|
|
/* Pango-based ports and wxDFB use UTF-8 for text and font encodings
|
|
|
|
* internally and so their fonts can handle any encodings: */
|
|
|
|
#if wxUSE_PANGO || defined(__WXDFB__)
|
|
|
|
#define wxHAS_UTF8_FONTS
|
|
|
|
#endif
|
|
|
|
|
2007-03-30 02:07:49 +00:00
|
|
|
/* This is defined when the underlying toolkit handles tab traversal natively.
|
|
|
|
Otherwise we implement it ourselves in wxControlContainer. */
|
|
|
|
#ifdef __WXGTK20__
|
|
|
|
#define wxHAS_NATIVE_TAB_TRAVERSAL
|
|
|
|
#endif
|
|
|
|
|
2003-12-17 19:30:31 +00:00
|
|
|
#endif /* _WX_FEATURES_H_ */
|
2002-03-18 19:41:35 +00:00
|
|
|
|