home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / features.h < prev    next >
C/C++ Source or Header  |  2002-04-07  |  1KB  |  32 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        wx/features.h
  3. // Purpose:     test macros for the features which might be available in some
  4. //              wxWindows ports but not others
  5. // Author:      Vadim Zeitlin
  6. // Modified by:
  7. // Created:     18.03.02
  8. // RCS-ID:      $Id: features.h,v 1.3 2002/04/07 21:06:59 VZ Exp $
  9. // Copyright:   (c) 2002 Vadim Zeitlin <vadim@wxwindows.org>
  10. // Licence:     wxWindows licence
  11. /////////////////////////////////////////////////////////////////////////////
  12.  
  13. #ifndef _WX_FEATURES_H_
  14. #define _WX_FEATURES_H_
  15.  
  16. // radio menu items are currently only implemented in wxGTK and wxMSW
  17. #if defined(__WXGTK__) || defined(__WXMSW__)
  18.     #define wxHAS_RADIO_MENU_ITEMS
  19. #else
  20.     #undef wxHAS_RADIO_MENU_ITEMS
  21. #endif
  22.  
  23. // the raw keyboard codes are generated under wxGTK and wxMSW only
  24. #if defined(__WXGTK__) || defined(__WXMSW__)
  25.     #define wxHAS_RAW_KEY_CODES
  26. #else
  27.     #undef wxHAS_RAW_KEY_CODES
  28. #endif
  29.  
  30. #endif // _WX_FEATURES_H_
  31.  
  32.