X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2478fde622a16d25c66690af353dfdc37e7b582..fe164c3e2ea5453896cd63a5440a26365daec1bc:/src/common/fontmap.cpp diff --git a/src/common/fontmap.cpp b/src/common/fontmap.cpp index d858e43dd0..18fc3917c2 100644 --- a/src/common/fontmap.cpp +++ b/src/common/fontmap.cpp @@ -36,13 +36,17 @@ #include "wx/intl.h" #endif // PCH -#include "wx/fontmap.h" -#include "wx/fmappriv.h" - #if wxUSE_CONFIG #include "wx/config.h" #endif // wxUSE_CONFIG +#if defined(__WXMSW__) + #include "wx/msw/private.h" // includes windows.h for LOGFONT + #include "wx/msw/winundef.h" +#endif + +#include "wx/fontmap.h" +#include "wx/fmappriv.h" #include "wx/fontutil.h" #include "wx/msgdlg.h" #include "wx/fontdlg.h" @@ -81,6 +85,8 @@ public: private: bool m_flagOld; bool& m_flag; + + DECLARE_NO_COPY_CLASS(ReentrancyBlocker) }; // ============================================================================ @@ -104,11 +110,16 @@ wxFontEncoding wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive) { // try the ways not needing the users intervention first - wxFontEncoding - encoding = wxFontMapperBase::CharsetToEncoding(charset, interactive); + int encoding = wxFontMapperBase::NonInteractiveCharsetToEncoding(charset); // if we failed to find the encoding, ask the user -- unless disabled - if ( (encoding == wxFONTENCODING_SYSTEM) && interactive ) + if ( encoding == wxFONTENCODING_UNKNOWN ) + { + // this is the special value which disables asking the user (he had + // chosen to suppress this the last time) + encoding = wxFONTENCODING_SYSTEM; + } + else if ( (encoding == wxFONTENCODING_SYSTEM) && interactive ) { // prepare the dialog data @@ -149,7 +160,7 @@ wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive) encoding = GetEncoding(n); } -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG // save the result in the config now wxFontMapperPathChanger path(this, FONTMAPPER_CHARSET_PATH); if ( path.IsOk() ) @@ -167,7 +178,7 @@ wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive) #endif // wxUSE_CONFIG } - return encoding; + return (wxFontEncoding)encoding; } // ---------------------------------------------------------------------------- @@ -183,7 +194,7 @@ bool wxFontMapper::TestAltEncoding(const wxString& configEntry, if ( wxGetNativeFontEncoding(encReplacement, info) && wxTestFontEncoding(*info) ) { -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG // remember the mapping in the config wxFontMapperPathChanger path(this, FONTMAPPER_FONT_FROM_ENCODING_PATH); @@ -249,7 +260,7 @@ bool wxFontMapper::GetAltForEncoding(wxFontEncoding encoding, } configEntry += encName; -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG // do we have a font spec for this encoding? wxString fontinfo; wxFontMapperPathChanger path(this, FONTMAPPER_FONT_FROM_ENCODING_PATH); @@ -361,7 +372,7 @@ bool wxFontMapper::GetAltForEncoding(wxFontEncoding encoding, *info = retData.EncodingInfo(); info->encoding = retData.GetEncoding(); -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG // remember this in the config wxFontMapperPathChanger path(this, FONTMAPPER_FONT_FROM_ENCODING_PATH); @@ -381,7 +392,7 @@ bool wxFontMapper::GetAltForEncoding(wxFontEncoding encoding, // or selected to use equivalent encoding // // remember it to avoid asking the same question again later -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG wxFontMapperPathChanger path(this, FONTMAPPER_FONT_FROM_ENCODING_PATH); if ( path.IsOk() )