class WXDLLIMPEXP_BASE wxConfigBase;
#endif // wxUSE_CONFIG
-class WXDLLIMPEXP_BASE wxFontMapper;
+class WXDLLIMPEXP_CORE wxFontMapper;
#if wxUSE_GUI
class WXDLLIMPEXP_CORE wxWindow;
#endif // wxUSE_GUI
// ============================================================================
-// wxFontMapper manages user-definable correspondence between wxWindows font
+// wxFontMapper manages user-definable correspondence between wxWidgets font
// encodings and the fonts present on the machine.
//
// This is a singleton class, font mapper objects can only be accessed using
class WXDLLIMPEXP_BASE wxFontMapperBase
{
+ // For IsWxFontMapper()
+ friend class WXDLLIMPEXP_CORE wxFontMapper;
public:
// constructtor and such
// ---------------------
virtual ~wxFontMapperBase();
// return instance of the wxFontMapper singleton
- static wxFontMapper *Get();
+ // wxBase code only cares that it's a wxFontMapperBase
+ // In wxBase, wxFontMapper is only forward declared
+ // so one cannot implicitly cast from it to wxFontMapperBase.
+ static wxFontMapperBase *Get();
// set the singleton to 'mapper' instance and return previous one
static wxFontMapper *Set(wxFontMapper *mapper);
// NB: hard-coded now, but might change later (read it from config?)
static wxString GetEncodingDescription(wxFontEncoding encoding);
+ // find the encoding corresponding to the given name, inverse of
+ // GetEncodingName() and less general than CharsetToEncoding()
+ //
+ // returns wxFONTENCODING_MAX if the name is not a supported encoding
+ static wxFontEncoding GetEncodingFromName(const wxString& name);
+
// functions which allow to configure the config object used: by default,
// the global one (from wxConfigBase::Get() will be used) and the default
int NonInteractiveCharsetToEncoding(const wxString& charset);
private:
+ // pseudo-RTTI since we aren't a wxObject.
+ virtual bool IsWxFontMapper();
+
// the global fontmapper object or NULL
static wxFontMapper *sm_instance;
bool interactive = true);
// checks whether given encoding is available in given face or not.
- // If no facename is given,
+ //
+ // if no facename is given (default), return true if it's available in any
+ // facename at alll.
virtual bool IsEncodingAvailable(wxFontEncoding encoding,
const wxString& facename = wxEmptyString);
// the title for the dialogs (note that default is quite reasonable)
void SetDialogTitle(const wxString& title) { m_titleDialog = title; }
+ // GUI code needs to know it's a wxFontMapper because there
+ // are additional methods in the subclass.
+ static wxFontMapper *Get();
protected:
// GetAltForEncoding() helper: tests for the existence of the given
wxWindow *m_windowParent;
private:
- DECLARE_NO_COPY_CLASS(wxFontMapper)
-};
-
-#else // !wxUSE_GUI
+ // pseudo-RTTI since we aren't a wxObject.
+ virtual bool IsWxFontMapper();
-class WXDLLIMPEXP_BASE wxFontMapper : public wxFontMapperBase
-{
+ DECLARE_NO_COPY_CLASS(wxFontMapper)
};
-#endif // wxUSE_GUI/!wxUSE_GUI
+#endif // wxUSE_GUI
// ----------------------------------------------------------------------------
// global variables
// ----------------------------------------------------------------------------
-// the default font mapper for wxWindows programs do NOT use! This is for
+// the default font mapper for wxWidgets programs do NOT use! This is for
// backward compatibility, use wxFontMapper::Get() instead
#define wxTheFontMapper (wxFontMapper::Get())