Pango.AttrIterator¶
Fields¶
None
Methods¶
|
|
|
|
|
|
|
|
|
|
|
|
|
Details¶
- class Pango.AttrIterator¶
A
PangoAttrIteratoris used to iterate through aPangoAttrList.A new iterator is created with [method`Pango`.AttrList.get_iterator]. Once the iterator is created, it can be advanced through the style changes in the text using [method`Pango`.AttrIterator.next]. At each style change, the range of the current style segment and the attributes currently in effect can be queried.
- copy()[source]¶
- Returns:
the newly allocated
PangoAttrIterator, which should be freed with [method`Pango`.AttrIterator.destroy]- Return type:
Copy a
PangoAttrIterator.
- get(type)[source]¶
- Parameters:
type (
Pango.AttrType) – the type of attribute to find- Returns:
the current attribute of the given type, or
Noneif no attribute of that type applies to the current location.- Return type:
Find the current attribute of a particular type at the iterator location.
When multiple attributes of the same type overlap, the attribute whose range starts closest to the current location is used.
- get_attrs()[source]¶
- Returns:
a list of all attributes for the current range. To free this value, call [method`Pango`.Attribute.destroy] on each value and g_slist_free() on the list.
- Return type:
Gets a list of all attributes at the current position of the iterator.
New in version 1.2.
- get_font(desc)[source]¶
- Parameters:
desc (
Pango.FontDescription) – aPangoFontDescriptionto fill in with the current values. The family name in this structure will be set using [method`Pango`.FontDescription.set_family_static] using values from an attribute in thePangoAttrListassociated with the iterator, so if you plan to keep it around, you must call:pango_font_description_set_family (desc, pango_font_description_get_family (desc)).- Returns:
- language:
location to store language tag for item, or
Noneif none is found.- extra_attrs:
location in which to store a list of non-font attributes at the the current position; only the highest priority value of each attribute will be added to this list. In order to free this value, you must call [method`Pango`.Attribute.destroy] on each member.
- Return type:
(language:
Pango.Language, extra_attrs: [Pango.Attribute])
Get the font and other attributes at the current iterator position.
- range()[source]¶
- Returns:
- start:
location to store the start of the range
- end:
location to store the end of the range
- Return type:
Get the range of the current segment.
Note that the stored return values are signed, not unsigned like the values in
PangoAttribute. To deal with this API oversight, stored return values that wouldn’t fit into a signed integer are clamped toGObject.G_MAXINT.