#include "wx/msgdlg.h"
#include "wx/fontdlg.h"
#include "wx/choicdlg.h"
+#include "wx/encinfo.h"
#include "wx/encconv.h"
{
}
+bool wxFontMapper::IsWxFontMapper()
+{ return true; }
+
+/* static */
+wxFontMapper *wxFontMapper::Get()
+{
+ wxFontMapperBase *fontmapper = wxFontMapperBase::Get();
+ wxASSERT_MSG(fontmapper->IsWxFontMapper(), wxT("GUI code requested a wxFontMapper but we only have a wxFontMapperBase."));
+ // Now return it anyway because there's a chance the GUI code might just
+ // only want to call wxFontMapperBase functions.
+ return (wxFontMapper*)fontmapper;
+}
+
wxFontEncoding
wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive)
{