Class

PangoFontFamily

Description [src]

abstract class Pango.FontFamily : GObject.Object
{
  /* No available fields */
}

A PangoFontFamily is used to represent a family of related font faces.

The font faces in a family share a common design, but differ in slant, weight, width or other aspects.

Ancestors

Instance methods

pango_font_family_get_face

Gets the PangoFontFace of family with the given name.

since: 1.46

pango_font_family_get_name

Gets the name of the family.

pango_font_family_is_monospace

A monospace font is a font designed for text display where the the characters form a regular grid.

since: 1.4

pango_font_family_is_variable

A variable font is a font which has axes that can be modified to produce different faces.

since: 1.44

pango_font_family_list_faces

Lists the different font faces that make up family.

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Signals

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct PangoFontFamilyClass {
  GObjectClass parent_class;
  void (* list_faces) (
    PangoFontFamily* family,
    PangoFontFace*** faces,
    int* n_faces
  );
  const char* (* get_name) (
    PangoFontFamily* family
  );
  gboolean (* is_monospace) (
    PangoFontFamily* family
  );
  gboolean (* is_variable) (
    PangoFontFamily* family
  );
  PangoFontFace* (* get_face) (
    PangoFontFamily* family,
    const char* name
  );
  void (* _pango_reserved2) (
void
  );
  
}

No description available.

Class members
parent_class: GObjectClass

No description available.

list_faces: void (* list_faces) ( PangoFontFamily* family, PangoFontFace*** faces, int* n_faces )

No description available.

get_name: const char* (* get_name) ( PangoFontFamily* family )

No description available.

is_monospace: gboolean (* is_monospace) ( PangoFontFamily* family )

No description available.

is_variable: gboolean (* is_variable) ( PangoFontFamily* family )

No description available.

get_face: PangoFontFace* (* get_face) ( PangoFontFamily* family, const char* name )

No description available.

_pango_reserved2: void (* _pango_reserved2) ( void )

No description available.

Virtual methods

Pango.FontFamilyClass.get_face

Gets the PangoFontFace of family with the given name.

since: 1.46

Pango.FontFamilyClass.get_name

Gets the name of the family.

Pango.FontFamilyClass.is_monospace

A monospace font is a font designed for text display where the the characters form a regular grid.

since: 1.4

Pango.FontFamilyClass.is_variable

A variable font is a font which has axes that can be modified to produce different faces.

since: 1.44

Pango.FontFamilyClass.list_faces

Lists the different font faces that make up family.