~~Title: Efl.Loop_Timer: timer,tick~~ ===== Description ===== %%Event triggered when the specified time as passed.%% //Since 1.22// {{page>:develop:api-include:efl:loop_timer:event:timer_tick:description&nouser&nolink&nodate}} ===== Signature ===== timer,tick; ===== C information ===== EFL_LOOP_TIMER_EVENT_TIMER_TICK(void) ===== C usage ===== static void on_efl_loop_timer_event_timer_tick(void *data, const Efl_Event *event) { void info = event->info; Eo *obj = event->object; Data *d = data; /* event hander code */ } static void setup_event_handler(Eo *obj, Data *d) { efl_event_callback_add(obj, EFL_LOOP_TIMER_EVENT_TIMER_TICK, on_efl_loop_timer_event_timer_tick, d); }