After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 164725 - gtk_widget_get_accessible() is undocumented
gtk_widget_get_accessible() is undocumented
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Documentation
unspecified
Other All
: Normal minor
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2005-01-20 18:33 UTC by George Kraft IV
Modified: 2005-01-21 18:15 UTC
See Also:
GNOME target: ---
GNOME version: 2.7/2.8



Description George Kraft IV 2005-01-20 18:33:07 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:
Comment 1 George Kraft IV 2005-01-20 18:45:17 UTC
"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
Comment 2 George Kraft IV 2005-01-20 18:54:35 UTC
What does gtk_widget_get_accessible() return if GAIL does not know what it is,
or if it is a custom widget?
Comment 3 Matthias Clasen 2005-01-21 04:36:55 UTC
2005-01-20  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
	George Kraft IV)
Comment 4 bill.haneman 2005-01-21 18:15:18 UTC
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>."