Class
PangoFontFamily
Description [src]
abstract class Pango.FontFamily : GObject.Object
implements Gio.ListModel {
/* 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.
Instance methods
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
Methods inherited from GListModel (5)
g_list_model_get_item
Get the item at position
.
g_list_model_get_item_type
Gets the type of the items in list
.
g_list_model_get_n_items
Gets the number of items in list
.
g_list_model_get_object
Get the item at position
.
g_list_model_items_changed
Emits the GListModel::items-changed
signal on list
.
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.
Signals inherited from GListModel (1)
GListModel::items-changed
This signal is emitted whenever items were added to or removed
from list
. At position
, removed
items were removed and added
items were added in their place.
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.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