Copy a Pango.AttrIterator.
the newly allocated Pango.AttrIterator, which should be freed with Pango.AttrIterator.destroy
Destroy a Pango.AttrIterator and free all associated memory.
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.
the current attribute of the given type, or null if no attribute of that type applies to the current location.
Gets a list of all attributes at the current position of the iterator.
a list of all attributes for the current range. To free this value, call Pango.Attribute.destroy on each value and g_slist_free() on the list.
Get the font and other attributes at the current iterator position.
a Pango.FontDescription to fill in with the current values. The family name in this structure will be set using Pango.FontDescription.set_family_static using values from an attribute in the Pango.AttrList associated 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)).
Advance the iterator until the next change of style.
false if the iterator is at the end of the list, otherwise true
Get the range of the current segment.
Note that the stored return values are signed, not unsigned
like the values in Pango.Attribute. To deal with this API
oversight, stored return values that wouldn't fit into
a signed integer are clamped to G_MAXINT.
A Pango.AttrIterator is used to iterate through a Pango.AttrList.
A new iterator is created with Pango.AttrList.get_iterator. Once the iterator is created, it can be advanced through the style changes in the text using Pango.AttrIterator.next. At each style change, the range of the current style segment and the attributes currently in effect can be queried.