/**
FIXME
*/
-wxFont Objects:
-;
+wxFont wxNullFont;
/**
FIXME
*/
-wxFont wxNullFont;
+wxFont wxNORMAL_FONT;
/**
FIXME
*/
-wxFont Pointers:
-;
+wxFont wxSMALL_FONT;
/**
FIXME
*/
-wxFont wxNORMAL_FONT;
+wxFont wxITALIC_FONT;
/**
FIXME
*/
-wxFont wxSMALL_FONT;
+wxFont wxSWISS_FONT;
+
+
+
+// ============================================================================
+// Global functions/macros
+// ============================================================================
+
+/** @ingroup group_funcmacro_misc */
+//@{
/**
- FIXME
+ Converts string to a wxFont best represented by the given string. Returns
+ @true on success.
+
+ @see wxToString(const wxFont&)
+
+ @header{wx/font.h}
*/
-wxFont wxITALIC_FONT;
+bool wxFromString(const wxString& string, wxFont* font);
/**
- FIXME
+ Converts the given wxFont into a string.
+
+ @see wxFromString(const wxString&, wxFont*)
+
+ @header{wx/font.h}
*/
-wxFont wxSWISS_FONT;
+wxString wxToString(const wxFont& font);
+//@}