PangoPDF Reference Manual |
---|
Layout Objects — Highlevel layout driver objects
struct PangoLayout; struct PangoLayoutIter; PangoLayout* pango_layout_new (PangoContext *context); PangoLayout* pango_layout_copy (PangoLayout *src); PangoContext* pango_layout_get_context (PangoLayout *layout); void pango_layout_context_changed (PangoLayout *layout); void pango_layout_set_text (PangoLayout *layout, const char *text, int length); const char* pango_layout_get_text (PangoLayout *layout); void pango_layout_set_markup (PangoLayout *layout, const char *markup, int length); void pango_layout_set_markup_with_accel (PangoLayout *layout, const char *markup, int length, gunichar accel_marker, gunichar *accel_char); void pango_layout_set_attributes (PangoLayout *layout, PangoAttrList *attrs); PangoAttrList* pango_layout_get_attributes (PangoLayout *layout); void pango_layout_set_font_description (PangoLayout *layout, const PangoFontDescription *desc); void pango_layout_set_width (PangoLayout *layout, int width); int pango_layout_get_width (PangoLayout *layout); void pango_layout_set_wrap (PangoLayout *layout, PangoWrapMode wrap); PangoWrapMode pango_layout_get_wrap (PangoLayout *layout); enum PangoWrapMode; #define PANGO_TYPE_WRAP_MODE void pango_layout_set_indent (PangoLayout *layout, int indent); int pango_layout_get_indent (PangoLayout *layout); int pango_layout_get_spacing (PangoLayout *layout); void pango_layout_set_spacing (PangoLayout *layout, int spacing); void pango_layout_set_justify (PangoLayout *layout, gboolean justify); gboolean pango_layout_get_justify (PangoLayout *layout); void pango_layout_set_alignment (PangoLayout *layout, PangoAlignment alignment); PangoAlignment pango_layout_get_alignment (PangoLayout *layout); void pango_layout_set_tabs (PangoLayout *layout, PangoTabArray *tabs); PangoTabArray* pango_layout_get_tabs (PangoLayout *layout); void pango_layout_set_single_paragraph_mode (PangoLayout *layout, gboolean setting); gboolean pango_layout_get_single_paragraph_mode (PangoLayout *layout); enum PangoAlignment; #define PANGO_TYPE_ALIGNMENT void pango_layout_get_log_attrs (PangoLayout *layout, PangoLogAttr **attrs, gint *n_attrs); gboolean pango_layout_xy_to_index (PangoLayout *layout, int x, int y, int *index_, int *trailing); void pango_layout_index_to_pos (PangoLayout *layout, int index_, PangoRectangle *pos); void pango_layout_get_cursor_pos (PangoLayout *layout, int index_, PangoRectangle *strong_pos, PangoRectangle *weak_pos); void pango_layout_move_cursor_visually (PangoLayout *layout, gboolean strong, int old_index, int old_trailing, int direction, int *new_index, int *new_trailing); void pango_layout_get_extents (PangoLayout *layout, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_get_pixel_extents (PangoLayout *layout, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_get_size (PangoLayout *layout, int *width, int *height); void pango_layout_get_pixel_size (PangoLayout *layout, int *width, int *height); int pango_layout_get_line_count (PangoLayout *layout); PangoLayoutLine* pango_layout_get_line (PangoLayout *layout, int line); GSList* pango_layout_get_lines (PangoLayout *layout); PangoLayoutIter* pango_layout_get_iter (PangoLayout *layout); void pango_layout_iter_free (PangoLayoutIter *iter); gboolean pango_layout_iter_next_run (PangoLayoutIter *iter); gboolean pango_layout_iter_next_char (PangoLayoutIter *iter); gboolean pango_layout_iter_next_cluster (PangoLayoutIter *iter); gboolean pango_layout_iter_next_line (PangoLayoutIter *iter); gboolean pango_layout_iter_at_last_line (PangoLayoutIter *iter); int pango_layout_iter_get_index (PangoLayoutIter *iter); int pango_layout_iter_get_baseline (PangoLayoutIter *iter); PangoLayoutRun* pango_layout_iter_get_run (PangoLayoutIter *iter); PangoLayoutLine* pango_layout_iter_get_line (PangoLayoutIter *iter); void pango_layout_iter_get_char_extents (PangoLayoutIter *iter, PangoRectangle *logical_rect); void pango_layout_iter_get_cluster_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_iter_get_run_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_iter_get_line_yrange (PangoLayoutIter *iter, int *y0_, int *y1_); void pango_layout_iter_get_line_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_iter_get_layout_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect); struct PangoLayoutLine; typedef PangoLayoutRun; void pango_layout_line_ref (PangoLayoutLine *line); void pango_layout_line_unref (PangoLayoutLine *line); void pango_layout_line_get_extents (PangoLayoutLine *line, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_line_get_pixel_extents (PangoLayoutLine *layout_line, PangoRectangle *ink_rect, PangoRectangle *logical_rect); void pango_layout_line_index_to_x (PangoLayoutLine *line, int index_, gboolean trailing, int *x_pos); gboolean pango_layout_line_x_to_index (PangoLayoutLine *line, int x_pos, int *index_, int *trailing); void pango_layout_line_get_x_ranges (PangoLayoutLine *line, int start_index, int end_index, int **ranges, int *n_ranges);
While complete access to the layout capabilities of Pango is provided using the detailed interfaces for itemization and shaping, using that functionality directly involves writing a fairly large amount of code. The objects and functions in this structure provide a high-level driver for formatting entire paragraphs of text at once.
struct PangoLayout { GObject parent_instance; /* If you add fields to PangoLayout, be sure to update both * the _copy function */ PangoContext *context; PangoAttrList *attrs; PangoFontDescription *font_desc; gchar *text; int length; /* length of text in bytes */ int width; /* wrap width, in device units */ int indent; /* amount by which first line should be shorter */ int spacing; /* spacing between lines */ guint justify : 1; guint alignment : 2; guint single_paragraph : 1; gint n_chars; /* Total number of characters in layout */ PangoLogAttr *log_attrs; /* Logical attributes for layout's text */ int tab_width; /* Cached width of a tab. -1 == not yet calculated */ PangoTabArray *tabs; GSList *lines; PangoWrapMode wrap; };
The PangoLayout structure represents and entire paragraph of text. It is initialized with a PangoContext, UTF-8 string and set of attributes for that string. Once that is done, the set of formatted lines can be extracted from the object, the layout can be rendered, and conversion between logical character positions within the layout's text, and the physical position of the resulting glyphs can be made.
There are also a number of parameters to adjust the formatting of a PangoLayout, which are illustrated in Figure 1. It is possible, as well, to ignore the 2-D setup, and simply treat the results of a PangoLayout as a list of lines.
The PangoLayout structure is opaque, and has no user-visible fields.
struct PangoLayoutIter;
A PangoLayoutIter structure can be used to iterate over the visual extents of a PangoLayout.
The PangoLayoutIter structure is opaque, and has no user-visible fields.
PangoLayout* pango_layout_new (PangoContext *context);
Create a new PangoLayout object with attributes initialized to default values for a particular PangoContext.
context : | a PangoContext |
Returns : | a new PangoLayout, with a reference count of one. |
PangoLayout* pango_layout_copy (PangoLayout *src);
Does a deep copy-by-value of the src layout. The attribute list, tab array, and text from the original layout are all copied by value.
src : | a PangoLayout |
Returns : | a new PangoLayout identical to src |
PangoContext* pango_layout_get_context (PangoLayout *layout);
Retrieves the PangoContext used for this layout.
layout : | a PangoLayout |
Returns : | The PangoContext for the layout. This does not have an additional refcount added, so if you want to keep a copy of this around, you must reference it yourself. |
void pango_layout_context_changed (PangoLayout *layout);
Forces recomputation of any state in the PangoLayout that might depend on the layout's context. This function should be called if you make changes to the context subsequent to creating the layout.
layout : | a PangoLayout |
void pango_layout_set_text (PangoLayout *layout, const char *text, int length);
Set the text of the layout.
layout : | a PangoLayout |
text : | a UTF8-string |
length : | the length of text, in bytes. -1 indicates that the string is null terminated and the length should be calculated. |
const char* pango_layout_get_text (PangoLayout *layout);
Gets the text in the layout. The returned text should not be freed or modified.
layout : | a PangoLayout |
Returns : | the text in the layout |
void pango_layout_set_markup (PangoLayout *layout, const char *markup, int length);
Same as pango_layout_set_markup_with_accel(), but the markup text isn't scanned for accelerators.
layout : | a PangoLayout |
markup : | marked-up text |
length : | length of marked-up text in bytes, or -1 |
void pango_layout_set_markup_with_accel (PangoLayout *layout, const char *markup, int length, gunichar accel_marker, gunichar *accel_char);
Sets the layout text and attribute list from marked-up text (see markup format). Replaces the current text and attribute list.
If accel_marker is nonzero, the given character will mark the character following it as an accelerator. For example, the accel marker might be an ampersand or underscore. All characters marked as an accelerator will receive a PANGO_UNDERLINE_LOW attribute, and the first character so marked will be returned in accel_char. Two accel_marker characters following each other produce a single literal accel_marker character.
layout : | a PangoLayout |
markup : | some marked-up text (see markup format) |
length : | length of markup in bytes |
accel_marker : | marker for accelerators in the text |
accel_char : | return location for any located accelerators |
void pango_layout_set_attributes (PangoLayout *layout, PangoAttrList *attrs);
Sets the text attributes for a layout object
layout : | a PangoLayout |
attrs : | a PangoAttrList |
PangoAttrList* pango_layout_get_attributes (PangoLayout *layout);
Gets the attribute list for the layout, if any
layout : | a PangoLayout |
Returns : | a PangoAttrList |
void pango_layout_set_font_description (PangoLayout *layout, const PangoFontDescription *desc);
Set the default font description for the layout. If no font description is set on the layout, the font description from the layout's context is used.
layout : | a PangoLayout |
desc : | the new pango font description, or NULL to unset the current font description. |
void pango_layout_set_width (PangoLayout *layout, int width);
Sets the width to which the lines of the PangoLayout should be wrapped.
layout : | a PangoLayout. |
width : | the desired width, or -1 to indicate that no wrapping should be performed. |
int pango_layout_get_width (PangoLayout *layout);
Gets the width to which the lines of the PangoLayout should be wrapped.
layout : | a PangoLayout |
Returns : | the width |
void pango_layout_set_wrap (PangoLayout *layout, PangoWrapMode wrap);
Sets the wrap style; the wrap style only has an effect if a width is set on the layout with pango_layout_set_width(). To turn off wrapping, set the width to -1.
layout : | a PangoLayout |
wrap : | wrap mode |
PangoWrapMode pango_layout_get_wrap (PangoLayout *layout);
Get the wrap mode for the layout.
layout : | a PangoLayout |
Returns : | Active wrap mode. |
typedef enum { PANGO_WRAP_WORD, PANGO_WRAP_CHAR, PANGO_WRAP_WORD_CHAR } PangoWrapMode;
describes how to wrap the lines of a PangoLayout to the desired width.
PANGO_WRAP_WORD | wrap lines at word boundaries. |
PANGO_WRAP_CHAR | wrap lines at character boundaries. |
PANGO_WRAP_WORD_CHAR | wrap lines at word boundaries, but fall back to character boundaries if there is not enought space for a full word. |
#define PANGO_TYPE_WRAP_MODE (pango_wrap_mode_get_type())
The GObject type for PangoWrapMode.
void pango_layout_set_indent (PangoLayout *layout, int indent);
Sets the amount by which the first line should be shorter than the rest of the lines. This may be negative, in which case the subsequent lines will be shorter than the first line. (However, in either case, the entire width of the layout will be given by the value
layout : | a PangoLayout. |
indent : | the amount by which to indent |
int pango_layout_get_indent (PangoLayout *layout);
Gets the amount by which the first line should be shorter than the rest of the lines.
layout : | a PangoLayout |
Returns : | the indent |
int pango_layout_get_spacing (PangoLayout *layout);
Gets the amount of spacing between the lines of the layout.
layout : | a PangoLayout |
Returns : | the spacing (in PangoGlyphUnit) |
void pango_layout_set_spacing (PangoLayout *layout, int spacing);
Sets the amount of spacing between the lines of the layout.
layout : | a PangoLayout. |
spacing : | the amount of spacing |
void pango_layout_set_justify (PangoLayout *layout, gboolean justify);
Sets whether or not each complete line should be stretched to fill the entire width of the layout. This stretching is typically done by adding whitespace, but for some scripts (such as Arabic), the justification is done by extending the characters.
layout : | a PangoLayout |
justify : | whether the lines in the layout should be justified. |
gboolean pango_layout_get_justify (PangoLayout *layout);
Gets whether or not each complete line should be stretched to fill the entire width of the layout.
layout : | a PangoLayout |
Returns : | the justify |
void pango_layout_set_alignment (PangoLayout *layout, PangoAlignment alignment);
Sets the alignment for the layout (how partial lines are positioned within the horizontal space available.)
layout : | a PangoLayout |
alignment : | the new alignment |
PangoAlignment pango_layout_get_alignment (PangoLayout *layout);
Sets the alignment for the layout (how partial lines are positioned within the horizontal space available.)
layout : | a PangoLayout |
Returns : | the alignment value |
void pango_layout_set_tabs (PangoLayout *layout, PangoTabArray *tabs);
Sets the tabs to use for layout, overriding the default tabs (by default, tabs are every 8 spaces). If tabs is NULL, the default tabs are reinstated. tabs is copied into the layout; you must free your copy of tabs yourself.
layout : | a PangoLayout |
tabs : | a PangoTabArray |
PangoTabArray* pango_layout_get_tabs (PangoLayout *layout);
Get the current PangoTabArray used by this layout. If no PangoTabArray has been set, then the default tabs are in use and NULL is returned. Default tabs are every 8 spaces. The return value should be freed with pango_tab_array_free().
layout : | a PangoLayout |
Returns : | a copy of the tabs for this layout, or NULL |
void pango_layout_set_single_paragraph_mode (PangoLayout *layout, gboolean setting);
If setting is TRUE, do not treat newlines and similar characters as paragraph separators; instead, keep all text in a single paragraph, and display a glyph for paragraph separator characters. Used when you want to allow editing of newlines on a single text line.
layout : | a PangoLayout |
setting : | new setting |
gboolean pango_layout_get_single_paragraph_mode (PangoLayout *layout);
Obtains the value set by pango_layout_set_single_paragraph_mode().
layout : | a PangoLayout |
Returns : | TRUE if the layout does not break paragraphs at paragraph separator characters |
typedef enum { PANGO_ALIGN_LEFT, PANGO_ALIGN_CENTER, PANGO_ALIGN_RIGHT } PangoAlignment;
describes how to align the lines of a PangoLayout within the available space. If the PangoLayout is set to justify using pango_layout_set_justify(), then this only has an effect for partial lines.
PANGO_ALIGN_LEFT | Put all available space on the right |
PANGO_ALIGN_CENTER | Center the line within the available space |
PANGO_ALIGN_RIGHT | Put all available space on the left |
#define PANGO_TYPE_ALIGNMENT (pango_alignment_get_type())
The GObject type for PangoAlignment.
void pango_layout_get_log_attrs (PangoLayout *layout, PangoLogAttr **attrs, gint *n_attrs);
Retrieve an array of logical attributes for each character in the layout.
layout : | a PangoLayout |
attrs : | location to store a pointer to an array of logical attributes This value must be freed with g_free(). |
n_attrs : | location to store the number of the attributes in the array. (The stored value will be equal to the total number of characters in the layout.) |
gboolean pango_layout_xy_to_index (PangoLayout *layout, int x, int y, int *index_, int *trailing);
Convert from X and Y position within a layout to the byte index to the character at that logical position. If the position is not inside the layout, the closest position is chosen (the x/y position will be clamped inside the layout). If a closest position is chosen, then the function returns FALSE; on an exact hit, it returns TRUE.
layout : | a PangoLayout |
x : | the X offset (in PangoGlyphUnit) from the left edge of the layout. |
y : | the Y offset (in PangoGlyphUnit) from the top edge of the layout |
index_ : | location to store calculated byte index |
trailing : | location to store a 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 trailing edge of the grapheme. |
Returns : | TRUE if the coordinates were inside text |
void pango_layout_index_to_pos (PangoLayout *layout, int index_, PangoRectangle *pos);
Convert from an index within a PangoLayout to the onscreen position corresponding to the grapheme at that index, which is represented as rectangle. Note that pos->x is always the leading edge of the grapheme and pos->x + pos->width the trailing edge of the grapheme. If the directionality of the grapheme is right-to-left, then pos->width will be negative.
layout : | a PangoLayout |
index_ : | byte index within layout |
pos : | rectangle in which to store the position of the grapheme |
void pango_layout_get_cursor_pos (PangoLayout *layout, int index_, PangoRectangle *strong_pos, PangoRectangle *weak_pos);
Given an index within a layout, determine the positions that of the strong and weak cursors if the insertion point is at that index. The position of each cursor is stored as a zero-width rectangle. The strong cursor location is the location where characters of the directionality equal to the base direction of the layout are inserted. The weak cursor location is the location where characters of the directionality opposite to the base direction of the layout are inserted.
layout : | a PangoLayout |
index_ : | the byte index of the cursor |
strong_pos : | location to store the strong cursor position (may be NULL) |
weak_pos : | location to store the weak cursor position (may be NULL) |
void pango_layout_move_cursor_visually (PangoLayout *layout, gboolean strong, int old_index, int old_trailing, int direction, int *new_index, int *new_trailing);
Computes a new cursor position from an old position and a count of positions to move visually. If count is positive, then the new strong cursor position will be one position to the right of the old cursor position. If count is position then the new strong cursor position will be one position to the left of the old cursor position.
In the presence of bidirection text, the correspondence between logical and visual order will depend on the direction of the current run, and there may be jumps when the cursor is moved off of the end of a run.
Motion here is in cursor positions, not in characters, so a single call to pango_layout_move_cursor_visually() may move the cursor over multiple characters when multiple characters combine to form a single grapheme.
layout : | a PangoLayout. |
strong : | whether the moving cursor is the strong cursor or the weak cursor. The strong cursor is the cursor corresponding to text insertion in the base direction for the layout. |
old_index : | the byte index of the grapheme for the old index |
old_trailing : | if 0, the cursor was at the trailing edge of the grapheme indicated by old_index, if > 0, the cursor was at the leading edge. |
direction : | direction to move cursor. A negative value indicates motion to the left. |
new_index : | location to store the new cursor byte index. A value of -1 indicates that the cursor has been moved off the beginning of the layout. A value of G_MAXINT indicates that the cursor has been moved off the end of the layout. |
new_trailing : | number of characters to move forward from the location returned for new_index to get the position where the cursor should be displayed. This allows distinguishing the position at the beginning of one line from the position at the end of the preceding line. new_index is always on the line where the cursor should be displayed. |
void pango_layout_get_extents (PangoLayout *layout, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Compute the logical and ink extents of layout. Logical extents are usually what you want for positioning things. The extents are given in layout coordinates; layout coordinates begin at the top left corner of the layout.
layout : | a PangoLayout |
ink_rect : | rectangle used to store the extents of the layout as drawn or NULL to indicate that the result is not needed. |
logical_rect : | rectangle used to store the logical extents of the layout or NULL to indicate that the result is not needed. |
void pango_layout_get_pixel_extents (PangoLayout *layout, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Compute the logical and ink extents of layout in device units. See pango_layout_get_extents(); this function just calls pango_layout_get_extents() and then converts the extents to device units using the PANGO_SCALE factor.
layout : | a PangoLayout |
ink_rect : | rectangle used to store the extents of the layout as drawn or NULL to indicate that the result is not needed. |
logical_rect : | rectangle used to store the logical extents of the layout or NULL to indicate that the result is not needed. |
void pango_layout_get_size (PangoLayout *layout, int *width, int *height);
Determine the logical width and height of a PangoLayout in Pango units. (device units divided by PANGO_SCALE). This is simply a convenience function around pango_layout_get_extents.
layout : | a PangoLayout |
width : | location to store the logical width, or NULL |
height : | location to store the logical height, or NULL |
void pango_layout_get_pixel_size (PangoLayout *layout, int *width, int *height);
Determine the logical width and height of a PangoLayout in device units. (pango_layout_get_size() returns the width and height in thousandths of a device unit.) This is simply a convenience function around pango_layout_get_extents.
layout : | a PangoLayout |
width : | location to store the logical width, or NULL |
height : | location to store the logical height, or NULL |
int pango_layout_get_line_count (PangoLayout *layout);
Retrieve the count of lines for the layout.
layout : | PangoLayout |
Returns : | the line count |
PangoLayoutLine* pango_layout_get_line (PangoLayout *layout, int line);
Retrieves a particular line from a PangoLayout.
layout : | a PangoLayout |
line : | the index of a line, which must be between 0 and pango_layout_get_line_count(layout) - 1, inclusive. |
Returns : | the requested PangoLayoutLine, or NULL if the index is out of range. This layout line can be ref'ed and retained, but will become invalid if changes are made to the PangoLayout. |
GSList* pango_layout_get_lines (PangoLayout *layout);
Return the lines of the layout as a list.
layout : | a PangoLayout |
Returns : | a GSList containing the lines in the layout. This points to internal data of the PangoLayout and must be used with care. It will become invalid on any change to the layout's text or properties. |
PangoLayoutIter* pango_layout_get_iter (PangoLayout *layout);
Returns an iterator to iterate over the visual extents of the layout.
layout : | a PangoLayout |
Returns : | a new PangoLayoutIter |
void pango_layout_iter_free (PangoLayoutIter *iter);
Frees an iterator that's no longer in use.
iter : | a PangoLayoutIter |
gboolean pango_layout_iter_next_run (PangoLayoutIter *iter);
Moves iter forward to the next run in visual order. If iter was already at the end of the layout, returns FALSE.
iter : | a PangoLayoutIter |
Returns : | whether motion was possible |
gboolean pango_layout_iter_next_char (PangoLayoutIter *iter);
Moves iter forward to the next character in visual order. If iter was already at the end of the layout, returns FALSE.
iter : | a PangoLayoutIter |
Returns : | whether motion was possible |
gboolean pango_layout_iter_next_cluster (PangoLayoutIter *iter);
Moves iter forward to the next cluster in visual order. If iter was already at the end of the layout, returns FALSE.
iter : | a PangoLayoutIter |
Returns : | whether motion was possible |
gboolean pango_layout_iter_next_line (PangoLayoutIter *iter);
Moves iter forward to the start of the next line. If iter is already on the last line, returns FALSE.
iter : | a PangoLayoutIter |
Returns : | whether motion was possible |
gboolean pango_layout_iter_at_last_line (PangoLayoutIter *iter);
Determines whether iter is on the last line of the layout.
iter : | a PangoLayoutIter |
Returns : | TRUE if iter is on the last line |
int pango_layout_iter_get_index (PangoLayoutIter *iter);
Gets the current byte index. Note that iterating forward by char moves in visual order, not logical order, so indexes may not be sequential. Also, the index may be equal to the length of the text in the layout, if on the NULL run (see pango_layout_iter_get_run()).
iter : | a PangoLayoutIter |
Returns : | current byte index |
int pango_layout_iter_get_baseline (PangoLayoutIter *iter);
Gets the y position of the current line's baseline, in layout coordinates (origin at top left of the entire layout).
iter : | a PangoLayoutIter |
Returns : | baseline of current line |
PangoLayoutRun* pango_layout_iter_get_run (PangoLayoutIter *iter);
Gets the current run. When iterating by run, at the end of each line, there's a position with a NULL run, so this function can return NULL. The NULL run at the end of each line ensures that all lines have at least one run, even lines consisting of only a newline.
iter : | a PangoLayoutIter |
Returns : | the current run |
PangoLayoutLine* pango_layout_iter_get_line (PangoLayoutIter *iter);
Gets the current line.
iter : | a PangoLayoutIter |
Returns : | the current line |
void pango_layout_iter_get_char_extents (PangoLayoutIter *iter, PangoRectangle *logical_rect);
Gets the extents of the current character, in layout coordinates (origin is the top left of the entire layout). Only logical extents can sensibly be obtained for characters; ink extents make sense only down to the level of clusters.
iter : | a PangoLayoutIter |
logical_rect : | rectangle to fill with logical extents |
void pango_layout_iter_get_cluster_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Gets the extents of the current cluster, in layout coordinates (origin is the top left of the entire layout).
iter : | a PangoLayoutIter |
ink_rect : | rectangle to fill with ink extents |
logical_rect : | rectangle to fill with logical extents |
void pango_layout_iter_get_run_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Gets the extents of the current run in layout coordinates (origin is the top left of the entire layout).
iter : | a PangoLayoutIter |
ink_rect : | rectangle to fill with ink extents |
logical_rect : | rectangle to fill with logical extents |
void pango_layout_iter_get_line_yrange (PangoLayoutIter *iter, int *y0_, int *y1_);
Divides the vertical space in the PangoLayout being iterated over between the lines in the layout, and returns the space belonging to the current line. A line's range includes the line's logical extents, plus half of the spacing above and below the line, if pango_layout_set_spacing() has been called to set layout spacing. The y positions are in layout coordinates (origin at top left of the entire layout).
iter : | a PangoLayoutIter |
y0_ : | start of line |
y1_ : | end of line |
void pango_layout_iter_get_line_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Obtains the extents of the current line. ink_rect or logical_rect can be NULL if you aren't interested in them. Extents are in layout coordinates (origin is the top-left corner of the entire PangoLayout). Thus the extents returned by this function will be the same width/height but not at the same x/y as the extents returned from pango_layout_line_get_extents().
iter : | a PangoLayoutIter |
ink_rect : | rectangle to fill with ink extents |
logical_rect : | rectangle to fill with logical extents |
void pango_layout_iter_get_layout_extents (PangoLayoutIter *iter, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Obtains the extents of the PangoLayout being iterated over. ink_rect or logical_rect can be NULL if you aren't interested in them.
iter : | a PangoLayoutIter |
ink_rect : | rectangle to fill with ink extents |
logical_rect : | rectangle to fill with logical extents |
struct PangoLayoutLine { PangoLayout *layout; gint start_index; /* start of line as byte index into layout->text */ gint length; /* length of line in bytes */ GSList *runs; };
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.
PangoLayout *layout | the parent layout for this line. |
gint start_index | |
gint length | the length of the line in bytes. |
GSList *runs | a list containing the runs of the line in visual order. |
typedef PangoGlyphItem PangoLayoutRun;
The PangoLayoutRun structure represents a single run within a PangoLayoutLine; it is simply an alternate name for PangoGlyphItem, present for backwards compatibility. See the PangoGlyphItem docs for details on the fields.
void pango_layout_line_ref (PangoLayoutLine *line);
Increase the reference count of a PangoLayoutLine by one.
line : | a PangoLayoutLine |
void pango_layout_line_unref (PangoLayoutLine *line);
Decrease the reference count of a PangoLayoutLine by one. if the result is zero, the line and all associated memory will be freed.
line : | a PangoLayoutLine |
void pango_layout_line_get_extents (PangoLayoutLine *line, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Compute the logical and ink extents of a layout line. See the documentation for pango_font_get_glyph_extents() for details about the interpretation of the rectangles.
line : | a PangoLayoutLine |
ink_rect : | rectangle used to store the extents of the glyph string as drawn or NULL to indicate that the result is not needed. |
logical_rect : | rectangle used to store the logical extents of the glyph string or NULL to indicate that the result is not needed. |
void pango_layout_line_get_pixel_extents (PangoLayoutLine *layout_line, PangoRectangle *ink_rect, PangoRectangle *logical_rect);
Compute the logical and ink extents of a layout line. See the documentation for pango_font_get_glyph_extents() for details about the interpretation of the rectangles. The returned rectangles are in device units, as opposed to pango_layout_line_get_extents(), which returns the extents in PangoGlyphUnit.
layout_line : | a PangoLayoutLine |
ink_rect : | rectangle used to store the extents of the glyph string as drawn or NULL to indicate that the result is not needed. |
logical_rect : | rectangle used to store the logical extents of the glyph string or NULL to indicate that the result is not needed. |
void pango_layout_line_index_to_x (PangoLayoutLine *line, int index_, gboolean trailing, int *x_pos);
Converts an index within a line to a X position.
line : | a PangoLayoutLine |
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 PangoGlyphUnit) |
gboolean pango_layout_line_x_to_index (PangoLayoutLine *line, int x_pos, int *index_, int *trailing);
Convert from x offset to the byte index of the corresponding character within the text of the layout. If x_pos is outside the line, the start or end of the line will be stored at index_.
line : | a PangoLayoutLine |
x_pos : | the x offset (in PangoGlyphUnit) from the left edge of the line. |
index_ : | location to store calculated byte offset for the grapheme in which the user clicked. |
trailing : | location to store a 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 trailing edge of the cluster. |
Returns : | FALSE if x_pos was outside the line, TRUE if inside |
void pango_layout_line_get_x_ranges (PangoLayoutLine *line, int start_index, int end_index, int **ranges, int *n_ranges);
Get 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 PangoLayoutLine |
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 PangoGlyphUnit. |
n_ranges : | The number of ranges stored in ranges. |
<< Pango Text Attribute Markup | Rendering with Pango >> |