From: Padraig O'Briain Date: Tue, 5 Jun 2001 08:24:20 +0000 (+0000) Subject: Add property accessible-visible-data X-Git-Tag: ATK_0_2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58541c4a6cca86ce22dc29d32270262a127ed4e3;p=platform%2Fupstream%2Fatk.git Add property accessible-visible-data * atk/atkobject.c: Add property accessible-visible-data --- diff --git a/ChangeLog b/ChangeLog index 480235b..7c32d79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-06-05 Padraig O'Briain + + * atk/atkobject.c: Add property accessible-visible-data + 2001-06-01 Padraig O'Briain * atk/atkobject.c: Add support for setting and getting diff --git a/atk/atkobject.c b/atk/atkobject.c index 7be969b..b93807f 100755 --- a/atk/atkobject.c +++ b/atk/atkobject.c @@ -37,6 +37,7 @@ enum PROP_CARET, /* Used only by AtkText implementors */ PROP_SELECTION, PROP_VALUE, + PROP_VIBIBLE_DATA, PROP_LAST /* gobject convention */ }; @@ -76,6 +77,7 @@ static const gchar* atk_object_name_property_text = "accessible-text"; static const gchar* atk_object_name_property_caret = "accessible-caret"; static const gchar* atk_object_name_property_selection = "accessible-selection"; static const gchar* atk_object_name_property_value = "accessible-value"; +static const gchar* atk_object_name_property_visible = "accessible-visible-data"; GType atk_object_get_type (void) @@ -158,21 +160,21 @@ atk_object_class_init (AtkObjectClass *klass) PROP_PARENT, g_param_spec_object (atk_object_name_property_parent, "Accessible Parent", - "Is used to notify that the parent has been changed ", + "Is used to notify that the parent has changed ", ATK_TYPE_OBJECT, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TEXT, g_param_spec_object (atk_object_name_property_text, "Accessible Text", - "Is used to notify that the text has been changed ", + "Is used to notify that the text has changed ", ATK_TYPE_OBJECT, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_CARET, g_param_spec_int (atk_object_name_property_caret, "Accessible Caret", - "Is used to notify that the caret position has been changed ", + "Is used to notify that the caret position has changed ", 0, G_MAXINT, 0, @@ -181,18 +183,25 @@ atk_object_class_init (AtkObjectClass *klass) PROP_SELECTION, g_param_spec_object (atk_object_name_property_selection, "Accessible Selection", - "Is used to notify that the selection has been changed ", + "Is used to notify that the selection has changed ", ATK_TYPE_OBJECT, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_VALUE, g_param_spec_double (atk_object_name_property_value, "Accessible Value", - "Is used to notify that the value has been changed ", + "Is used to notify that the value has changed ", 0.0, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); + g_object_class_install_property (gobject_class, + PROP_SELECTION, + g_param_spec_object (atk_object_name_property_visible, + "Accessible Visible Data", + "Is used to notify that the visual appearance of the object has changed ", + ATK_TYPE_OBJECT, + G_PARAM_READWRITE)); /* * The signal "children_changed" supports two details: * "add" and "remove"