elm: mark access interfaces as beta

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D5365
This commit is contained in:
Lukasz Stanislawski 2017-11-01 21:31:46 +09:00 committed by Jean-Philippe Andre
parent 824792f09d
commit 5c997b3aaa
9 changed files with 73 additions and 65 deletions

View File

@ -241,7 +241,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
eo_prefix: efl_access; eo_prefix: efl_access;
data: Efl_Access_Data; data: Efl_Access_Data;
methods { methods {
@property localized_role_name @protected { @property localized_role_name @protected @beta {
[[Gets an localized string describing accessible object role name.]] [[Gets an localized string describing accessible object role name.]]
get { get {
} }
@ -249,7 +249,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
localized_name: string; [[Localized accessible object role name]] localized_name: string; [[Localized accessible object role name]]
} }
} }
@property name { @property name @beta {
[[Accessible name of the object.]] [[Accessible name of the object.]]
get { get {
} }
@ -259,7 +259,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
name: string; [[Accessible name]] name: string; [[Accessible name]]
} }
} }
@property relation_set @protected { @property relation_set @protected @beta {
[[Gets an all relations between accessible object and other accessible objects.]] [[Gets an all relations between accessible object and other accessible objects.]]
get { get {
} }
@ -267,7 +267,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
relations: Efl.Access.Relation_Set; [[Accessible relation set]] relations: Efl.Access.Relation_Set; [[Accessible relation set]]
} }
} }
@property role { @property role @beta {
[[The role of the object in accessibility domain.]] [[The role of the object in accessibility domain.]]
get { get {
} }
@ -277,7 +277,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
role: Efl.Access.Role; [[Accessible role]] role: Efl.Access.Role; [[Accessible role]]
} }
} }
@property children @protected { @property children @protected @beta {
[[Gets object's accessible children.]] [[Gets object's accessible children.]]
get { get {
} }
@ -285,7 +285,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
children: list<Efl.Access> @owned; [[List of widget's children]] children: list<Efl.Access> @owned; [[List of widget's children]]
} }
} }
@property role_name @protected { @property role_name @protected @beta {
[[Gets human-readable string indentifying object accessibility role.]] [[Gets human-readable string indentifying object accessibility role.]]
get { get {
} }
@ -293,7 +293,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
role_name: string; [[Accessible role name]] role_name: string; [[Accessible role name]]
} }
} }
@property attributes @protected { @property attributes @protected @beta {
[[Gets key-value pairs indentifying object extra attributes. Must be free by a user.]] [[Gets key-value pairs indentifying object extra attributes. Must be free by a user.]]
get { get {
} }
@ -302,7 +302,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
attributes: list<ptr(Efl.Access.Attribute) @owned> @owned; [[List of object attributes]] attributes: list<ptr(Efl.Access.Attribute) @owned> @owned; [[List of object attributes]]
} }
} }
@property index_in_parent @protected { @property index_in_parent @protected @beta {
[[Gets index of the child in parent's children list.]] [[Gets index of the child in parent's children list.]]
get { get {
} }
@ -310,7 +310,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
idx: int; [[Index in children list]] idx: int; [[Index in children list]]
} }
} }
@property description { @property description @beta {
[[Contextual information about object.]] [[Contextual information about object.]]
get { get {
} }
@ -320,7 +320,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
description: string; [[Accessible contextual information]] description: string; [[Accessible contextual information]]
} }
} }
@property parent { @property parent @beta {
[[Object's accessible parent.]] [[Object's accessible parent.]]
get { get {
} }
@ -330,7 +330,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
parent: Efl.Access; [[Accessible parent]] parent: Efl.Access; [[Accessible parent]]
} }
} }
@property state_set @protected { @property state_set @protected @beta {
[[Gets set describing object accessible states.]] [[Gets set describing object accessible states.]]
get { get {
} }
@ -338,7 +338,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
states: Efl.Access.State_Set; [[Accessible state set]] states: Efl.Access.State_Set; [[Accessible state set]]
} }
} }
event_handler_add @class @protected { event_handler_add @class @protected @beta {
[[Register accessibility event listener]] [[Register accessibility event listener]]
params { params {
@in cb: Efl_Event_Cb; [[Callback]] @in cb: Efl_Event_Cb; [[Callback]]
@ -346,13 +346,13 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
} }
return: ptr(Efl.Access.Event.Handler); [[Event handler]] return: ptr(Efl.Access.Event.Handler); [[Event handler]]
} }
event_handler_del @class @protected { event_handler_del @class @protected @beta {
[[Deregister accessibility event listener]] [[Deregister accessibility event listener]]
params { params {
@in handler: ptr(Efl.Access.Event.Handler); [[Event handler]] @in handler: ptr(Efl.Access.Event.Handler); [[Event handler]]
} }
} }
event_emit @class @protected { event_emit @class @protected @beta {
[[Emit event]] [[Emit event]]
params { params {
@in accessible: Efl.Access; [[Accessibility object.]] @in accessible: Efl.Access; [[Accessibility object.]]
@ -360,7 +360,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
@in event_info: void_ptr; [[Accessibility event details.]] @in event_info: void_ptr; [[Accessibility event details.]]
} }
} }
@property translation_domain { @property translation_domain @beta {
[[The translation domain of "name" and "description" [[The translation domain of "name" and "description"
properties. properties.
@ -382,7 +382,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
domain: string; [[Translation domain]] domain: string; [[Translation domain]]
} }
} }
@property type { @property type @beta {
[[Type of accessibility object]] [[Type of accessibility object]]
get { get {
} }
@ -392,7 +392,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
type: Efl.Access.Type; [[Object type]] type: Efl.Access.Type; [[Object type]]
} }
} }
relationship_append { relationship_append @beta {
[[Defines the relationship between two accessible objects. [[Defines the relationship between two accessible objects.
Adds unique relation between source object and relation_object of a Adds unique relation between source object and relation_object of a
@ -411,7 +411,7 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
@in relation_object: const(Efl.Access); [[Object to relate to]] @in relation_object: const(Efl.Access); [[Object to relate to]]
} }
} }
relationship_remove { relationship_remove @beta {
[[Removes the relationship between two accessible objects. [[Removes the relationship between two accessible objects.
If relation_object is NULL function removes all relations If relation_object is NULL function removes all relations
@ -422,10 +422,10 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
@in relation_object: const(Efl.Access); [[Object to remove relation from]] @in relation_object: const(Efl.Access); [[Object to remove relation from]]
} }
} }
relationships_clear { relationships_clear @beta {
[[Removes all relationships in accessible object.]] [[Removes all relationships in accessible object.]]
} }
@property root @class { @property root @class @beta {
get { get {
[[Get root object of accessible object hierarchy]] [[Get root object of accessible object hierarchy]]
values { values {

View File

@ -3,6 +3,7 @@
#endif #endif
#define EFL_ACCESS_COMPONENT_PROTECTED #define EFL_ACCESS_COMPONENT_PROTECTED
#define EFL_ACCESS_COMPONENT_BETA
#define EFL_ACCESS_PROTECTED #define EFL_ACCESS_PROTECTED
#include <Elementary.h> #include <Elementary.h>

View File

@ -5,7 +5,7 @@ mixin Efl.Access.Component ()
[[AT-SPI component mixin]] [[AT-SPI component mixin]]
data: null; data: null;
methods { methods {
@property size @protected { @property size @protected @beta {
[[Size of accessible widget.]] [[Size of accessible widget.]]
set { set {
return: bool; [[$true if size was set, $false otherwise]] return: bool; [[$true if size was set, $false otherwise]]
@ -17,7 +17,7 @@ mixin Efl.Access.Component ()
h: int; [[Height of the widget]] h: int; [[Height of the widget]]
} }
} }
@property layer @protected { @property layer @protected @beta {
[[Evas layer of accessible widget.]] [[Evas layer of accessible widget.]]
get { get {
} }
@ -25,7 +25,7 @@ mixin Efl.Access.Component ()
layer: int; [[Evas layer of the widget]] layer: int; [[Evas layer of the widget]]
} }
} }
@property alpha @protected { @property alpha @protected @beta {
[[Gets alpha of accessible widget.]] [[Gets alpha of accessible widget.]]
get { get {
} }
@ -33,7 +33,7 @@ mixin Efl.Access.Component ()
alpha: double; [[Alpha value in [0, 1] range.]] alpha: double; [[Alpha value in [0, 1] range.]]
} }
} }
@property z_order @protected { @property z_order @protected @beta {
[[Gets the depth at which the component is shown in relation to other [[Gets the depth at which the component is shown in relation to other
components in the same container.]] components in the same container.]]
get { get {
@ -42,7 +42,7 @@ mixin Efl.Access.Component ()
z_order: int; [[Z order of component]] z_order: int; [[Z order of component]]
} }
} }
@property extents @protected { @property extents @protected @beta {
[[Geometry of accessible widget.]] [[Geometry of accessible widget.]]
get { get {
} }
@ -57,7 +57,7 @@ mixin Efl.Access.Component ()
rect: Eina.Rect; [[The geometry.]] rect: Eina.Rect; [[The geometry.]]
} }
} }
@property position @protected { @property position @protected @beta {
[[Position of accessible widget.]] [[Position of accessible widget.]]
set { set {
return: bool; [[$true if position was set, $false otherwise]] return: bool; [[$true if position was set, $false otherwise]]
@ -73,7 +73,7 @@ mixin Efl.Access.Component ()
y: int; [[Y coordinate]] y: int; [[Y coordinate]]
} }
} }
contains @protected { contains @protected @beta {
[[Contains accessible widget]] [[Contains accessible widget]]
params { params {
screen_coords: bool; [[If $true x and y values will be relative to screen_coords: bool; [[If $true x and y values will be relative to
@ -83,13 +83,13 @@ mixin Efl.Access.Component ()
} }
return: bool; [[$true if params have been set, $false otherwise]] return: bool; [[$true if params have been set, $false otherwise]]
} }
focus_grab @protected { focus_grab @protected @beta {
[[Focuses accessible widget.]] [[Focuses accessible widget.]]
return: bool; [[$true if focus grab focus succeed, $false otherwise.]] return: bool; [[$true if focus grab focus succeed, $false otherwise.]]
} }
accessible_at_point_get @protected { accessible_at_point_get @protected @beta {
[[Gets top component object occupying space at given coordinates.]] [[Gets top component object occupying space at given coordinates.]]
params { params {
screen_coords: bool; [[If $true x and y values will be relative to screen_coords: bool; [[If $true x and y values will be relative to

View File

@ -2,7 +2,7 @@ interface Efl.Access.Editable.Text ()
{ {
[[Elementary editable text interface]] [[Elementary editable text interface]]
methods { methods {
@property content @protected { @property content @protected @beta {
[[Editable content property]] [[Editable content property]]
set { set {
return: bool; [[$true if setting the value succeeded, $false otherwise]] return: bool; [[$true if setting the value succeeded, $false otherwise]]
@ -11,7 +11,7 @@ interface Efl.Access.Editable.Text ()
string: string; [[Content]] string: string; [[Content]]
} }
} }
insert @protected { insert @protected @beta {
[[Insert text at given position]] [[Insert text at given position]]
params { params {
@in string: string; [[String to be inserted]] @in string: string; [[String to be inserted]]
@ -19,7 +19,7 @@ interface Efl.Access.Editable.Text ()
} }
return: bool; [[$true if insert succeeded, $false otherwise]] return: bool; [[$true if insert succeeded, $false otherwise]]
} }
copy @protected { copy @protected @beta {
[[Copy text between start and end parameter]] [[Copy text between start and end parameter]]
params { params {
@in start: int; [[Start position to copy]] @in start: int; [[Start position to copy]]
@ -27,7 +27,7 @@ interface Efl.Access.Editable.Text ()
} }
return: bool; [[$true if copy succeeded, $false otherwise]] return: bool; [[$true if copy succeeded, $false otherwise]]
} }
cut @protected { cut @protected @beta {
[[Cut text between start and end parameter]] [[Cut text between start and end parameter]]
params { params {
@in start: int; [[Start position to cut]] @in start: int; [[Start position to cut]]
@ -35,7 +35,7 @@ interface Efl.Access.Editable.Text ()
} }
return: bool; [[$true if cut succeeded, $false otherwise]] return: bool; [[$true if cut succeeded, $false otherwise]]
} }
delete @protected { delete @protected @beta {
[[Delete text between start and end parameter]] [[Delete text between start and end parameter]]
params { params {
@in start: int; [[Start position to delete]] @in start: int; [[Start position to delete]]
@ -43,7 +43,7 @@ interface Efl.Access.Editable.Text ()
} }
return: bool; [[$true if delete succeeded, $false otherwise]] return: bool; [[$true if delete succeeded, $false otherwise]]
} }
paste @protected { paste @protected @beta {
[[Paste text at given position]] [[Paste text at given position]]
params { params {
@in position: int; [[Position to insert text]] @in position: int; [[Position to insert text]]

View File

@ -3,7 +3,7 @@ mixin Efl.Access.Image ()
[[Accessible image mixin]] [[Accessible image mixin]]
data: null; data: null;
methods { methods {
@property extents @protected { @property extents @protected @beta {
[[Gets an image extents.]] [[Gets an image extents.]]
get @pure_virtual { get @pure_virtual {
} }
@ -17,7 +17,7 @@ mixin Efl.Access.Image ()
height: int; [[Image height]] height: int; [[Image height]]
} }
} }
@property description @protected { @property description @protected @beta {
[[Textual description of image]] [[Textual description of image]]
get { get {
} }
@ -27,7 +27,7 @@ mixin Efl.Access.Image ()
description: string; [[Textual image description]] description: string; [[Textual image description]]
} }
} }
@property locale @protected { @property locale @protected @beta {
[[Gets locale of the image description.]] [[Gets locale of the image description.]]
get { get {
} }

View File

@ -2,13 +2,13 @@ interface Efl.Access.Selection ()
{ {
[[Elementary access selection interface]] [[Elementary access selection interface]]
methods { methods {
@property selected_children_count @protected { @property selected_children_count @protected @beta {
get { get {
[[Gets the number of currently selected children]] [[Gets the number of currently selected children]]
return: int; [[Number of currently selected children]] return: int; [[Number of currently selected children]]
} }
} }
@property selected_child @protected { @property selected_child @protected @beta {
[[Gets child for given child index]] [[Gets child for given child index]]
get { get {
return: Efl.Object; [[Child object]] return: Efl.Object; [[Child object]]
@ -17,36 +17,36 @@ interface Efl.Access.Selection ()
selected_child_index: int; [[Index of child]] selected_child_index: int; [[Index of child]]
} }
} }
child_select @protected { child_select @protected @beta {
[[Adds selection for given child index]] [[Adds selection for given child index]]
params { params {
@in child_index: int; [[Index of child]] @in child_index: int; [[Index of child]]
} }
return: bool; [[$true if selection was added, $false otherwise]] return: bool; [[$true if selection was added, $false otherwise]]
} }
selected_child_deselect @protected { selected_child_deselect @protected @beta {
[[Removes selection for given child index]] [[Removes selection for given child index]]
params { params {
@in child_index: int; [[Index of child]] @in child_index: int; [[Index of child]]
} }
return: bool; [[$true if selection was removed, $false otherwise]] return: bool; [[$true if selection was removed, $false otherwise]]
} }
is_child_selected @protected { is_child_selected @protected @beta {
[[Determines if child specified by index is selected]] [[Determines if child specified by index is selected]]
params { params {
@in child_index: int; [[Index of child]] @in child_index: int; [[Index of child]]
} }
return: bool; [[$true if child is selected, $false otherwise]] return: bool; [[$true if child is selected, $false otherwise]]
} }
all_children_select @protected { all_children_select @protected @beta {
[[Adds selection for all children]] [[Adds selection for all children]]
return: bool; [[$true if selection was added to all children, $false otherwise]] return: bool; [[$true if selection was added to all children, $false otherwise]]
} }
clear @protected { clear @protected @beta {
[[Clears the current selection]] [[Clears the current selection]]
return: bool; [[$true if selection was cleared, $false otherwise]] return: bool; [[$true if selection was cleared, $false otherwise]]
} }
child_deselect @protected { child_deselect @protected @beta {
[[Removes selection for given child index]] [[Removes selection for given child index]]
params { params {
@in child_index: int; [[Index of child]] @in child_index: int; [[Index of child]]

View File

@ -48,7 +48,7 @@ interface Efl.Access.Text ()
{ {
[[Elementary accessible text interface]] [[Elementary accessible text interface]]
methods { methods {
@property character @protected { @property character @protected @beta {
get { get {
[[Gets single character present in accessible widget's text at given offset.]] [[Gets single character present in accessible widget's text at given offset.]]
} }
@ -59,7 +59,7 @@ interface Efl.Access.Text ()
character: Eina.Unicode; [[Character at offset. 0 when out-of bounds offset has been given. Codepoints between DC80 and DCFF indicates that string includes invalid UTF8 chars.]] character: Eina.Unicode; [[Character at offset. 0 when out-of bounds offset has been given. Codepoints between DC80 and DCFF indicates that string includes invalid UTF8 chars.]]
} }
} }
@property string @protected { @property string @protected @beta {
get { get {
[[Gets string, start and end offset in text according to given initial offset and granularity.]] [[Gets string, start and end offset in text according to given initial offset and granularity.]]
} }
@ -72,7 +72,7 @@ interface Efl.Access.Text ()
string: mstring @owned; [[Newly allocated UTF-8 encoded string. Must be free by a user.]] string: mstring @owned; [[Newly allocated UTF-8 encoded string. Must be free by a user.]]
} }
} }
@property text @protected { @property text @protected @beta {
get { get {
[[Gets text of accessible widget.]] [[Gets text of accessible widget.]]
} }
@ -84,7 +84,7 @@ interface Efl.Access.Text ()
text: mstring @owned; [[UTF-8 encoded text.]] text: mstring @owned; [[UTF-8 encoded text.]]
} }
} }
@property caret_offset @protected { @property caret_offset @protected @beta {
[[Caret offset property]] [[Caret offset property]]
get { get {
[[Gets offset position of caret (cursor)]] [[Gets offset position of caret (cursor)]]
@ -96,7 +96,7 @@ interface Efl.Access.Text ()
offset: int; [[Offset]] offset: int; [[Offset]]
} }
} }
@property attribute @protected { @property attribute @protected @beta {
get { get {
[[Indicate if a text attribute with a given name is set]] [[Indicate if a text attribute with a given name is set]]
return: bool; [[$true if attribute name is set, $false otherwise]] return: bool; [[$true if attribute name is set, $false otherwise]]
@ -110,7 +110,7 @@ interface Efl.Access.Text ()
value: mstring @owned; [[Value of text attribute. Should be free()]] value: mstring @owned; [[Value of text attribute. Should be free()]]
} }
} }
@property attributes @protected { @property attributes @protected @beta {
get { get {
[[Gets list of all text attributes.]] [[Gets list of all text attributes.]]
} }
@ -122,7 +122,7 @@ interface Efl.Access.Text ()
attributes: list<ptr(Efl.Access.Text.Attribute) @owned> @owned; [[List of text attributes]] attributes: list<ptr(Efl.Access.Text.Attribute) @owned> @owned; [[List of text attributes]]
} }
} }
@property default_attributes @protected { @property default_attributes @protected @beta {
[[Default attributes]] [[Default attributes]]
get { get {
} }
@ -130,7 +130,7 @@ interface Efl.Access.Text ()
attributes: list<ptr(Efl.Access.Text.Attribute) @owned> @owned; [[List of default attributes]] attributes: list<ptr(Efl.Access.Text.Attribute) @owned> @owned; [[List of default attributes]]
} }
} }
@property character_extents @protected { @property character_extents @protected @beta {
[[Character extents]] [[Character extents]]
get { get {
return: bool; [[$true if character extents, $false otherwise]] return: bool; [[$true if character extents, $false otherwise]]
@ -143,7 +143,7 @@ interface Efl.Access.Text ()
rect: Eina.Rect; [[Extents rectangle]] rect: Eina.Rect; [[Extents rectangle]]
} }
} }
@property character_count @protected { @property character_count @protected @beta {
[[Character count]] [[Character count]]
get { get {
} }
@ -151,7 +151,7 @@ interface Efl.Access.Text ()
count: int; [[Character count]] count: int; [[Character count]]
} }
} }
@property offset_at_point @protected { @property offset_at_point @protected @beta {
[[Offset at given point]] [[Offset at given point]]
get { get {
} }
@ -164,7 +164,7 @@ interface Efl.Access.Text ()
offset: int; [[Offset]] offset: int; [[Offset]]
} }
} }
@property bounded_ranges @protected { @property bounded_ranges @protected @beta {
[[Bounded ranges]] [[Bounded ranges]]
get { get {
} }
@ -178,7 +178,7 @@ interface Efl.Access.Text ()
ranges: list<ptr(Efl.Access.Text.Range) @owned> @owned; [[List of ranges]] ranges: list<ptr(Efl.Access.Text.Range) @owned> @owned; [[List of ranges]]
} }
} }
@property range_extents @protected { @property range_extents @protected @beta {
[[Range extents]] [[Range extents]]
get { get {
return: bool; [[$true if range extents, $false otherwise]] return: bool; [[$true if range extents, $false otherwise]]
@ -192,7 +192,7 @@ interface Efl.Access.Text ()
rect: Eina.Rect; [[Range rectangle]] rect: Eina.Rect; [[Range rectangle]]
} }
} }
@property selections_count @protected { @property selections_count @protected @beta {
[[Selection count property]] [[Selection count property]]
get { get {
} }
@ -200,7 +200,7 @@ interface Efl.Access.Text ()
count: int; [[Selection counter]] count: int; [[Selection counter]]
} }
} }
@property selection @protected { @property selection @protected @beta {
[[Selection property]] [[Selection property]]
get { get {
} }
@ -215,7 +215,7 @@ interface Efl.Access.Text ()
end_offset: int; [[Selection end offset]] end_offset: int; [[Selection end offset]]
} }
} }
selection_add @protected { selection_add @protected @beta {
[[Add selection]] [[Add selection]]
params { params {
@in start_offset: int; [[Start selection from this offset]] @in start_offset: int; [[Start selection from this offset]]
@ -223,7 +223,7 @@ interface Efl.Access.Text ()
} }
return: bool; [[$true if selection was added, $false otherwise]] return: bool; [[$true if selection was added, $false otherwise]]
} }
selection_remove @protected { selection_remove @protected @beta {
[[Remove selection]] [[Remove selection]]
params { params {
@in selection_number: int; [[Selection number to be removed]] @in selection_number: int; [[Selection number to be removed]]

View File

@ -2,7 +2,7 @@ interface Efl.Access.Value ()
{ {
[[Elementary Access value interface]] [[Elementary Access value interface]]
methods { methods {
@property value_and_text @protected { @property value_and_text @protected @beta {
[[Value and text property]] [[Value and text property]]
get { get {
[[Gets value displayed by a accessible widget.]] [[Gets value displayed by a accessible widget.]]
@ -15,7 +15,7 @@ interface Efl.Access.Value ()
text: string; [[string describing value in given context eg. small, enough]] text: string; [[string describing value in given context eg. small, enough]]
} }
} }
@property range @protected { @property range @protected @beta {
get { get {
[[Gets a range of all possible values and its description]] [[Gets a range of all possible values and its description]]
} }
@ -25,7 +25,7 @@ interface Efl.Access.Value ()
description: string; [[Description of the range]] description: string; [[Description of the range]]
} }
} }
@property increment @protected { @property increment @protected @beta {
get { get {
[[Gets an minimal incrementation value]] [[Gets an minimal incrementation value]]
} }

View File

@ -15,3 +15,10 @@
#define EFL_CANVAS_GROUP_BETA #define EFL_CANVAS_GROUP_BETA
#define EFL_OBJECT_BETA #define EFL_OBJECT_BETA
#define EFL_OBJECT_PROTECTED #define EFL_OBJECT_PROTECTED
#define EFL_ACCESS_BETA
#define EFL_ACCESS_COMPONENT_BETA
#define EFL_ACCESS_EDITABLE_TEXT_BETA
#define EFL_ACCESS_IMAGE_BETA
#define EFL_ACCESS_SELECTION_BETA
#define EFL_ACCESS_TEXT_BETA
#define EFL_ACCESS_VALUE_BETA