2002-03-18 19:41:35 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/features.h
|
|
|
|
// Purpose: test macros for the features which might be available in some
|
|
|
|
// wxWindows ports but not others
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 18.03.02
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwindows.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FEATURES_H_
|
|
|
|
#define _WX_FEATURES_H_
|
|
|
|
|
2002-03-21 02:35:08 +00:00
|
|
|
// radio menu items are currently only implemented in wxGTK and wxMSW
|
|
|
|
#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
|
|
|
|
|
2002-04-07 21:06:59 +00:00
|
|
|
// the raw keyboard codes are generated under wxGTK and wxMSW only
|
|
|
|
#if defined(__WXGTK__) || defined(__WXMSW__)
|
|
|
|
#define wxHAS_RAW_KEY_CODES
|
|
|
|
#else
|
|
|
|
#undef wxHAS_RAW_KEY_CODES
|
|
|
|
#endif
|
|
|
|
|
2002-03-18 19:41:35 +00:00
|
|
|
#endif // _WX_FEATURES_H_
|
|
|
|
|