Name
AtkHypertext -- The ATK interface which provides standard mechanism for manipulating hyperlinks.
Details
struct AtkHypertextIface
struct AtkHypertextIface
{
GTypeInterface parent;
AtkHyperlink*(* get_link) (AtkHypertext *hypertext,
gint link_index);
gint (* get_n_links) (AtkHypertext *hypertext);
gint (* get_link_index) (AtkHypertext *hypertext,
gint char_index);
AtkFunction pad1;
AtkFunction pad2;
AtkFunction pad3;
AtkFunction pad4;
}; |
atk_hypertext_get_link ()
Gets the link in this hypertext document at index
link_index
atk_hypertext_get_n_links ()
Gets the number of links within this hypertext document.
atk_hypertext_get_link_index ()
gint atk_hypertext_get_link_index (AtkHypertext *hypertext,
gint char_index); |
Gets the index into the array of hyperlinks that is associated with
the character specified by char_index, or -1 if there is no hyperlink
associated with this character.