Class
PangoFontFamily
Description [src]
abstract class Pango.FontFamily : GObject.Object {
parent_instance: GObject
}
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.
Instance methods
pango_font_family_get_face
Gets the PangoFontFace
of family
with the given name.
Available 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.
Available 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.
Available since: 1.44
pango_font_family_list_faces
Lists the different font faces that make up family
.
Signals
Signals inherited from GObject (1)
GObject.Object::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
);
}
Class members
parent_class |
|
No description available. | |
list_faces |
|
No description available. | |
get_name |
|
No description available. | |
is_monospace |
|
No description available. | |
is_variable |
|
No description available. | |
get_face |
|
No description available. | |
_pango_reserved2 |
|
No description available. |
Virtual methods
Pango.FontFamilyClass.get_face
Gets the PangoFontFace
of family
with the given name.
Available 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.
Available since: 1.4
Pango.FontFamilyClass.is_variable
A variable font is a font which has axes that can be modified to produce different faces.
Available since: 1.44
Pango.FontFamilyClass.list_faces
Lists the different font faces that make up family
.