~~Title: Efl.Ui.Image_Zoomable: download,progress~~ ===== Description ===== %%Called when photocam download progress updated%% //Since 1.23// {{page>:develop:api-include:efl:ui:image_zoomable:event:download_progress:description&nouser&nolink&nodate}} ===== Signature ===== download,progress: Elm.Photocam.Progress; ===== C information ===== EFL_UI_IMAGE_ZOOMABLE_EVENT_DOWNLOAD_PROGRESS(Elm_Photocam_Progress) ===== 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); }