+ Font encoding support is ensured by several classes:
+ wxFont itself, but also wxFontEnumerator and wxFontMapper. wxFont encoding
+ support is reflected by a (new) constructor parameter @e encoding which takes
+ one of the following values (elements of enumeration type @c wxFontEncoding):
+
+ @beginDefList
+ @itemdef{wxFONTENCODING_SYSTEM,
+ The default encoding of the underlying
+ operating system (notice that this might be a "foreign" encoding for foreign
+ versions of Windows 9x/NT).}
+ @itemdef{wxFONTENCODING_DEFAULT,
+ The applications default encoding as returned by wxFont::GetDefaultEncoding.
+ On program startup, the applications default encoding is the same as
+ wxFONTENCODING_SYSTEM, but may be changed to make all the fonts created later
+ to use it (by default).}
+ @itemdef{wxFONTENCODING_ISO8859_1..15,
+ ISO8859 family encodings which are
+ usually used by all non-Microsoft operating systems.}
+ @itemdef{wxFONTENCODING_KOI8,
+ Standard Cyrillic encoding for the Internet
+ (but see also wxFONTENCODING_ISO8859_5 and wxFONTENCODING_CP1251).}
+ @itemdef{wxFONTENCODING_CP1250, Microsoft analogue of ISO8859-2}
+ @itemdef{wxFONTENCODING_CP1251, Microsoft analogue of ISO8859-5}
+ @itemdef{wxFONTENCODING_CP1252, Microsoft analogue of ISO8859-1}
+ @endDefList