PangoLayoutLine

PangoLayoutLine: @start_index: start of line as byte index into layout->text @length: length of line in bytes @is_paragraph_start: #TRUE if this is the first line of the paragraph @resolved_dir: #Resolved PangoDirection of line

The #PangoLayoutLine structure represents one of the lines resulting from laying out a paragraph via #PangoLayout. #PangoLayoutLine structures are obtained by calling pango_layout_get_line() and are only valid until the text, attributes, or settings of the parent #PangoLayout are modified.

Routines for rendering PangoLayout objects are provided in code specific to each rendering system.

extern (C)
struct PangoLayoutLine {
PangoLayout* layout;
gint start_index;
gint length;
GSList* runs;
}

Meta