.\" This is a wxWidgets manpage page generated from the XML docs .TH wxFontList 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxFontList \- The list of previously-created fonts .SH DESCRIPTION A font list is a list containing all fonts which have been created. There is only one instance of this class: wxTheFontList . Use this object to search for a previously created font of the desired type and create it if not already found. In some windowing systems, the font may be a scarce resource, so it is best to reuse old resources if possible. When an application finishes, all fonts will be deleted and their resources freed, eliminating the possibility of `memory leaks'. .SH "PARENTS" wxList wxObject .SH "INCLUDE FILES" wx/gdicmn.h .SH MEMBERS .SS wxFontList () Constructor. The application should not construct its own font list: use the object pointer wxTheFontList . .SS void AddFont (wxFont *font) Used by wxWidgets to add a font to the list, called in the font constructor. .SS wxFont * FindOrCreateFont (int point_sizeint familyint styleint weightbool underline = falseconst wxString& facename = NULLwxFontEncoding encoding = wxFONTENCODING_DEFAULT) Finds a font of the given specification, or creates one and adds it to the list. See the wxFont constructor for details of the arguments. .SS void RemoveFont (wxFont *font) Used by wxWidgets to remove a font from the list. .SH "SEE ALSO" wxList wxObject wxFont .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.