Pango.AttrIterator

Fields

None

Methods

  copy ()
  destroy ()
  get (type)
  get_attrs ()
  get_font (desc, language, extra_attrs)
  next ()
  range ()

Details

class Pango.AttrIterator

The Pango.AttrIterator structure is used to represent an iterator 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.

copy()[source]
Returns:the newly allocated Pango.AttrIterator, which should be freed with Pango.AttrIterator.destroy().
Return type:Pango.AttrIterator

Copy a Pango.AttrIterator

destroy()[source]

Destroy a Pango.AttrIterator and free all associated memory.

get(type)[source]
Parameters:type (Pango.AttrType) – the type of attribute to find.
Returns:the current attribute of the given type, or None if no attribute of that type applies to the current location.
Return type:Pango.Attribute or None

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 Pango.Attribute.destroy() on each value and g_slist_free() on the list.
Return type:[Pango.Attribute]

Gets a list of all attributes at the current position of the iterator.

New in version 1.2.

get_font(desc, language, extra_attrs)[source]
Parameters:

Get the font and other attributes at the current iterator position.

next()[source]
Returns:False if the iterator is at the end of the list, otherwise True
Return type:bool

Advance the iterator until the next change of style.

range()[source]
Returns:
start:location to store the start of the range
end:location to store the end of the range
Return type:(start: int, end: int)

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 GObject.G_MAXINT.