]> git.saurik.com Git - wxWidgets.git/commitdiff
use wxFontMapper when setting the encoding (fix to restore the behaviour broken by...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 23 Dec 2001 23:53:46 +0000 (23:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 23 Dec 2001 23:53:46 +0000 (23:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13175 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/font.cpp

index bf831d467a11e83162eaf28521ce3d53bdf89d71..7a55510e198d193355d2ea75f07b8f4a85552f3d 100644 (file)
     #include "wx/log.h"
 #endif // WX_PRECOMP
 
     #include "wx/log.h"
 #endif // WX_PRECOMP
 
+#include "wx/msw/private.h"
+
 #include "wx/fontutil.h"
 #include "wx/fontutil.h"
-#include "wx/tokenzr.h"
+#include "wx/fontmap.h"
 
 
-#include "wx/msw/private.h"
 #include "wx/tokenzr.h"
 
 IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
 #include "wx/tokenzr.h"
 
 IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
@@ -463,8 +464,20 @@ void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding)
     wxNativeEncodingInfo info;
     if ( !wxGetNativeFontEncoding(encoding, &info) )
     {
     wxNativeEncodingInfo info;
     if ( !wxGetNativeFontEncoding(encoding, &info) )
     {
-        // unsupported encoding, replace with the default
-        info.charset = ANSI_CHARSET;
+#if wxUSE_FONTMAP
+        if ( !wxTheFontMapper->GetAltForEncoding(encoding, &info) )
+#endif // wxUSE_FONTMAP
+        {
+            // unsupported encoding, replace with the default
+            info.charset = ANSI_CHARSET;
+        }
+        else if ( !info.facename.empty() )
+        {
+            // if we have this encoding only in some particular facename, use
+            // the facename - it is better to show the correct characters in a
+            // wrong facename than unreadable text in a correct one
+            SetFaceName(info.facename);
+        }
     }
 
     lf.lfCharSet = info.charset;
     }
 
     lf.lfCharSet = info.charset;