pango.FontMap — an object that represents the set of fonts available for a particular rendering system.
| class pango.FontMap( | 
A pango.FontMap
object represents the set of fonts available for a particular rendering
system. There appears to be no way to retrieve a pango.FontMap
object in PyGTK.
    def load_font(context, desc)| 
 | the pango.Contextthe
font will be used with | 
| 
 | a pango.FontDescriptiondescribing the font to load | 
| Returns : | the loaded font , or Noneif
no font matched. | 
The load_font() method loads the pango.Font in the
fontmap that is the closest match for the pango.FontDescription 
specified by desc in the pango.Context
specified by context.
    def load_fontset(context, desc, language)| 
 | the pango.Contextthe
font will be used with | 
| 
 | a pango.FontDescriptiondescribing the font to load | 
| 
 | a pango.Languagethe fonts will be used for | 
| Returns : | a pango.FontSet, orNoneif no font matched. | 
The load_fontset() method loads a set
of pango.Font
objects in the fontmap that can be used to render a font matching the pango.FontDescription 
specified by desc for the pango.Language
specified by language in the pango.Context
specified by context.
    def list_families()| Returns : | a list of pango.FontFamilyobjects. | 
The list_families() method returns a
list of all pango.FontFamily 
objects for the fontmap.