1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/fontmap.cpp
3 // Purpose: wxFontMapper class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999-2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/fontmap.h"
35 #include "wx/msgdlg.h"
36 #include "wx/choicdlg.h"
40 #include "wx/config.h"
41 #endif // wxUSE_CONFIG
43 #if defined(__WXMSW__)
44 #include "wx/msw/private.h" // includes windows.h for LOGFONT
45 #include "wx/msw/winundef.h"
48 #include "wx/fmappriv.h"
49 #include "wx/fontutil.h"
50 #include "wx/fontdlg.h"
51 #include "wx/encinfo.h"
53 #include "wx/encconv.h"
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 wxBEGIN_ENUM( wxFontEncoding
)
60 wxENUM_MEMBER( wxFONTENCODING_SYSTEM
)
61 wxENUM_MEMBER( wxFONTENCODING_DEFAULT
)
63 wxENUM_MEMBER( wxFONTENCODING_ISO8859_1
)
64 wxENUM_MEMBER( wxFONTENCODING_ISO8859_2
)
65 wxENUM_MEMBER( wxFONTENCODING_ISO8859_3
)
66 wxENUM_MEMBER( wxFONTENCODING_ISO8859_4
)
67 wxENUM_MEMBER( wxFONTENCODING_ISO8859_5
)
68 wxENUM_MEMBER( wxFONTENCODING_ISO8859_6
)
69 wxENUM_MEMBER( wxFONTENCODING_ISO8859_7
)
70 wxENUM_MEMBER( wxFONTENCODING_ISO8859_8
)
71 wxENUM_MEMBER( wxFONTENCODING_ISO8859_9
)
72 wxENUM_MEMBER( wxFONTENCODING_ISO8859_10
)
73 wxENUM_MEMBER( wxFONTENCODING_ISO8859_11
)
74 wxENUM_MEMBER( wxFONTENCODING_ISO8859_12
)
75 wxENUM_MEMBER( wxFONTENCODING_ISO8859_13
)
76 wxENUM_MEMBER( wxFONTENCODING_ISO8859_14
)
77 wxENUM_MEMBER( wxFONTENCODING_ISO8859_15
)
78 wxENUM_MEMBER( wxFONTENCODING_ISO8859_MAX
)
79 wxENUM_MEMBER( wxFONTENCODING_KOI8
)
80 wxENUM_MEMBER( wxFONTENCODING_KOI8_U
)
81 wxENUM_MEMBER( wxFONTENCODING_ALTERNATIVE
)
82 wxENUM_MEMBER( wxFONTENCODING_BULGARIAN
)
83 wxENUM_MEMBER( wxFONTENCODING_CP437
)
84 wxENUM_MEMBER( wxFONTENCODING_CP850
)
85 wxENUM_MEMBER( wxFONTENCODING_CP852
)
86 wxENUM_MEMBER( wxFONTENCODING_CP855
)
87 wxENUM_MEMBER( wxFONTENCODING_CP866
)
89 wxENUM_MEMBER( wxFONTENCODING_CP874
)
90 wxENUM_MEMBER( wxFONTENCODING_CP932
)
91 wxENUM_MEMBER( wxFONTENCODING_CP936
)
92 wxENUM_MEMBER( wxFONTENCODING_CP949
)
93 wxENUM_MEMBER( wxFONTENCODING_CP950
)
94 wxENUM_MEMBER( wxFONTENCODING_CP1250
)
95 wxENUM_MEMBER( wxFONTENCODING_CP1251
)
96 wxENUM_MEMBER( wxFONTENCODING_CP1252
)
97 wxENUM_MEMBER( wxFONTENCODING_CP1253
)
98 wxENUM_MEMBER( wxFONTENCODING_CP1254
)
99 wxENUM_MEMBER( wxFONTENCODING_CP1255
)
100 wxENUM_MEMBER( wxFONTENCODING_CP1256
)
101 wxENUM_MEMBER( wxFONTENCODING_CP1257
)
102 wxENUM_MEMBER( wxFONTENCODING_CP1258
)
103 wxENUM_MEMBER( wxFONTENCODING_CP1361
)
104 wxENUM_MEMBER( wxFONTENCODING_CP12_MAX
)
105 wxENUM_MEMBER( wxFONTENCODING_UTF7
)
106 wxENUM_MEMBER( wxFONTENCODING_UTF8
)
107 wxENUM_MEMBER( wxFONTENCODING_GB2312
)
108 wxENUM_MEMBER( wxFONTENCODING_BIG5
)
109 wxENUM_MEMBER( wxFONTENCODING_SHIFT_JIS
)
110 wxENUM_MEMBER( wxFONTENCODING_EUC_JP
)
111 wxENUM_MEMBER( wxFONTENCODING_UNICODE
)
112 wxEND_ENUM( wxFontEncoding
)
114 // ----------------------------------------------------------------------------
116 // ----------------------------------------------------------------------------
118 // the config paths we use
121 static const wxChar
* FONTMAPPER_FONT_FROM_ENCODING_PATH
= wxT("Encodings");
122 static const wxChar
* FONTMAPPER_FONT_DONT_ASK
= wxT("none");
124 #endif // wxUSE_CONFIG
126 // ----------------------------------------------------------------------------
128 // ----------------------------------------------------------------------------
130 // it may happen that while we're showing a dialog asking the user about
131 // something, another request for an encoding mapping arrives: in this case it
132 // is best to not do anything because otherwise we risk to enter an infinite
133 // loop so we create an object of this class on stack to test for this in all
134 // interactive functions
135 class ReentrancyBlocker
138 ReentrancyBlocker(bool& flag
) : m_flagOld(flag
), m_flag(flag
)
140 ~ReentrancyBlocker() { m_flag
= m_flagOld
; }
146 wxDECLARE_NO_COPY_CLASS(ReentrancyBlocker
);
149 // ============================================================================
151 // ============================================================================
153 // ----------------------------------------------------------------------------
155 // ----------------------------------------------------------------------------
157 wxFontMapper::wxFontMapper()
159 m_windowParent
= NULL
;
162 wxFontMapper::~wxFontMapper()
167 wxFontMapper
*wxFontMapper::Get()
169 wxFontMapperBase
*fontmapper
= wxFontMapperBase::Get();
170 wxASSERT_MSG( !fontmapper
->IsDummy(),
171 wxT("GUI code requested a wxFontMapper but we only have a wxFontMapperBase.") );
173 // Now return it anyway because there's a chance the GUI code might just
174 // only want to call wxFontMapperBase functions and it's better than
175 // crashing by returning NULL
176 return (wxFontMapper
*)fontmapper
;
180 wxFontMapper::CharsetToEncoding(const wxString
& charset
, bool interactive
)
182 // try the ways not needing the users intervention first
183 int encoding
= wxFontMapperBase::NonInteractiveCharsetToEncoding(charset
);
185 // if we failed to find the encoding, ask the user -- unless disabled
186 if ( encoding
== wxFONTENCODING_UNKNOWN
)
188 // this is the special value which disables asking the user (he had
189 // chosen to suppress this the last time)
190 encoding
= wxFONTENCODING_SYSTEM
;
193 else if ( (encoding
== wxFONTENCODING_SYSTEM
) && interactive
)
195 // prepare the dialog data
198 wxString
title(m_titleDialog
);
200 title
<< wxTheApp
->GetAppDisplayName() << _(": unknown charset");
204 msg
.Printf(_("The charset '%s' is unknown. You may select\nanother charset to replace it with or choose\n[Cancel] if it cannot be replaced"), charset
);
206 // the list of choices
207 const size_t count
= GetSupportedEncodingsCount();
209 wxString
*encodingNamesTranslated
= new wxString
[count
];
211 for ( size_t i
= 0; i
< count
; i
++ )
213 encodingNamesTranslated
[i
] = GetEncodingDescription(GetEncoding(i
));
217 wxWindow
*parent
= m_windowParent
;
219 parent
= wxTheApp
->GetTopWindow();
221 // do ask the user and get back the index in encodings table
222 int n
= wxGetSingleChoiceIndex(msg
, title
,
224 encodingNamesTranslated
,
227 delete [] encodingNamesTranslated
;
231 encoding
= GetEncoding(n
);
234 #if wxUSE_CONFIG && wxUSE_FILECONFIG
235 // save the result in the config now
236 wxFontMapperPathChanger
path(this, FONTMAPPER_CHARSET_PATH
);
239 wxConfigBase
*config
= GetConfig();
241 // remember the alt encoding for this charset -- or remember that
243 long value
= n
== -1 ? (long)wxFONTENCODING_UNKNOWN
: (long)encoding
;
244 if ( !config
->Write(charset
, value
) )
246 wxLogError(_("Failed to remember the encoding for the charset '%s'."), charset
);
249 #endif // wxUSE_CONFIG
252 wxUnusedVar(interactive
);
253 #endif // wxUSE_CHOICEDLG
255 return (wxFontEncoding
)encoding
;
258 // ----------------------------------------------------------------------------
259 // support for unknown encodings: we maintain a map between the
260 // (platform-specific) strings identifying them and our wxFontEncodings they
261 // correspond to which is used by GetFontForEncoding() function
262 // ----------------------------------------------------------------------------
264 bool wxFontMapper::TestAltEncoding(const wxString
& configEntry
,
265 wxFontEncoding encReplacement
,
266 wxNativeEncodingInfo
*info
)
268 if ( wxGetNativeFontEncoding(encReplacement
, info
) &&
269 wxTestFontEncoding(*info
) )
271 #if wxUSE_CONFIG && wxUSE_FILECONFIG
272 // remember the mapping in the config
273 wxFontMapperPathChanger
path(this, FONTMAPPER_FONT_FROM_ENCODING_PATH
);
277 GetConfig()->Write(configEntry
, info
->ToString());
280 wxUnusedVar(configEntry
);
281 #endif // wxUSE_CONFIG
288 bool wxFontMapper::GetAltForEncoding(wxFontEncoding encoding
,
289 wxNativeEncodingInfo
*info
,
290 const wxString
& facename
,
294 // we need a flag to prevent infinite recursion which happens, for
295 // example, when GetAltForEncoding() is called from an OnPaint() handler:
296 // in this case, wxYield() which is called from wxMessageBox() we use here
297 // will lead to another call of OnPaint() and hence to another call of
298 // GetAltForEncoding() -- and it is impossible to catch this from the user
299 // code because we are called from wxFont ctor implicitly.
301 // assume we're always called from the main thread, so that it is safe to
303 static bool s_inGetAltForEncoding
= false;
305 if ( interactive
&& s_inGetAltForEncoding
)
308 ReentrancyBlocker
blocker(s_inGetAltForEncoding
);
311 wxCHECK_MSG( info
, false, wxT("bad pointer in GetAltForEncoding") );
313 info
->facename
= facename
;
315 if ( encoding
== wxFONTENCODING_DEFAULT
)
317 encoding
= wxFont::GetDefaultEncoding();
320 // if we failed to load the system default encoding, something is really
321 // wrong and we'd better stop now -- otherwise we will go into endless
322 // recursion trying to create the font in the msg box with the error
324 if ( encoding
== wxFONTENCODING_SYSTEM
)
326 wxLogFatalError(_("can't load any font, aborting"));
328 // wxLogFatalError doesn't return
331 wxString configEntry
,
332 encName
= GetEncodingName(encoding
);
333 if ( !facename
.empty() )
335 configEntry
= facename
+ wxT("_");
337 configEntry
+= encName
;
339 #if wxUSE_CONFIG && wxUSE_FILECONFIG
340 // do we have a font spec for this encoding?
342 wxFontMapperPathChanger
path(this, FONTMAPPER_FONT_FROM_ENCODING_PATH
);
345 fontinfo
= GetConfig()->Read(configEntry
);
348 // this special value means that we don't know of fonts for this
349 // encoding but, moreover, have already asked the user as well and he
350 // didn't specify any font neither
351 if ( fontinfo
== FONTMAPPER_FONT_DONT_ASK
)
355 else // use the info entered the last time
357 if ( !fontinfo
.empty() && !facename
.empty() )
359 // we tried to find a match with facename -- now try without it
360 fontinfo
= GetConfig()->Read(encName
);
363 if ( !fontinfo
.empty() )
365 if ( info
->FromString(fontinfo
) )
367 if ( wxTestFontEncoding(*info
) )
372 //else: no such fonts, look for something else
373 // (should we erase the outdated value?)
377 wxLogDebug(wxT("corrupted config data: string '%s' is not a valid font encoding info"),
381 //else: there is no information in config about this encoding
383 #endif // wxUSE_CONFIG
385 // now try to map this encoding to a compatible one which we have on this
387 wxFontEncodingArray equiv
= wxEncodingConverter::GetAllEquivalents(encoding
);
388 size_t count
= equiv
.GetCount();
389 bool foundEquivEncoding
= false;
390 wxFontEncoding equivEncoding
= wxFONTENCODING_SYSTEM
;
393 for ( size_t i
= 0; i
< count
&& !foundEquivEncoding
; i
++ )
395 // don't test for encoding itself, we already know we don't have it
396 if ( equiv
[i
] == encoding
)
399 if ( TestAltEncoding(configEntry
, equiv
[i
], info
) )
401 equivEncoding
= equiv
[i
];
403 foundEquivEncoding
= true;
412 wxString
title(m_titleDialog
);
414 title
<< wxTheApp
->GetAppDisplayName() << _(": unknown encoding");
417 wxString encDesc
= GetEncodingDescription(encoding
),
419 if ( foundEquivEncoding
)
421 // ask the user if he wants to override found alternative encoding
422 msg
.Printf(_("No font for displaying text in encoding '%s' found,\nbut an alternative encoding '%s' is available.\nDo you want to use this encoding (otherwise you will have to choose another one)?"),
423 encDesc
, GetEncodingDescription(equivEncoding
));
427 msg
.Printf(_("No font for displaying text in encoding '%s' found.\nWould you like to select a font to be used for this encoding\n(otherwise the text in this encoding will not be shown correctly)?"),
431 // the question is different in 2 cases so the answer has to be
432 // interpreted differently as well
433 int answer
= foundEquivEncoding
? wxNO
: wxYES
;
435 if ( wxMessageBox(msg
, title
,
436 wxICON_QUESTION
| wxYES_NO
,
437 m_windowParent
) == answer
)
440 data
.SetEncoding(encoding
);
441 data
.EncodingInfo() = *info
;
442 wxFontDialog
dialog(m_windowParent
, data
);
443 if ( dialog
.ShowModal() == wxID_OK
)
445 wxFontData retData
= dialog
.GetFontData();
447 *info
= retData
.EncodingInfo();
448 info
->encoding
= retData
.GetEncoding();
450 #if wxUSE_CONFIG && wxUSE_FILECONFIG
451 // remember this in the config
452 wxFontMapperPathChanger
path2(this,
453 FONTMAPPER_FONT_FROM_ENCODING_PATH
);
456 GetConfig()->Write(configEntry
, info
->ToString());
458 #endif // wxUSE_CONFIG
462 //else: the user canceled the font selection dialog
466 // the user doesn't want to select a font for this encoding
467 // or selected to use equivalent encoding
469 // remember it to avoid asking the same question again later
470 #if wxUSE_CONFIG && wxUSE_FILECONFIG
471 wxFontMapperPathChanger
path2(this,
472 FONTMAPPER_FONT_FROM_ENCODING_PATH
);
479 ? (const wxChar
*)info
->ToString().c_str()
480 : FONTMAPPER_FONT_DONT_ASK
483 #endif // wxUSE_CONFIG
486 //else: we're in non-interactive mode
488 wxUnusedVar(equivEncoding
);
489 #endif // wxUSE_FONTDLG
491 return foundEquivEncoding
;
494 bool wxFontMapper::GetAltForEncoding(wxFontEncoding encoding
,
495 wxFontEncoding
*encodingAlt
,
496 const wxString
& facename
,
499 wxCHECK_MSG( encodingAlt
, false,
500 wxT("wxFontEncoding::GetAltForEncoding(): NULL pointer") );
502 wxNativeEncodingInfo info
;
503 if ( !GetAltForEncoding(encoding
, &info
, facename
, interactive
) )
506 *encodingAlt
= info
.encoding
;
511 bool wxFontMapper::IsEncodingAvailable(wxFontEncoding encoding
,
512 const wxString
& facename
)
514 wxNativeEncodingInfo info
;
516 if ( !wxGetNativeFontEncoding(encoding
, &info
) )
519 info
.facename
= facename
;
520 return wxTestFontEncoding(info
);
523 #endif // wxUSE_FONTMAP