I have a program made with Gtk3, and want to enhance the accessibility. The point is that an IconView just says the icon name, but not the text below. Neither CellRendererText nor CellRendererPixbuf seem to have ATK objects…
You need to look at how GtkTreeViewAccessible
is implemented, and figure out what’s missing from GtkIconViewAccessible
.
The accessible objects are held by the widget, not by the cell renderers, since those are reused for each row, and just the content changes.
1 Like