X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dd74a8f6aa6bebd87179a0c7aa2878b1faff46d0..c8841d1493e0d19085990c9e331dd85c4da45d8e:/include/wx/fontenum.h diff --git a/include/wx/fontenum.h b/include/wx/fontenum.h index 8544e0dc49..782dc7fd9e 100644 --- a/include/wx/fontenum.h +++ b/include/wx/fontenum.h @@ -5,7 +5,6 @@ // Modified by: extended to enumerate more than just font facenames and works // not only on Windows now (VZ) // Created: 04/01/98 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart, Vadim Zeitlin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -13,6 +12,10 @@ #ifndef _WX_FONTENUM_H_ #define _WX_FONTENUM_H_ +#include "wx/defs.h" + +#if wxUSE_FONTENUM + #include "wx/fontenc.h" #include "wx/arrstr.h" @@ -21,7 +24,7 @@ // fonts with given attributes // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxFontEnumerator +class WXDLLIMPEXP_CORE wxFontEnumerator { public: wxFontEnumerator() {} @@ -72,7 +75,14 @@ public: static bool IsValidFacename(const wxString &str); private: - DECLARE_NO_COPY_CLASS(wxFontEnumerator) +#ifdef wxHAS_UTF8_FONTS + // helper for ports that only use UTF-8 encoding natively + bool EnumerateEncodingsUTF8(const wxString& facename); +#endif + + wxDECLARE_NO_COPY_CLASS(wxFontEnumerator); }; +#endif // wxUSE_FONTENUM + #endif // _WX_FONTENUM_H_