wx.FontList¶
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’.
See also
Class Hierarchy¶
Methods Summary¶
Constructor. |
|
Finds a font of the given specification, or creates one and adds it to the list. |
Class API¶
- class wx.FontList(object)¶
Possible constructors:
FontList() -> None
A font list is a list containing all fonts which have been created.
Methods¶
- __init__(self)¶
Constructor.
The application should not construct its own font list: use the object pointer wx.TheFontList .
- Return type:
None
- FindOrCreateFont(self, *args, **kw)¶
-
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 Font constructor for details of the arguments.
- Parameters:
point_size (int)
family (FontFamily)
style (FontStyle)
weight (FontWeight)
underline (bool)
facename (string)
encoding (FontEncoding)
- Return type:
FindOrCreateFont (self, fontInfo)
Finds a font of the given specification, or creates one and adds it to the list.
See the Font constructor for details of the arguments.
- Parameters:
fontInfo (wx.FontInfo)
- Return type:
Added in version 4.1/wxWidgets-3.1.1.