diff options
author | Padraig O'Briain <padraig.obriain@sun.com> | 2003-09-10 10:19:52 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2003-09-10 10:19:52 +0000 |
commit | e5f56c004944944e7ac95d02e2f7e78ad2d6176e (patch) | |
tree | ecdceb68301157e49b65c7bb9dd3f54212888445 /docs | |
parent | 9a9d24f5350b272c98292f7145b64b68be8f1139 (diff) | |
download | atk-e5f56c004944944e7ac95d02e2f7e78ad2d6176e.tar.gz |
Remove comments about signals. The description should be in files in
2003-09-10 Padraig O'Briain <padraig.obriain@sun.com>
* atk/atkobject.c: Remove comments about signals. The description
should be in files in docs/tmpl directory.
* docs/tmpl/atkhypertext.sgml: Add description for link-selected signal.
* docs/tmpl/atkobject.sgml: Add descriptions for
active-descendant-changed, children-changed, focus-event,
property-change, state-change and visible-data-changed signals.
* docs/tmpl/atkselection.sgml: Add description for selection-changed
signal.
* docs/tmpl/atktable.sgml: Add descriptions for column-deleted,
columnn-inserted, column-reordered, model-changed, row-deleted,
row-inserted and row-reordered signals.
* docs/tmpl/atktext.sgml: Add description for text-attributes-changed,
text-caret-moved, text-changed nd text-selection-changed signals.
This fixes bug #121163.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tmpl/atkhypertext.sgml | 5 | ||||
-rw-r--r-- | docs/tmpl/atkobject.sgml | 26 | ||||
-rw-r--r-- | docs/tmpl/atkselection.sgml | 3 | ||||
-rw-r--r-- | docs/tmpl/atktable.sgml | 21 | ||||
-rw-r--r-- | docs/tmpl/atktext.sgml | 14 |
5 files changed, 46 insertions, 23 deletions
diff --git a/docs/tmpl/atkhypertext.sgml b/docs/tmpl/atkhypertext.sgml index 0f59ad5..e8ba992 100644 --- a/docs/tmpl/atkhypertext.sgml +++ b/docs/tmpl/atkhypertext.sgml @@ -51,9 +51,10 @@ The AtkHypertext structure does not contain any fields. <!-- ##### SIGNAL AtkHypertext::link-selected ##### --> <para> - +The "link-selected" signal is emitted by an AtkHyperText object when one of +the hyperlinks associated with the object is selected. </para> @atkhypertext: the object which received the signal. -@arg1: +@arg1: the index of the hyperlink which is selected diff --git a/docs/tmpl/atkobject.sgml b/docs/tmpl/atkobject.sgml index 19b3cca..0231c37 100644 --- a/docs/tmpl/atkobject.sgml +++ b/docs/tmpl/atkobject.sgml @@ -420,16 +420,19 @@ atk_object_connect_property_change_handler(). <!-- ##### SIGNAL AtkObject::active-descendant-changed ##### --> <para> - +The "active-descendant-changed" signal is emitted by an object which has +the state ATK_STATE_MANAGES_DESCENDANTS when the focus object in the +object changes. For instance, a table will emit the signal when the cell +in the table which has focus changes. </para> @atkobject: the object which received the signal. -@arg1: +@arg1: the newly focused object. <!-- ##### SIGNAL AtkObject::children-changed ##### --> <para> -The children_changed signal supports two details, "add" and "remove" which -indicate whether a child was added or removed +The signal "children-changed" is emitted when a child is added or +removed form an object. It supports two details: "add" and "remove" </para> @atkobject: the object which received the signal. @@ -438,16 +441,17 @@ indicate whether a child was added or removed <!-- ##### SIGNAL AtkObject::focus-event ##### --> <para> - +The signal "focus-event" is emitted when an object gains or loses focus. </para> @atkobject: the object which received the signal. -@arg1: A boolean value which indicates whether or not the focus event is is or out. +@arg1: A boolean value which indicates whether the object gained or lost focus. <!-- ##### SIGNAL AtkObject::property-change ##### --> <para> -This signal support a detail which identifies the property which has -changed. +The signal "property-change" is emitted when an object's property +value changes. The detail identifies the name of the property whose +value has changed. </para> @atkobject: the object which received the signal. @@ -455,7 +459,8 @@ changed. <!-- ##### SIGNAL AtkObject::state-change ##### --> <para> -This signal support, which may be any of the accessible state types. +The "state-change" signal is emitted when an object's state changes. +The detail value identifies the state type which has changed. </para> @atkobject: the object which received the signal. @@ -464,7 +469,8 @@ This signal support, which may be any of the accessible state types. <!-- ##### SIGNAL AtkObject::visible-data-changed ##### --> <para> - +The "visible-data-changed" signal is emitted when the visual appearance of +the object changed. </para> @atkobject: the object which received the signal. diff --git a/docs/tmpl/atkselection.sgml b/docs/tmpl/atkselection.sgml index 1f6fa6f..b3a6148 100644 --- a/docs/tmpl/atkselection.sgml +++ b/docs/tmpl/atkselection.sgml @@ -101,7 +101,8 @@ The AtkAction structure does not contain any fields. <!-- ##### SIGNAL AtkSelection::selection-changed ##### --> <para> - +The "selection-changed" signal is emitted by an object which implements +AtkSelection interface when the selection changes. </para> @atkselection: the object which received the signal. diff --git a/docs/tmpl/atktable.sgml b/docs/tmpl/atktable.sgml index d710d68..96d6dc7 100644 --- a/docs/tmpl/atktable.sgml +++ b/docs/tmpl/atktable.sgml @@ -331,7 +331,8 @@ The AtkTable structure does not contain any fields. <!-- ##### SIGNAL AtkTable::column-deleted ##### --> <para> - +The "column-deleted" signal is emitted by an object which implements the +AtkTable interface when a column is deleted. </para> @atktable: the object which received the signal. @@ -340,29 +341,35 @@ The AtkTable structure does not contain any fields. <!-- ##### SIGNAL AtkTable::column-inserted ##### --> <para> +The "column-inserted" signal is emitted by an object which implements the +AtkTable interface when a column is inserted. </para> @atktable: the object which received the signal. @arg1: The index of the column inserted. -@arg2: The number of colums inserteda. +@arg2: The number of colums inserted. <!-- ##### SIGNAL AtkTable::column-reordered ##### --> <para> - +The "column-reordered" signal is emitted by an object which implements the +AtkTable interface when the columns are reordered. </para> @atktable: the object which received the signal. <!-- ##### SIGNAL AtkTable::model-changed ##### --> <para> - +The "model-changed" signal is emitted by an object which implements the +AtkTable interface when the model displayed by the table changes. </para> @atktable: the object which received the signal. <!-- ##### SIGNAL AtkTable::row-deleted ##### --> <para> +The "row-deleted" signal is emitted by an object which implements the +AtkTable interface when a column is inserted. </para> @@ -372,7 +379,8 @@ The AtkTable structure does not contain any fields. <!-- ##### SIGNAL AtkTable::row-inserted ##### --> <para> - +The "row-inserted" signal is emitted by an object which implements the +AtkTable interface when a column is inserted. </para> @atktable: the object which received the signal. @@ -381,7 +389,8 @@ The AtkTable structure does not contain any fields. <!-- ##### SIGNAL AtkTable::row-reordered ##### --> <para> - +The "row-reordered" signal is emitted by an object which implements the +AtkTable interface when the columns are reordered. </para> @atktable: the object which received the signal. diff --git a/docs/tmpl/atktext.sgml b/docs/tmpl/atktext.sgml index 4910972..38e3945 100644 --- a/docs/tmpl/atktext.sgml +++ b/docs/tmpl/atktext.sgml @@ -399,14 +399,16 @@ The AtkText structure does not contain any fields. <!-- ##### SIGNAL AtkText::text-attributes-changed ##### --> <para> - +The "text-attributes-changed" signal is emitted when the text attributes of +the text of an object which implements AtkText changes. </para> @atktext: the object which received the signal. <!-- ##### SIGNAL AtkText::text-caret-moved ##### --> <para> - +The "text-caret-moved" signal is emitted when the caret position of +the text of an object which implements AtkText changes. </para> @atktext: the object which received the signal. @@ -414,8 +416,10 @@ The AtkText structure does not contain any fields. <!-- ##### SIGNAL AtkText::text-changed ##### --> <para> -This signal will have a detail which is either "insert" or "delete" -which identifies whether the text change was an insertion or a deletion +The "text-changed" signal is emitted when the text of the object which +implements the AtkText interface changes, This signal will have a detail +which is either "insert" or "delete" which identifies whether the text +change was an insertion or a deletion </para> @atktext: the object which received the signal. @@ -424,6 +428,8 @@ which identifies whether the text change was an insertion or a deletion <!-- ##### SIGNAL AtkText::text-selection-changed ##### --> <para> +The "text-selection-changed" signal is emitted when the selected text of +an object which implements AtkText changes. </para> |