summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2013-10-18 19:26:05 +0200
committerAlejandro Piñeiro <apinheiro@igalia.com>2013-10-18 19:26:05 +0200
commit15c5458255605776e3f5c915e7604a19ac7da790 (patch)
tree4b76d563339c992f93021cfb98299b4adc351047
parent193abeb56fa98b00be30a334f1a76605013fe230 (diff)
downloadatk-15c5458255605776e3f5c915e7604a19ac7da790.tar.gz
role: new role ATK_ROLE_BLOCK_QUOTE
https://bugzilla.gnome.org/show_bug.cgi?id=710463
-rwxr-xr-xatk/atkobject.c1
-rwxr-xr-xatk/atkobject.h3
2 files changed, 4 insertions, 0 deletions
diff --git a/atk/atkobject.c b/atk/atkobject.c
index 82baf6f..ed383b4 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -204,6 +204,7 @@ enum {
N_("info bar")
N_("level bar")
N_("title bar")
+ N_("block quote")
#endif /* 0 */
static void atk_object_class_init (AtkObjectClass *klass);
diff --git a/atk/atkobject.h b/atk/atkobject.h
index d16c53a..d9f5730 100755
--- a/atk/atkobject.h
+++ b/atk/atkobject.h
@@ -155,6 +155,8 @@ G_BEGIN_DECLS
*@ATK_ROLE_LEVEL_BAR: A bar that serves as a level indicator to, for instance, show the strength of a password or the state of a battery. @Since: ATK-2.7.3
*@ATK_ROLE_TITLE_BAR: A bar that serves as the title of a window or a
* dialog. @Since: ATK-2.12
+ *@ATK_ROLE_BLOCK_QUOTE: An object which contains a text section
+ * that is quoted from another source. @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
@@ -268,6 +270,7 @@ typedef enum
ATK_ROLE_INFO_BAR,
ATK_ROLE_LEVEL_BAR,
ATK_ROLE_TITLE_BAR,
+ ATK_ROLE_BLOCK_QUOTE,
ATK_ROLE_LAST_DEFINED
} AtkRole;