summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2013-12-09 16:09:49 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2013-12-09 17:07:21 +0100
commit9cd7ce38121980bca326953b5e0e5c6c1a268f66 (patch)
tree89aec2a689221c6a1514c090d46d8a6adf39a2de
parent82a1f6f8090e385ad9c61a6b4f83ca5ba9c97fd1 (diff)
downloadatk-9cd7ce38121980bca326953b5e0e5c6c1a268f66.tar.gz
roles: add roles for description lists
https://bugzilla.gnome.org/show_bug.cgi?id=720065
-rwxr-xr-xatk/atkobject.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/atk/atkobject.h b/atk/atkobject.h
index 404b505..91999b3 100755
--- a/atk/atkobject.h
+++ b/atk/atkobject.h
@@ -188,6 +188,20 @@ G_BEGIN_DECLS
*@ATK_ROLE_TIMER: An object containing a numerical counter which
* indicates an amount of elapsed time from a start point, or the time
* remaining until an end point. @Since: ATK-2.12
+ *@ATK_ROLE_DESCRIPTION_LIST: An object that represents a list of
+ * term-value groups. A term-value group represents a individual
+ * description and consist of one or more names
+ * (ATK_ROLE_DESCRIPTION_TERM) followed by one or more values
+ * (ATK_ROLE_DESCRIPTION_VALUE). For each list, there should not be
+ * more than one group with the same term name. @Since: ATK-2.12
+ *@ATK_ROLE_DESCRIPTION_TERM: An object that represents the term, or
+ * name, part of a term-description group in a description
+ * list. @Since: ATK-2.12
+ *@ATK_ROLE_DESCRIPTION_VALUE: An object that represents the
+ * description, definition or value of a term-description group in a
+ * description list. The values within a group are alternatives,
+ * meaning that you can have several ATK_ROLE_DESCRIPTION_VALUE for a
+ * given ATK_ROLE_DESCRIPTION_TERM. @Since: ATK-2.12
*@ATK_ROLE_LAST_DEFINED: not a valid role, used for finding end of the enumeration
*
* Describes the role of an object
@@ -312,6 +326,9 @@ typedef enum
ATK_ROLE_MATH,
ATK_ROLE_RATING,
ATK_ROLE_TIMER,
+ ATK_ROLE_DESCRIPTION_LIST,
+ ATK_ROLE_DESCRIPTION_TERM,
+ ATK_ROLE_DESCRIPTION_VALUE,
ATK_ROLE_LAST_DEFINED
} AtkRole;