From 3521add3599ad214b1a1a6dd0e3767517334ba28 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 4 Mar 2019 13:37:12 -0500 Subject: [PATCH] efl.ui.widget: mark a bunch of methods and event @beta Summary: these seem suspicious ref T7553 Depends on D8068 Reviewers: woohyun, Jaehyun_Cho, cedric Reviewed By: cedric Subscribers: cedric, #reviewers, #committers Tags: #efl_api Maniphest Tasks: T7553 Differential Revision: https://phab.enlightenment.org/D8081 --- src/lib/elementary/efl_ui_widget.c | 12 ++++++++++++ src/lib/elementary/efl_ui_widget.eo | 10 +++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/src/lib/elementary/efl_ui_widget.c b/src/lib/elementary/efl_ui_widget.c index 6beffdde34..4ab65975f6 100644 --- a/src/lib/elementary/efl_ui_widget.c +++ b/src/lib/elementary/efl_ui_widget.c @@ -1824,6 +1824,18 @@ elm_widget_is(const Evas_Object *obj) return _elm_widget_is(obj); } +EAPI void +elm_widget_access_info_set(Efl_Ui_Widget *obj, const char *txt) +{ + efl_ui_widget_access_info_set(obj, txt); +} + +EAPI const char * +elm_widget_access_info_get(const Efl_Ui_Widget *obj) +{ + return efl_ui_widget_access_info_get(obj); +} + EAPI Eo * elm_widget_top_get(const Eo *obj) { diff --git a/src/lib/elementary/efl_ui_widget.eo b/src/lib/elementary/efl_ui_widget.eo index 19e36a9da2..72ad2f8762 100644 --- a/src/lib/elementary/efl_ui_widget.eo +++ b/src/lib/elementary/efl_ui_widget.eo @@ -24,7 +24,7 @@ abstract @beta Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Obje event_prefix: efl_ui_widget; data: Efl_Ui_Widget_Data; methods { - @property cursor { + @property cursor @beta { [[The cursor to be shown when mouse is over the object This is the cursor that will be displayed when mouse is over the @@ -52,7 +52,7 @@ abstract @beta Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Obje by the display system or the theme.]] } } - @property cursor_style { + @property cursor_style @beta { [[A different style for the cursor. This only makes sense if theme cursors are used. @@ -71,7 +71,7 @@ abstract @beta Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Obje transparent, ....]] } } - @property cursor_theme_search_enabled { + @property cursor_theme_search_enabled @beta { [[Whether the cursor may be looked in the theme or not. If $false, the cursor may only come from the render engine, @@ -221,7 +221,7 @@ abstract @beta Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Obje } /* Accessibility */ - @property access_info { + @property access_info @beta { [[Accessibility information. This is a replacement string to be read by the accessibility @@ -439,6 +439,6 @@ abstract @beta Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Obje } events { language,changed: void; [[Called when widget language changed]] - access,changed: void; [[Called when accessibility changed]] + access,changed @beta: void; [[Called when accessibility changed]] } }