|
ATK:
applications can set properties on their UI components:
-
can set name, description, relationships
-
applications can modify or augment built-in properties provided by GAIL
example :
atkobject = gtk_widget_get_accessible (text_entry);
atk_object_set_description (atkobject,
"username entry field");
atk_object_add_relation (atkobject,
ATK_RELATION_LABELLED_BY,
gtk_widget_get_accessible
(name_label));
|