Item
- class Item(**kwargs)
- Constructors:
Item()
new() -> Pango.Item
Constructors
Methods
- class Item
- apply_attrs(iter: AttrIterator) None
Add attributes to a
PangoItem
.The idea is that you have attributes that don’t affect itemization, such as font features, so you filter them out using
filter
, itemize your text, then reapply the attributes to the resulting items using this function.The
iter
should be positioned before the range of the item, and will be advanced past it. This function is meant to be called in a loop over the items resulting from itemization, while passing the iter to each call.Added in version 1.44.
- Parameters:
iter – a
PangoAttrIterator
- get_char_offset() int
Returns the character offset of the item from the beginning of the itemized text.
If the item has not been obtained from Pango’s itemization machinery, then the character offset is not available. In that case, this function returns -1.
Added in version 1.54.
- split(split_index: int, split_offset: int) Item
Modifies
orig
to cover only the text aftersplit_index
, and returns a new item that covers the text beforesplit_index
that used to be inorig
.You can think of
split_index
as the length of the returned item.split_index
may not be 0, and it may not be greater than or equal to the length oforig
(that is, there must be at least one byte assigned to each item, you can’t create a zero-length item).split_offset
is the length of the first item in chars, and must be provided because the text used to generate the item isn’t available, so:func:`~gi.repository.Pango.Item.split`
can’t count the char length of the split items itself.- Parameters:
split_index – byte index of position to split item, relative to the start of the item
split_offset – number of chars between start of
orig
andsplit_index