]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontcmn.cpp
64 bit clean implementation
[wxWidgets.git] / src / common / fontcmn.cpp
index 20b8c303d021882cfdb6a38c175ca258c527b3c3..8a9063f5b344ea3714fd4a1441adfb2d9a8609ba 100644 (file)
@@ -799,3 +799,26 @@ bool wxNativeFontInfo::FromUserString(const wxString& s)
 }
 
 #endif // generic or wxMSW or wxOS2
+
+
+// wxFont <-> wxString utilities, used by wxConfig
+wxString wxToString(const wxFontBase& font)
+{
+    return font.IsOk() ? font.GetNativeFontInfoDesc()
+                       : wxString();
+}
+
+bool wxFromString(const wxString& str, wxFontBase *font)
+{
+    wxCHECK_MSG( font, false, _T("NULL output parameter") );
+
+    if ( str.empty() )
+    {
+        *font = wxNullFont;
+        return true;
+    }
+
+    return font->SetNativeFontInfo(str);
+}
+
+