Interface

Gtk-4.0GtkAccessibleHypertextInterface

Interface for implementing AccessibleHypertext. Contains only the virtual methods that need to be implemented.

interface Interface {
    vfunc_get_accessible_id(): string;
    vfunc_get_accessible_parent(): Gtk.Accessible;
    vfunc_get_at_context(): Gtk.ATContext;
    vfunc_get_bounds(): [boolean, number, number, number, number];
    vfunc_get_first_accessible_child(): Gtk.Accessible;
    vfunc_get_link(index: number): Gtk.AccessibleHyperlink;
    vfunc_get_link_at(offset: number): number;
    vfunc_get_n_links(): number;
    vfunc_get_next_accessible_sibling(): Gtk.Accessible;
    vfunc_get_platform_state(state: Gtk.AccessiblePlatformState): boolean;
}

Hierarchy (View Summary)

Index

Methods

Methods - Inherited from Gtk.Accessible.Interface

  • Retrieves the accessible identifier for the accessible object.

    This functionality can be overridden by Gtk.Accessible implementations.

    It is left to the accessible implementation to define the scope and uniqueness of the identifier.

    Returns string

  • Queries the coordinates and dimensions of this accessible

    This functionality can be overridden by Gtk.Accessible implementations, e.g. to get the bounds from an ignored child widget.

    Returns [boolean, number, number, number, number]