X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c1866e88fb77fc7e0b349cc15f6cebf0f727a9d..9806a0e71eb2190827e93cd463e9682a3b939eee:/src/unix/fontenum.cpp diff --git a/src/unix/fontenum.cpp b/src/unix/fontenum.cpp index 4ce2ced9d0..5cd8a26981 100644 --- a/src/unix/fontenum.cpp +++ b/src/unix/fontenum.cpp @@ -26,9 +26,18 @@ #include "wx/string.h" #include "wx/utils.h" +#include "wx/fontmap.h" #include "wx/fontenum.h" +#include "wx/fontutil.h" +#ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++ + // The resulting warnings are switched off here +#pragma message disable nosimpint +#endif #include +#ifdef __VMS__ +#pragma message enable nosimpint +#endif // ---------------------------------------------------------------------------- // private functions @@ -61,12 +70,22 @@ static char **CreateFontList(wxChar spacing, wxFontEncoding encoding, int *nFonts) { - wxString xencoding, xregistry; - wxGetXFontEncoding(encoding, &xregistry, &xencoding); + wxNativeEncodingInfo info; + wxGetNativeFontEncoding(encoding, &info); + +#if wxUSE_FONTMAP + if ( !wxTestFontEncoding(info) ) + { + // ask font mapper for a replacement + (void)wxTheFontMapper->GetAltForEncoding(encoding, &info); + } +#endif // wxUSE_FONTMAP wxString pattern; pattern.Printf(wxT("-*-*-*-*-*-*-*-*-*-*-%c-*-%s-%s"), - spacing, xregistry.c_str(), xencoding.c_str()); + spacing, + info.xregistry.c_str(), + info.xencoding.c_str()); // get the list of all fonts return XListFonts((Display *)wxGetDisplay(), pattern.mb_str(), 32767, nFonts);