Elm_Scroller_Policy *policy_h,
Elm_Scroller_Policy *policy_v);
-
-//TIZEN_ONLY(24Jan2020): Go To Top Feature
-/**
- * @WEARABLE_ONLY
- * @brief Enables the scroll to top button in genlist / scroller layout
- *
- * @param[in] obj The scroller / genlist object
- * @param[in] enable Whether to enable or disable the feature
- * @param[in] func Callback function in case the button click is to be handled by application
- * Default scrolling will not be done in this scenario
- * @details Application have to take care of padding in bottom to avoid overlap
- *
- *
- * @if WEARABLE @since_tizen 5.5
- * @endif
- */
-EAPI void eext_circle_object_scroller_gototop_enable_set(Evas_Object *obj,
- Eina_Bool enable,
- Evas_Smart_Cb func);
-//
/**
* @}
*/
LOGE("scroller(%p), obj->main_obj(%p)", scroller, obj->main_obj);
}
-//TIZEN_ONLY(24Jan2020): Go To Top Feature
-EAPI void
-eext_circle_object_scroller_gototop_enable_set(Evas_Object *obj, Eina_Bool enable, Evas_Smart_Cb func)
-{
- if (!obj) return;
-
- EEXT_CIRCLE_OBJECT_SCROLLER_SCROLL_IFACE_DATA_GET(obj, sid);
-
- if (enable)
- {
- sid->is_gotop_enabled = EINA_TRUE;
- sid->gototop_cb = func;
- }
- else
- {
- sid->is_gotop_enabled = EINA_FALSE;
- sid->gototop_cb = NULL;
- }
- sid->is_gotop_shown = EINA_FALSE;
-}
-//
-
EAPI Evas_Object *
eext_circle_object_scroller_add(Evas_Object *scroller, Eext_Circle_Surface *surface)
{