*********** wx.FontList *********** Inheritance diagram for `wx.FontList`: | .. inheritance-diagram:: wx.FontList | Description =========== A font list is a list containing all fonts which have been created. There is only one instance of this class: `wx.TheFontList`. 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'. .. seealso:: `wx.Font `_ Derived From ^^^^^^^^^^^^^ * `wx.Object `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `FindOrCreateFont <#FindOrCreateFont>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__() `No docstrings available for this method.` -------- .. method:: FindOrCreateFont(point_size, family, style, weight, underline=False, facename="", encoding=wx.FONTENCODING_DEFAULT) Finds a font of the given specification, or creates one and adds it to the list. See the `wx.Font `_ constructor for details of the arguments. **Parameters:** * `point_size` (int) * `family` (int) * `style` (int) * `weight` (int) * `underline` (bool) * `facename` (string) * `encoding` (int) | **Returns:** `wx.Font `_ .. seealso:: `wx.Font `_