From: Alejandro PiƱeiro Date: Fri, 18 Oct 2013 17:26:05 +0000 (+0200) Subject: role: new role ATK_ROLE_BLOCK_QUOTE X-Git-Tag: ATK_2_11_1~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15c5458255605776e3f5c915e7604a19ac7da790;p=platform%2Fupstream%2Fatk.git role: new role ATK_ROLE_BLOCK_QUOTE https://bugzilla.gnome.org/show_bug.cgi?id=710463 --- 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;