diff --git a/legacy/elementary/src/lib/elm_atspi_bridge.c b/legacy/elementary/src/lib/elm_atspi_bridge.c index 41fabc09c8..75e2e81ffb 100644 --- a/legacy/elementary/src/lib/elm_atspi_bridge.c +++ b/legacy/elementary/src/lib/elm_atspi_bridge.c @@ -2,13 +2,15 @@ # include "elementary_config.h" #endif +#define ELM_INTERFACE_ATSPI_COMPONENT_PROTECTED +#define ELM_ATSPI_OBJECT_PROTECTED +#include "atspi/atspi-constants.h" + #include #include #include "elm_priv.h" #include -#include "atspi/atspi-constants.h" - /* * Accessibility Bus info not defined in atspi-constants.h */ diff --git a/legacy/elementary/src/lib/elm_atspi_object.c b/legacy/elementary/src/lib/elm_atspi_object.c index ac0b2ce360..b1b2f098fb 100644 --- a/legacy/elementary/src/lib/elm_atspi_object.c +++ b/legacy/elementary/src/lib/elm_atspi_object.c @@ -2,13 +2,15 @@ # include "elementary_config.h" #endif +#define ELM_INTERFACE_ATSPI_COMPONENT_PROTECTED +#define ELM_ATSPI_OBJECT_PROTECTED +#include "atspi/atspi-constants.h" + #include #include "elm_widget.h" #include "elm_priv.h" #include "assert.h" -#include "atspi/atspi-constants.h" - static Elm_Atspi_Object *_app; static Eina_List *_global_callbacks; diff --git a/legacy/elementary/src/lib/elm_atspi_object.eo b/legacy/elementary/src/lib/elm_atspi_object.eo index d788350473..49b19e5a5b 100644 --- a/legacy/elementary/src/lib/elm_atspi_object.eo +++ b/legacy/elementary/src/lib/elm_atspi_object.eo @@ -36,7 +36,7 @@ class Elm_Atspi_Object (Eo_Base, Elm_Interface_Atspi_Component) get { } } - role { + protected role { get { } values { diff --git a/legacy/elementary/src/lib/elm_interface_atspi_component.eo b/legacy/elementary/src/lib/elm_interface_atspi_component.eo index 8b2d457db7..d1b4b6a65e 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_component.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_component.eo @@ -38,7 +38,7 @@ mixin Elm_Interface_Atspi_Component () } } methods { - extents_set { + protected extents_set { params { @in int x; @in int y; @@ -48,7 +48,7 @@ mixin Elm_Interface_Atspi_Component () } return Eina_Bool; } - extents_get { + protected extents_get { params { @out int x; @out int y; @@ -57,7 +57,7 @@ mixin Elm_Interface_Atspi_Component () @in AtspiCoordType type; } } - contains { + protected contains { params { @in int x; @in int y; @@ -68,7 +68,7 @@ mixin Elm_Interface_Atspi_Component () focus_grab { return Eina_Bool; } - accessible_at_point_get { + protected accessible_at_point_get { params { @in int x; @in int y; @@ -76,7 +76,7 @@ mixin Elm_Interface_Atspi_Component () } return Elm_Atspi_Object *; } - position_set { + protected position_set { params { @in int x; @in int y; @@ -84,7 +84,7 @@ mixin Elm_Interface_Atspi_Component () } return Eina_Bool; } - position_get { + protected position_get { params { @out int x; @out int y;