From: Mike Blumenkrantz Date: Thu, 28 Feb 2019 14:48:27 +0000 (+0900) Subject: efl.ui.widget: mark scroll_* methods @beta X-Git-Tag: submit/tizen/20190308.115227~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9cf782a4b4e3acb936bad6e02915a351193cd0a1;p=platform%2Fupstream%2Fefl.git efl.ui.widget: mark scroll_* methods @beta Summary: these are questionable at best here ref T7553, T7714 Reviewers: woohyun Reviewed By: woohyun Subscribers: cedric, #reviewers, #committers Tags: #efl_api Maniphest Tasks: T7714, T7553 Differential Revision: https://phab.enlightenment.org/D8055 --- diff --git a/src/lib/elementary/efl_ui_widget.c b/src/lib/elementary/efl_ui_widget.c index d14c57ed73..74ddf1fb94 100644 --- a/src/lib/elementary/efl_ui_widget.c +++ b/src/lib/elementary/efl_ui_widget.c @@ -3052,6 +3052,30 @@ _efl_ui_widget_atspi(Eo *obj EINA_UNUSED, Elm_Widget_Smart_Data *_pd EINA_UNUSED // // +EAPI void +elm_widget_scroll_hold_push(Efl_Ui_Widget *obj) +{ + efl_ui_widget_scroll_hold_push(obj); +} + +EAPI void +elm_widget_scroll_hold_pop(Efl_Ui_Widget *obj) +{ + efl_ui_widget_scroll_hold_pop(obj); +} + +EAPI void +elm_widget_scroll_freeze_push(Efl_Ui_Widget *obj) +{ + efl_ui_widget_scroll_freeze_push(obj); +} + +EAPI void +elm_widget_scroll_freeze_pop(Efl_Ui_Widget *obj) +{ + efl_ui_widget_scroll_freeze_pop(obj); +} + EAPI Elm_Theme * elm_widget_theme_get(const Evas_Object *obj) { diff --git a/src/lib/elementary/efl_ui_widget.eo b/src/lib/elementary/efl_ui_widget.eo index 61de06e5d2..4c4ded6b53 100644 --- a/src/lib/elementary/efl_ui_widget.eo +++ b/src/lib/elementary/efl_ui_widget.eo @@ -402,16 +402,16 @@ abstract @beta Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Obje /* FIXME: Scroll API. Not sure how those APIs should be exposed with * the new scrollable API. */ - scroll_hold_push { + scroll_hold_push @beta { [[Push scroll hold]] } - scroll_hold_pop { + scroll_hold_pop @beta { [[Pop scroller hold]] } - scroll_freeze_push { + scroll_freeze_push @beta { [[Push scroller freeze]] } - scroll_freeze_pop { + scroll_freeze_pop @beta { [[Pop scroller freeze]] }