Interface
AtkHypertext
Description [src]
interface Atk.Hypertext : GObject.Object
The ATK interface which provides standard mechanism for manipulating hyperlinks.
An interface used for objects which implement linking between multiple resource or content locations, or multiple ‘markers’ within a single document. A Hypertext instance is associated with one or more Hyperlinks, which are associated with particular offsets within the Hypertext’s included content. While this interface is derived from Text, there is no requirement that Hypertext instances have textual content; they may implement Image as well, and Hyperlinks need not have non-zero text offsets.
Prerequisite
In order to implement Hypertext, your type must inherit fromGObject
.
Instance methods
atk_hypertext_get_link_index
Gets the index into the array of hyperlinks that is associated with
the character specified by char_index
.
Signals
Atk.Hypertext::link-selected
The “link-selected” signal is emitted by an AtkHyperText object when one of the hyperlinks associated with the object is selected.
Interface structure
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
);
void (* link_selected) (
AtkHypertext* hypertext,
gint link_index
);
}
No description available.
Interface members
parent |
|
No description available. |
|
get_link |
|
No description available. |
|
get_n_links |
|
No description available. |
|
get_link_index |
|
No description available. |
|
link_selected |
|
No description available. |
Virtual methods
Atk.Hypertext.get_link_index
Gets the index into the array of hyperlinks that is associated with
the character specified by char_index
.