PgItem

The PangoItem structure stores information about a segment of text.

Constructors

this
this(PangoItem* pangoItem, bool ownedRef)

Sets our main struct and passes it to the parent class.

this
this()

Creates a new PangoItem structure initialized to default values.

Destructor

A destructor is present on this object, but not explicitly documented in the source.

Members

Functions

copy
PgItem copy()

Copy an existing PangoItem structure.

free
void free()

Free a PangoItem and all associated memory.

getPgItemStruct
PangoItem* getPgItemStruct(bool transferOwnership)

Get the main Gtk struct

getStruct
void* getStruct()

the main Gtk struct as a void*

split
PgItem split(int splitIndex, int splitOffset)

Modifies orig to cover only the text after split_index, and returns a new item that covers the text before split_index that used to be in orig. 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 of orig (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 pango_item_split() can't count the char length of the split items itself.

Properties

analysis
PangoAnalysis analysis [@property getter]
PangoAnalysis analysis [@property setter]

analysis results for the item.

length
int length [@property getter]
int length [@property setter]

length of this item in bytes.

numChars
int numChars [@property getter]
int numChars [@property setter]

number of Unicode characters in the item.

offset
int offset [@property getter]
int offset [@property setter]

byte offset of the start of this item in text.

Static functions

getType
GType getType()

Variables

pangoItem
PangoItem* pangoItem;

the main Gtk struct