summaryrefslogtreecommitdiff
path: root/atk
diff options
context:
space:
mode:
authorBill Haneman <billh@src.gnome.org>2004-07-20 13:39:31 +0000
committerBill Haneman <billh@src.gnome.org>2004-07-20 13:39:31 +0000
commit68ce6c62f725b9fe5fc45556ef81685288aa700c (patch)
tree56f083cdeaf66dd88dbb42b6e7068c774eeaf722 /atk
parent40c208a7efc98d6e551cf365754d3cfaee627760 (diff)
downloadatk-68ce6c62f725b9fe5fc45556ef81685288aa700c.tar.gz
Fix for bug 147989; Added ATK_ROLE_EMBEDDED. Revved to 1.7.2.ATK_1_7_2
Diffstat (limited to 'atk')
-rwxr-xr-xatk/atkobject.c3
-rwxr-xr-xatk/atkobject.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/atk/atkobject.c b/atk/atkobject.c
index 65d1901..2ec044c 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -154,7 +154,8 @@ static AtkRoleItem role_items [] =
{ ATK_ROLE_PARAGRAPH, N_("paragraph")},
{ ATK_ROLE_APPLICATION, N_("application")},
{ ATK_ROLE_AUTOCOMPLETE, N_("autocomplete")},
- { ATK_ROLE_EDITBAR, N_("edit bar")}
+ { ATK_ROLE_EDITBAR, N_("edit bar")},
+ { ATK_ROLE_EMBEDDED, N_("embedded component")}
};
static void atk_object_class_init (AtkObjectClass *klass);
diff --git a/atk/atkobject.h b/atk/atkobject.h
index 0159289..4f8c92e 100755
--- a/atk/atkobject.h
+++ b/atk/atkobject.h
@@ -116,6 +116,7 @@ extern "C" {
*@ATK_ROLE_APPLICATION: The object is an application object, which may contain @ATK_ROLE_FRAME objects or other types of accessibles.
*@ATK_ROLE_AUTOCOMPLETE: The object is a dialog or list containing items for insertion into an entry widget, for instance a list of words for completion of a text entry.
*@ATK_ROLE_EDITBAR: The object is an editable text object in a toolbar
+ *@ATK_ROLE_EMBEDDED: The object is an embedded container within a document or panel. This role is a grouping "hint" indicating that the contained objects share a context.
*@ATK_ROLE_LAST_DEFINED: not a valid role, used for finding end of enumeration
*
* Describes the role of an object
@@ -202,6 +203,7 @@ typedef enum
ATK_ROLE_APPLICATION,
ATK_ROLE_AUTOCOMPLETE,
ATK_ROLE_EDITBAR,
+ ATK_ROLE_EMBEDDED,
ATK_ROLE_LAST_DEFINED
} AtkRole;