GNOME Bugzilla – Bug 164725
gtk_widget_get_accessible() is undocumented
Last modified: 2005-01-21 18:15:18 UTC
Documentation bug Section: http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#gtk-widget-get-accessible The section for gtk_widget_get_accessible() is totally empty. Correct version: Other information:
"Returns the accessible object that describes the specified GTK widget to an assistive technology" according to http://developer.gnome.org/projects/gap/guide/gad/gad-api.html
What does gtk_widget_get_accessible() return if GAIL does not know what it is, or if it is a custom widget?
2005-01-20 Matthias Clasen <mclasen@redhat.com> * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs. (#164725, George Kraft IV)
George: all widgets are GtkWidgets, so some accessible object is always returned. You might want to add this text: If no accessibility library is loaded (i.e. no ATK implementation library is loaded via GTK_MODULES or via another application library, such as libgnome), then this AtkObject instance may be a no-op. Likewise, if no class-specific AtkObject implementation is available for the widget instance in question, it will inherit an AtkObject implementation from the first ancestor class for which such an AtkObject implementation is defined. For more information, see the ATK documentation at <link here>."