Description

Called when photocam download progress updated

Since 1.23

Signature

download,progress: Elm.Photocam.Progress;

C information

C usage

static void
on_efl_ui_image_zoomable_event_download_progress(void *data, const Efl_Event *event)
{
    Elm_Photocam_Progress 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_UI_IMAGE_ZOOMABLE_EVENT_DOWNLOAD_PROGRESS, on_efl_ui_image_zoomable_event_download_progress, d);
}