atspi: mark atspi API as public 78/58378/2
authorLukasz Stanislawski <l.stanislaws@samsung.com>
Sat, 30 Jan 2016 08:57:11 +0000 (09:57 +0100)
committerShinwoo Kim <cinoo.kim@samsung.com>
Tue, 29 Mar 2016 08:53:00 +0000 (17:53 +0900)
@tizen_only

Change-Id: I7892c9433d675d9ba6618991ae46488060752c3c
Signed-off-by: Lukasz Stanislawski <l.stanislaws@samsung.com>
src/lib/elm_interface_atspi_accessible.eo
src/lib/elm_interface_atspi_accessible.h
src/lib/elm_interface_atspi_text.h
src/lib/elm_interface_atspi_widget_action.h
src/lib/elm_interface_atspi_window.h
src/lib/elm_interfaces.h

index 65485cd4ca52d83e9e4954d206bb3908cfcd5256..af1497bbf1248a7c3b3ce5f877f6e1f13f2b5b09 100644 (file)
@@ -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.]]
       }
    }
index 47d7e3b363360f3e770b4c2b68d4d4daffeeb1f9..2a1e3338d0d537d8daeca17895a4a18b2dffd75b 100644 (file)
@@ -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
index be1abc688b08db4a8c99eef6bb01dccdf790e0b6..65fcd1d45d49e2072fe5a4098c6d5a3125bdc4c0 100644 (file)
@@ -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
index 329e229418f6b9534641291e9b064de0aaa3ad03..a8f052d9e976952376f3982ced80b71270f41457 100644 (file)
@@ -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
index 0b148b382c7f495d7f528a7f8549c9ffb06c8925..276b24d975759d1a4b53befbf3d754fbcdb5e044 100644 (file)
@@ -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
index 78e262f09293f90673d9719cc8be47082404d052..d5ef4cfd9c6ea4ff25c9db788b50e8b16d5a147a 100644 (file)
@@ -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