PangoFontsetClass

PangoFontsetClass: @parent_class: parent #GObjectClass. @get_font: a function to get the font in the fontset that contains the best glyph for the given Unicode character; see pango_fontset_get_font(). @get_metrics: a function to get overall metric information for the fonts in the fontset; see pango_fontset_get_metrics(). @get_language: a function to get the language of the fontset. @foreach: a function to loop over the fonts in the fontset. See pango_fontset_foreach().

The #PangoFontsetClass structure holds the virtual functions for a particular #PangoFontset implementation.

version(Backend)
struct PangoFontsetClass {
GObjectClass parent_class;
PangoFont* function(PangoFontset* fontset, guint wc) get_font;
PangoFontMetrics* function(PangoFontset* fontset) get_metrics;
PangoLanguage* function(PangoFontset* fontset) get_language;
void function(PangoFontset* fontset, PangoFontsetForeachFunc func, gpointer data) foreach_;
void function() _pango_reserved1;
void function() _pango_reserved2;
void function() _pango_reserved3;
void function() _pango_reserved4;
}

Meta