Struct
PangoAttrSize
Description [src]
struct PangoAttrSize {
PangoAttribute attr;
int size;
guint absolute : 1;
}
The PangoAttrSize
structure is used to represent attributes which
set font size.
Structure members
attr
The common portion of the attribute.
size
Size of font, in units of 1/
PANGO_SCALE
of a point (forPANGO_ATTR_SIZE
) or of a device unit (forPANGO_ATTR_ABSOLUTE_SIZE
).absolute
Whether the font size is in device units or points. This field is only present for compatibility with Pango-1.8.0 (
PANGO_ATTR_ABSOLUTE_SIZE
was added in 1.8.1); and always will beFALSE
forPANGO_ATTR_SIZE
andTRUE
forPANGO_ATTR_ABSOLUTE_SIZE
.