Description

Called when photocam download failed

Since 1.23

Signature

download,error: Elm.Photocam.Error;

C information

C usage

static void
on_efl_ui_image_zoomable_event_download_error(void *data, const Efl_Event *event)
{
    Elm_Photocam_Error 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_ERROR, on_efl_ui_image_zoomable_event_download_error, d);
}