+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ return DoCreate(size, wxDefaultSize, false, family, style,
+ weight, underlined, face, encoding);
+ }
+
+ bool Create(const wxSize& pixelSize,
+ int family,
+ int style,
+ int weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ return DoCreate(-1, pixelSize, true, family, style,
+ weight, underlined, face, encoding);
+ }