.. include:: headings.inc .. _FontList: ========================================================================================================================================== |phoenix_title| **FontList** ========================================================================================================================================== A font list is a list containing all fonts which have been created. There is only one instance of this class: ``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:: :ref:`Font` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **FontList** .. raw:: html

Inheritance diagram of FontList

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~FontList.__init__` Constructor. :meth:`~FontList.FindOrCreateFont` Finds a font of the given specification, or creates one and adds it to the list. ================================================================================ ================================================================================ | |api| Class API =============== .. class:: FontList(object) A font list is a list containing all fonts which have been created. **Possible constructors**:: FontList() .. method:: __init__(self) Constructor. The application should not construct its own font list: use the object pointer ``TheFontList`` . .. method:: FindOrCreateFont(self, point_size, family, style, weight, underline=False, facename='', encoding=FONTENCODING_DEFAULT) Finds a font of the given specification, or creates one and adds it to the list. See the :ref:`Font constructor ` for details of the arguments. :param `point_size`: :type `point_size`: int :param `family`: :type `family`: FontFamily :param `style`: :type `style`: FontStyle :param `weight`: :type `weight`: FontWeight :param `underline`: :type `underline`: bool :param `facename`: :type `facename`: string :param `encoding`: :type `encoding`: FontEncoding :rtype: :ref:`Font`