// ----------------------------------------------------------------------------
// convert to/from the string representation: format is
-// registry-encoding[-facename]
+// encodingid;registry;encoding[;facename]
bool wxNativeEncodingInfo::FromString(const wxString& s)
{
- wxStringTokenizer tokenizer(s, _T("-"));
+ wxStringTokenizer tokenizer(s, _T(";"));
+ // cannot use "-" because it may be part of encoding name
+
+ wxString encid = tokenizer.GetNextToken();
+ long enc;
+ if ( !encid.ToLong(&enc) )
+ return FALSE;
+ encoding = (wxFontEncoding)enc;
xregistry = tokenizer.GetNextToken();
if ( !xregistry )
wxString wxNativeEncodingInfo::ToString() const
{
wxString s;
- s << xregistry << _T('-') << xencoding;
+ s << (long)encoding << _T(';') << xregistry << _T(';') << xencoding;
if ( !!facename )
{
- s << _T('-') << facename;
+ s << _T(';') << facename;
}
return s;
return FALSE;
}
+ info->encoding = encoding;
+
return TRUE;
}
wxString xstyle;
switch (style)
{
- case wxITALIC: xstyle = wxT("i"); break;
- case wxSLANT: xstyle = wxT("o"); break;
- case wxNORMAL: xstyle = wxT("r"); break;
- default: xstyle = wxT("*"); break;
+ case wxSLANT:
+ fontSpec.Printf(wxT("-*-%s-*-o-*-*-*-*-*-*-*-*-*-*"),
+ xfamily.c_str());
+ if ( wxTestFontSpec(fontSpec) )
+ {
+ xstyle = wxT("o");
+ break;
+ }
+ // fall through - try wxITALIC now
+
+ case wxITALIC:
+ fontSpec.Printf(wxT("-*-%s-*-i-*-*-*-*-*-*-*-*-*-*"),
+ xfamily.c_str());
+ if ( wxTestFontSpec(fontSpec) )
+ {
+ xstyle = wxT("i");
+ }
+ else if ( style == wxITALIC ) // and not wxSLANT
+ {
+ // try wxSLANT
+ fontSpec.Printf(wxT("-*-%s-*-o-*-*-*-*-*-*-*-*-*-*"),
+ xfamily.c_str());
+ if ( wxTestFontSpec(fontSpec) )
+ {
+ xstyle = wxT("o");
+ }
+ else
+ {
+ // no italic, no slant - leave default
+ xstyle = wxT("*");
+ }
+ }
+ break;
+
+ default:
+ wxFAIL_MSG(_T("unknown font style"));
+ // fall back to normal
+
+ case wxNORMAL:
+ xstyle = wxT("r");
+ break;
}
wxString xweight;