Functions | |
void | _entice_delete_current (void *data, Evas_Object *o, const char *emission, const char *source) |
Delete the current image in entice from the disk. | |
void | _entice_remove_current (void *data, Evas_Object *o, const char *emission, const char *source) |
Remove the current image from entice's filelist. | |
void | _entice_image_next (void *data, Evas_Object *o, const char *emission, const char *source) |
Load the next image in the file list. | |
void | _entice_image_prev (void *data, Evas_Object *o, const char *emission, const char *source) |
Load the previous image in the file list. | |
void | _entice_zoom_in (void *data, Evas_Object *o, const char *emission, const char *source) |
Zoom in on the displayed image. | |
void | _entice_zoom_out (void *data, Evas_Object *o, const char *emission, const char *source) |
Zoom out on the displayed image. | |
void | _entice_zoom_default (void *data, Evas_Object *o, const char *emission, const char *source) |
Zoom with a 1:1 aspect ratio relative to the original image's size. |
Edc snippets and function explanations.
I want to add new functionality to Entice!
These are callbacks for all the signals Entice responds to If you want to add a new callback for entice,image do the following 1. Add a function to signals_image.[ch] 2. Add a function to entice.[ch] 3. Have your signals_image.c function call your entice.c function Keep the data in entice.c and the request for state changes separate
|
Delete the current image in entice from the disk.
Example .edc code to do this
|
|
Load the next image in the file list.
Example .edc code to do this
|
|
Load the previous image in the file list.
Example .edc code to do this
|
|
Remove the current image from entice's filelist.
Example .edc code to do this
|
|
Zoom with a 1:1 aspect ratio relative to the original image's size.
Example .edc code to do this
|
|
Zoom in on the displayed image.
Example .edc code to do this
|
|
Zoom out on the displayed image.
Example .edc code to do this
|