]> git.saurik.com Git - wxWidgets.git/blame - include/wx/features.h
remove .cvsignore files, they're useless with svn
[wxWidgets.git] / include / wx / features.h
CommitLineData
e0c749a7 1/**
88421578
DW
2* Name: wx/features.h
3* Purpose: test macros for the features which might be available in some
77ffb593 4* wxWidgets ports but not others
88421578 5* Author: Vadim Zeitlin
e0c749a7 6* Modified by: Ryan Norton (Converted to C)
88421578
DW
7* Created: 18.03.02
8* RCS-ID: $Id$
77ffb593 9* Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 10* Licence: wxWindows licence
e0c749a7 11*/
34cbe514
RN
12
13/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
d65c269b
VZ
14
15#ifndef _WX_FEATURES_H_
16#define _WX_FEATURES_H_
17
7c5cd6e9
VZ
18/* radio menu items are currently not implemented in wxMotif, use this
19 symbol (kept for compatibility from the time when they were not implemented
20 under other platforms as well) to test for this */
21#if !defined(__WXMOTIF__)
d65c269b
VZ
22 #define wxHAS_RADIO_MENU_ITEMS
23#else
24 #undef wxHAS_RADIO_MENU_ITEMS
25#endif
26
34cbe514 27/* the raw keyboard codes are generated under wxGTK and wxMSW only */
b3c86150
VS
28#if defined(__WXGTK__) || defined(__WXMSW__) || defined(__WXMAC__) \
29 || defined(__WXDFB__)
9c7df356
VZ
30 #define wxHAS_RAW_KEY_CODES
31#else
32 #undef wxHAS_RAW_KEY_CODES
33#endif
34
af17760d 35/* taskbar is implemented in the major ports */
6d8edd32
DS
36#if defined(__WXMSW__) || defined(__WXCOCOA__) \
37 || defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXX11__) \
38 || defined(__WXMAC_OSX__) || defined(__WXCOCOA__)
3191ff3b
VS
39 #define wxHAS_TASK_BAR_ICON
40#else
41 #undef wxHAS_TASK_BAR_ICON
42#endif
43
34cbe514
RN
44/* wxIconLocation appeared in the middle of 2.5.0 so it's handy to have a */
45/* separate define for it */
81e3be0e
VZ
46#define wxHAS_ICON_LOCATION
47
34cbe514 48/* same for wxCrashReport */
81e3be0e
VZ
49#ifdef __WXMSW__
50 #define wxHAS_CRASH_REPORT
51#else
52 #undef wxHAS_CRASH_REPORT
53#endif
54
e3f9e20c
VS
55/* wxRE_ADVANCED is not always available, depending on regex library used
56 * (it's unavailable only if compiling via configure against system library) */
57#ifndef WX_NO_REGEX_ADVANCED
58 #define wxHAS_REGEX_ADVANCED
59#else
60 #undef wxHAS_REGEX_ADVANCED
61#endif
62
c3a58b24
VS
63/* Pango-based ports and wxDFB use UTF-8 for text and font encodings
64 * internally and so their fonts can handle any encodings: */
65#if wxUSE_PANGO || defined(__WXDFB__)
66 #define wxHAS_UTF8_FONTS
67#endif
68
617fb24f
VZ
69/* This is defined when the underlying toolkit handles tab traversal natively.
70 Otherwise we implement it ourselves in wxControlContainer. */
71#ifdef __WXGTK20__
72 #define wxHAS_NATIVE_TAB_TRAVERSAL
73#endif
74
34cbe514 75#endif /* _WX_FEATURES_H_ */
d65c269b 76