Add docs. (#164725, George Kraft IV)

2005-01-20  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
	George Kraft IV)
This commit is contained in:
Matthias Clasen 2005-01-21 04:35:39 +00:00 committed by Matthias Clasen
parent 357c4aa3bf
commit 376292d718
4 changed files with 21 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-01-20 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs. (#164725,
George Kraft IV)
* gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
here, even if the only focusable widgets are labels.

View File

@ -1,5 +1,8 @@
2005-01-20 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs. (#164725,
George Kraft IV)
* gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
here, even if the only focusable widgets are labels.

View File

@ -1,5 +1,8 @@
2005-01-20 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs. (#164725,
George Kraft IV)
* gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
here, even if the only focusable widgets are labels.

View File

@ -7310,6 +7310,18 @@ gtk_requisition_get_type (void)
return our_type;
}
/**
* gtk_widget_get_accessible:
* @widget: a #GtkWidget
*
* Returns the accessible object that describes the widget to an
* assistive technology. The documentation of the
* <ulink url="http://developer.gnome.org/doc/API/2.0/atk/index.html">ATK</ulink>
* library contains more information about accessible objects and
* their uses.
*
* Returns: the #AtkObject associated with @widget
*/
AtkObject*
gtk_widget_get_accessible (GtkWidget *widget)
{