From: Lukasz Stanislawski Date: Sat, 30 Jan 2016 08:57:11 +0000 (+0100) Subject: atspi: mark atspi API as public X-Git-Tag: submit/tizen/20160329.133427~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F78%2F58378%2F2;p=platform%2Fupstream%2Felementary.git atspi: mark atspi API as public @tizen_only Change-Id: I7892c9433d675d9ba6618991ae46488060752c3c Signed-off-by: Lukasz Stanislawski --- diff --git a/src/lib/elm_interface_atspi_accessible.eo b/src/lib/elm_interface_atspi_accessible.eo index 65485cd4c..af1497bbf 100644 --- a/src/lib/elm_interface_atspi_accessible.eo +++ b/src/lib/elm_interface_atspi_accessible.eo @@ -1,6 +1,6 @@ mixin Elm_Interface_Atspi_Accessible () { - legacy_prefix: null; + legacy_prefix: elm_atspi_accessible; eo_prefix: elm_interface_atspi_accessible; data: Elm_Interface_Atspi_Accessible_Data; methods { @@ -12,7 +12,7 @@ mixin Elm_Interface_Atspi_Accessible () localized_name: const(char)*; } } - @property name @protected { + @property name { get { [[Gets an string describing ATSPI widget role name. Should be free by a user.]] } @@ -30,7 +30,7 @@ mixin Elm_Interface_Atspi_Accessible () relations: Elm_Atspi_Relation_Set; } } - @property role @protected { + @property role { get { [[Gets the role of the widget in ATSPI Accessibility domain.]] } @@ -72,7 +72,7 @@ mixin Elm_Interface_Atspi_Accessible () idx: int; } } - @property description @protected { + @property description { get { [[Gets widget contextual information.]] } @@ -123,7 +123,7 @@ mixin Elm_Interface_Atspi_Accessible () @in event_info: void*; [[Accessibility event details.]] } } - @property translation_domain @protected { + @property translation_domain { get { [[Gets the translation domain of "name" and "description" properties.]] @@ -147,7 +147,7 @@ mixin Elm_Interface_Atspi_Accessible () domain: const(char)*; [[ translation domain ]] } } - relationship_append @protected { + relationship_append { [[Defines the relationship between two accessible objects. Adds unique relation between source object and relation_object of a @@ -169,7 +169,7 @@ mixin Elm_Interface_Atspi_Accessible () @in relation_object: const(Elm_Interface_Atspi_Accessible)*; } } - relationship_remove @protected { + relationship_remove { [[Removes the relationship between two accessible objects. If relation_object is NULL function removes all relations @@ -180,7 +180,7 @@ mixin Elm_Interface_Atspi_Accessible () @in relation_object: const(Elm_Interface_Atspi_Accessible)*; } } - relationships_clear @protected { + relationships_clear { [[Removes all relationships in accessible object.]] } } diff --git a/src/lib/elm_interface_atspi_accessible.h b/src/lib/elm_interface_atspi_accessible.h index 47d7e3b36..2a1e3338d 100644 --- a/src/lib/elm_interface_atspi_accessible.h +++ b/src/lib/elm_interface_atspi_accessible.h @@ -1,9 +1,6 @@ #ifndef ELM_INTERFACE_ATSPI_ACCESSIBLE_H #define ELM_INTERFACE_ATSPI_ACCESSIBLE_H -#ifdef EFL_BETA_API_SUPPORT - - /** * ATSPI event listener */ @@ -396,4 +393,3 @@ EAPI Elm_Atspi_Relation_Set elm_atspi_relation_set_clone(const Elm_Atspi_Relatio #endif #endif -#endif diff --git a/src/lib/elm_interface_atspi_text.h b/src/lib/elm_interface_atspi_text.h index be1abc688..65fcd1d45 100644 --- a/src/lib/elm_interface_atspi_text.h +++ b/src/lib/elm_interface_atspi_text.h @@ -1,8 +1,6 @@ #ifndef ELM_INTERFACE_ATSPI_TEXT_H #define ELM_INTERFACE_ATSPI_TEXT_H -#ifdef EFL_BETA_API_SUPPORT - enum _Elm_Atspi_Text_Granulatity { ELM_ATSPI_TEXT_GRANULARITY_CHAR, @@ -64,4 +62,3 @@ struct _Elm_Atspi_Text_Change_Info #endif #endif -#endif diff --git a/src/lib/elm_interface_atspi_widget_action.h b/src/lib/elm_interface_atspi_widget_action.h index 329e22941..a8f052d9e 100644 --- a/src/lib/elm_interface_atspi_widget_action.h +++ b/src/lib/elm_interface_atspi_widget_action.h @@ -1,8 +1,6 @@ #ifndef ELM_INTERFACE_ATSPI_WIDGET_ACTION_H #define ELM_INTERFACE_ATSPI_WIDGET_ACTION_H -#ifdef EFL_BETA_API_SUPPORT - struct _Elm_Atspi_Action { const char *name; @@ -21,4 +19,3 @@ typedef struct _Elm_Atspi_Action Elm_Atspi_Action; #endif #endif -#endif diff --git a/src/lib/elm_interface_atspi_window.h b/src/lib/elm_interface_atspi_window.h index 0b148b382..276b24d97 100644 --- a/src/lib/elm_interface_atspi_window.h +++ b/src/lib/elm_interface_atspi_window.h @@ -1,7 +1,6 @@ #ifndef ELM_INTERFACE_ATSPI_WINDOW_H #define ELM_INTERFACE_ATSPI_WINDOW_H -#ifdef EFL_BETA_API_SUPPORT #ifdef EFL_EO_API_SUPPORT /** @@ -53,4 +52,3 @@ #endif #endif -#endif diff --git a/src/lib/elm_interfaces.h b/src/lib/elm_interfaces.h index 78e262f09..d5ef4cfd9 100644 --- a/src/lib/elm_interfaces.h +++ b/src/lib/elm_interfaces.h @@ -5,7 +5,6 @@ #ifdef EFL_EO_API_SUPPORT #include "elm_interface_scrollable.h" -#ifdef EFL_BETA_API_SUPPORT #include "elm_interface_atspi_action.eo.h" #include "elm_interface_atspi_component.eo.h" #include "elm_interface_atspi_editable_text.eo.h" @@ -13,9 +12,7 @@ #include "elm_interface_atspi_selection.eo.h" #include "elm_interface_atspi_value.eo.h" #endif -#endif #ifndef EFL_NOLEGACY_API_SUPPORT -#ifdef EFL_BETA_API_SUPPORT #include "elm_interface_atspi_action.eo.legacy.h" #include "elm_interface_atspi_component.eo.legacy.h" #include "elm_interface_atspi_editable_text.eo.legacy.h" @@ -23,4 +20,3 @@ #include "elm_interface_atspi_selection.eo.legacy.h" #include "elm_interface_atspi_value.eo.legacy.h" #endif -#endif