Libraries:Gtk:Pango:LayoutLine
Types
T
Constants
Nil : T
Functions
GetType() : Gtk.GObject.Type.T
Methods
:"="(_ @ T, _ @ T)
:GetExtents(self @ T, ink_rect @ Gtk.Pango.Rectangle.T, logical_rect @ Gtk.Pango.Rectangle.T) : Std.Object.T
Computes the logical and ink extents of a layout line. See Gtk.Pango.Font.GetGlyphExtents for details about the interpretation of the rectangles.
line | a T |
ink_rect | rectangle used to store the extents of the glyph string as drawn, or NULL. [out][allow-none] |
logical_rect | rectangle used to store the logical extents of the glyph string, or NULL. [out][allow-none] |
:GetPixelExtents(self @ T, ink_rect @ Gtk.Pango.Rectangle.T, logical_rect @ Gtk.Pango.Rectangle.T) : Std.Object.T
Computes the logical and ink extents of layout_line in device units. This function just calls GetExtents followed by two Gtk.Pango.Global.ExtentsToPixels calls, rounding ink_rect and logical_rect such that the rounded rectangles fully contain the unrounded one (that is, passes them as first argument to Gtk.Pango.Global.ExtentsToPixels).
layout_line | a T |
ink_rect | rectangle used to store the extents of the glyph string as drawn, or NULL. [out][allow-none] |
logical_rect | rectangle used to store the logical extents of the glyph string, or NULL. [out][allow-none] |
:GetXRanges(self @ T, start_index @ Std.Integer.SmallT, end_index @ Std.Integer.SmallT, ranges @ Std.Object.T, n_ranges @ Std.Object.T) : Std.Object.T
Gets a list of visual ranges corresponding to a given logical range. This list is not necessarily minimal - there may be consecutive ranges which are adjacent. The ranges will be sorted from left to right. The ranges are with respect to the left edge of the entire layout, not with respect to the line.
line | a T |
start_index | Start byte index of the logical range. If this value is less than the start index for the line, then the first range will extend all the way to the leading edge of the layout. Otherwise it will start at the leading edge of the first character. |
end_index | Ending byte index of the logical range. If this value is greater than the end index for the line, then the last range will extend all the way to the trailing edge of the layout. Otherwise, it will end at the trailing edge of the last character. |
ranges | location to store a pointer to an array of ranges. The array will be of length 2*n_ranges, with each range starting at (*ranges)[2*n] and of width (*ranges)[2*n + 1] - (*ranges)[2*n]. This array must be freed with g_free(). The coordinates are relative to the layout and are in Pango units. [out][array length=n_ranges][transfer full] |
n_ranges | The number of ranges stored in ranges. |
:IndexToX(self @ T, index_ @ Std.Integer.SmallT, trailing @ Std.Symbol.T, x_pos @ Std.Object.T) : Std.Object.T
Converts an index within a line to a X position.
line | a T |
index_ | byte offset of a grapheme within the layout |
trailing | an integer indicating the edge of the grapheme to retrieve the position of. If > 0, the trailing edge of the grapheme, if 0, the leading of the grapheme. |
x_pos | location to store the x_offset (in Pango unit). [out] |
:IsParagraphStart(self @ T) : Std.Integer.SmallT
:Layout(self @ T) : Gtk.Pango.Layout.T
:Length(self @ T) : Std.Integer.SmallT
:Ref(self @ T) : Gtk.Pango.LayoutLine.T
:ResolvedDir(self @ T) : Std.Integer.SmallT
:Runs(self @ T) : Std.Object.T
:StartIndex(self @ T) : Std.Integer.SmallT
:Unref(self @ T) : Std.Object.T
Decrease the reference count of a T by one. If the result is zero, the line and all associated memory will be freed.
line | a T |
:XToIndex(self @ T, x_pos @ Std.Integer.SmallT, index_ @ Std.Object.T, trailing @ Std.Object.T) : Std.Symbol.T
Converts from x offset to the byte index of the corresponding character within the text of the layout. If x_pos is outside the line, index_ and trailing will point to the very first or very last position in the line. This determination is based on the resolved direction of the paragraph; for example, if the resolved direction is right-to-left, then an X position to the right of the line (after it) results in 0 being stored in index_ and trailing. An X position to the left of the line results in index_ pointing to the (logical) last grapheme in the line and trailing being set to the number of characters in that grapheme. The reverse is true for a left-to-right line.
line | a T |
x_pos | the X offset (in Pango units) from the left edge of the line. |
index_ | location to store calculated byte index for the grapheme in which the user clicked. [out] |
trailing | location to store an integer indicating where in the grapheme the user clicked. It will either be zero, or the number of characters in the grapheme. 0 represents the leading edge of the grapheme. [out] |
Returns | FALSE if x_pos was outside the line, TRUE if inside |