Libraries:Gtk:Pango:Item
Types
T
Constants
Nil : T
Functions
GetType() : Gtk.GObject.Type.T
New() : Gtk.Pango.Item.T
Creates a new T structure initialized to default values.
Methods
:"="(_ @ T, _ @ T)
:Analysis(self @ T) : Gtk.Pango.Analysis.T
:Copy(self @ T) : Gtk.Pango.Item.T
Copy an existing T structure.
item | a T, may be NULL |
Returns | the newly allocated T, which should be freed with Free, or NULL if item was NULL. |
:Free(self @ T) : Std.Object.T
:Length(self @ T) : Std.Integer.SmallT
:NumChars(self @ T) : Std.Integer.SmallT
:Offset(self @ T) : Std.Integer.SmallT
:Split(self @ T, split_index @ Std.Integer.SmallT, split_offset @ Std.Integer.SmallT) : Gtk.Pango.Item.T
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 Split can't count the char length of the split items itself.
orig | a T |
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 and split_index |
Returns | new item representing text before split_index, which should be freed with Free. |