Elementary : add transition_duration_factor in legacy API accepted/tizen/unified/20200129.022649 submit/tizen/20200127.213359
authorSangHyeon Jade Lee <sh10233.lee@samsung.com>
Wed, 22 Jan 2020 10:24:23 +0000 (19:24 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Mon, 27 Jan 2020 21:28:11 +0000 (06:28 +0900)
Change-Id: I55e7d4d98ba4493f8a987fe22b651f43ca6c61d6
Signed-off-by: SangHyeon Jade Lee <sh10233.lee@samsung.com>
src/lib/elementary/elm_object.h

index d004a3c..1056054 100644 (file)
@@ -958,6 +958,44 @@ EAPI void             elm_object_color_class_del(Evas_Object *obj, const char *c
  * @endif
  */
 EAPI void             elm_object_color_class_clear(Evas_Object *obj);
+
+//TIZEN_ONLY(20200117): transition duration factor for widget transition customize
+/**
+ * @brief Set duration factor of the Elementary widget transition.
+ *
+ * This fucntion change the duration factor of the Elementary widget transition.
+ * The duration factor is for widget transit animation customize.
+ * Widget can have it's own transition effect for presenting widget features,
+ * the factor can be multipled the duration of transition effect.
+ *
+ * @param[in] obj The Elemenatary widget.
+ * @param[in] duration The duration factor value. zero(0) value can disable widget transition.
+ *
+ * @ingroup Elm_General
+ *
+ * @since_tizen 5.5
+ * @endif
+ */
+EAPI Eina_Bool elm_object_transition_duration_factor_set(Eo *obj, double duration);
+
+/**
+ * @brief Get duration factor of the Elementary widget transition.
+ *
+ * This fucntion return the duration factor of the Elementary widget transition.
+ * The duration factor is for widget transit animation customize.
+ * widget can have it's own transition effect for presenting widget features,
+ * The factor can be multipled the duration of transition effect.
+ *
+ * @param[in] obj The Elemenatary widget.
+ *
+ * @ingroup Elm_General
+ *
+ * @since_tizen 5.5
+ * @endif
+ */
+EAPI double elm_object_transition_duration_factor_get(const Eo *obj);
+//
+
 /*******
  * END *
  *******/