Lines Matching full:is
49 * First parameter is the variable to animate.
50 * Second parameter is the value to set.
60 /** Callback to call when the animation is ready*/
69 /** Callback used when the animation is deleted*/
76 …lv_anim_start_cb_t start_cb; /**< Call it when the animation is starts (considering `delay…
77 lv_anim_ready_cb_t ready_cb; /**< Call it when the animation is ready*/
78 lv_anim_deleted_cb_t deleted_cb; /**< Call it when the animation is deleted*/
93 uint8_t early_apply : 1; /**< 1: Apply start value immediately even is there is `delay`*/
96 uint8_t playback_now : 1; /**< Play back is in progress*/
179 * This function might be used when LVGL is bound to other languages because
223 * Set a function call when the animation is ready
225 * @param ready_cb a function call when the animation is ready
233 * Set a function call when the animation is deleted.
235 * @param deleted_cb a function call when the animation is deleted
243 * Make the animation to play back to when the forward direction is ready
253 * Make the animation to play back to when the forward direction is ready
286 …* false: apply the start value only when `delay` ms is elapsed and the animations…
344 * @param exec_cb a function pointer which is animating 'var',
346 * @return true: at least 1 animation is deleted, false: no animation is deleted
358 …* @param exec_cb a function pointer which is animating 'var', or NULL to return first matching '…
376 * @param exec_cb a function pointer which is animating 'var',
378 * @return true: at least 1 animation is deleted, false: no animation is deleted
391 …* @param exec_cb a function pointer which is animating 'var', or NULL to return first matching '…
418 * Shouldn't be used directly because it is called in `lv_refr_now()`.