- if (style == _("italic")) istyle = wxITALIC;
- else if (style == _("slant")) istyle = wxSLANT;
- if (weight == _("bold")) iweight = wxBOLD;
- else if (weight == _("light")) iweight = wxLIGHT;
-
- bool underlined = GetBool(_("underlined"), FALSE);
-
- wxString encoding = GetParamValue(_("encoding"));
- // FIXME - handle encoding
-
- wxString faces = GetParamValue(_("face"));
+ if (style == _T("italic")) istyle = wxITALIC;
+ else if (style == _T("slant")) istyle = wxSLANT;
+ if (weight == _T("bold")) iweight = wxBOLD;
+ else if (weight == _T("light")) iweight = wxLIGHT;
+
+ wxString family = GetParamValue(_T("family"));
+ int ifamily = wxDEFAULT;
+ if (family == _T("decorative")) ifamily = wxDECORATIVE;
+ else if (family == _T("roman")) ifamily = wxROMAN;
+ else if (family == _T("script")) ifamily = wxSCRIPT;
+ else if (family == _T("swiss")) ifamily = wxSWISS;
+ else if (family == _T("modern")) ifamily = wxMODERN;
+
+ bool underlined = GetBool(_T("underlined"), FALSE);
+
+ wxString encoding = GetParamValue(_T("encoding"));
+ wxFontMapper mapper;
+ wxFontEncoding enc = wxFONTENCODING_DEFAULT;
+ if (!encoding.IsEmpty()) enc = mapper.CharsetToEncoding(encoding);
+ if (enc == wxFONTENCODING_SYSTEM) enc = wxFONTENCODING_SYSTEM;
+
+ wxString faces = GetParamValue(_T("face"));