diff options
author | Padraig O'Briain <padraigo@src.gnome.org> | 2001-11-05 12:42:21 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2001-11-05 12:42:21 +0000 |
commit | ead4c1608e541fbd0635f36694011492ed30226c (patch) | |
tree | 7e2eefb2709dfd879da87b91f4fce46d67e4f8a7 /atk/atkrelation.h | |
parent | 15e1a53a7af5b158ab78879a46296e4afed586aa (diff) | |
download | atk-ead4c1608e541fbd0635f36694011492ed30226c.tar.gz |
Add role ATK_ROLE_TREE_TABLE
* atk/atkobject.h:
Add role ATK_ROLE_TREE_TABLE
* atk/atkrelation.h:
Remove ATK_RELATION_NODE_CHILDREN and ATK_RELATION_NODE_PARENT
and added ATK_RELATION_NODE_CHILD_OF; this is for use by TreeTable
* docs/tmpl/atk-unused.sgml, docs/tmpl/atkaction.smgl,
docs/tmpl/atkcomponent.sgml, docs/tmpl/atkdocument.sgml,
docs/tmpl/atkeditabletext.tmpl, docs/tmpl/atkimage.tmpl,
docs/tmpl/atkobject.sgml, docs/tmpl/atkrelation.sgml,
docs/tmpl/atkselection.sgml, docs/tmpl/atkstate.sgml,
docs/tmpl/atkstreamablecontent.sgml, docs/tmpl/atktable.sgml,
docs/tmpl/atktext.sgml, docs/tmpl/atkutil.sgml:
Update to reflect the current state of the documentation in the code.
Diffstat (limited to 'atk/atkrelation.h')
-rwxr-xr-x | atk/atkrelation.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/atk/atkrelation.h b/atk/atkrelation.h index b4f3c69..ba39ec2 100755 --- a/atk/atkrelation.h +++ b/atk/atkrelation.h @@ -40,8 +40,7 @@ extern "C" { *@ATK_RELATION_LABEL_FOR: Indicates an object is a label for one or more target objects. *@ATK_RELATION_LABELLED_BY: Indicates an object is labelled by one or more target objects. *@ATK_RELATION_MEMBER_OF: Indicates an object is a member of a group of one or more target objects. - *@ATK_RELATION_NODE_CHILDREN: Indicates an object is a node in a tree or table and a compound object which more than one subobject - *@ATK_RELATION_NODE_PARENT: Indicates an object is a subobject of a compound object which is a node in a tree or table. + *@ATK_RELATION_NODE_CHILD_OF: Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell. *@ATK_RELATION_LAST_DEFINED: * *Describes the type of the relation @@ -54,8 +53,7 @@ typedef enum ATK_RELATION_LABEL_FOR, ATK_RELATION_LABELLED_BY, ATK_RELATION_MEMBER_OF, - ATK_RELATION_NODE_CHILDREN, - ATK_RELATION_NODE_PARENT, + ATK_RELATION_NODE_CHILD_OF, ATK_RELATION_LAST_DEFINED } AtkRelationType; |