+ wxFont(const wxSize& pixelSize,
+ int family,
+ int style,
+ int weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ Init();
+
+ (void)Create(pixelSize, family, style, weight,
+ underlined, face, encoding);
+ }
+
+ wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0)
+ {
+ Init();
+
+ Create(info, hFont);
+ }
+
+ wxFont(const wxString& fontDesc);
+