X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b3c861501a451503b31c075ccb59d16b0ae01e99..210bb741b94a7a4a015de730017c3576afe7a8f1:/include/wx/features.h?ds=inline diff --git a/include/wx/features.h b/include/wx/features.h index dbf93b4ff7..13fb102e92 100644 --- a/include/wx/features.h +++ b/include/wx/features.h @@ -60,5 +60,17 @@ #undef wxHAS_REGEX_ADVANCED #endif +/* 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 + +/* 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 + #endif /* _WX_FEATURES_H_ */