efl.ui.widget: mark scroll_* methods @beta
authorMike Blumenkrantz <zmike@samsung.com>
Thu, 28 Feb 2019 14:48:27 +0000 (23:48 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Fri, 8 Mar 2019 11:49:37 +0000 (20:49 +0900)
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

src/lib/elementary/efl_ui_widget.c
src/lib/elementary/efl_ui_widget.eo

index d14c57e..74ddf1f 100644 (file)
@@ -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)
 {
index 61de06e..4c4ded6 100644 (file)
@@ -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]]
       }