#include <Elementary.h>
 
#define IMG_NUM 8
 
static Evas_Object *slideshow, *bt_start, *bt_stop;
 
static void
{
}
 
static void
{
   elm_slideshow_next(data);
}
 
static void
{
   elm_slideshow_previous(data);
}
 
static void
{
   elm_slideshow_item_show(data);
}
 
static void
{
   elm_slideshow_item_show(data);
}
 
static void
{
}
 
static void
{
}
 
static void
_transition_select(
void *data, Evas_Object *obj, 
void *event_info 
EINA_UNUSED)
 
{
   elm_slideshow_transition_set(slideshow, data);
   elm_object_text_set(obj, data);
}
 
static void
_layout_select(
void *data, Evas_Object *obj, 
void *event_info 
EINA_UNUSED)
 
{
   elm_slideshow_layout_set(slideshow, data);
   elm_object_text_set(obj, data);
}
 
static void
{
 
}
 
static void
{
   elm_slideshow_timeout_set(slideshow, 0.0);
}
 
static void
{
   if (elm_slideshow_timeout_get(slideshow) > 0)
}
 
static Evas_Object *
_get(void *data, Evas_Object *obj)
{
 
   return photo;
}
 
static int
_cmp_func(const void *data1, const void *data2)
{
   const char *img_path1, *img_path2;
 
   const Elm_Object_Item *slide_it1 = data1;
   const Elm_Object_Item *slide_it2 = data2;
 
 
   return strcasecmp(img_path1, img_path2);
}
 
EAPI_MAIN int
{
   Evas_Object *win, *notify, *bx, *bt, *hv, *spin;
   Elm_Object_Item *slide_first = NULL, *slide_last = NULL, *slide_it = NULL;
   const char *transition, *layout;
   const char *data_dir;
   char img[IMG_NUM][PATH_MAX];
   char *img_files[] =
     {
        "logo.png", "plant_01.jpg", "rock_01.jpg", "rock_02.jpg", "sky_01.jpg",
        "wood_01.jpg", "mystrale.jpg", "mystrale_2.jpg"
     };
   int i = 0;
 
 
   for (i = 0; i < IMG_NUM; i++)
     snprintf(img[i], PATH_MAX, "%s/images/%s", data_dir, img_files[i]);
 
 
 
   elm_slideshow_loop_set(slideshow, 
EINA_TRUE);
 
 
 
   for (i = 0; i < IMG_NUM; i++)
     {
        slide_it = elm_slideshow_item_sorted_insert(slideshow, &itc, img[i],
                                                    _cmp_func);
        if (!slide_first) slide_first = slide_it;
     }
   slide_last = slide_it;
 
   list = elm_slideshow_items_get(slideshow);
   printf("List of items in the slideshow:\n");
     printf("\t%s\n",
 
 
   elm_object_content_set(notify, bx);
 
                                  _mouse_in_cb, notify);
                                  _mouse_out_cb, notify);
 
   elm_object_text_set(bt, "First");
 
   elm_object_text_set(bt, "Previous");
 
   elm_object_text_set(bt, "Next");
 
   elm_object_text_set(bt, "Last");
 
   elm_hoversel_hover_parent_set(hv, win);
     elm_hoversel_item_add(hv, transition, NULL, 0, _transition_select,
                           transition);
   elm_object_text_set(hv, eina_list_data_get(
         elm_slideshow_transitions_get(slideshow)));
 
   elm_hoversel_hover_parent_set(hv, win);
     elm_hoversel_item_add(hv, layout, NULL, 0, _layout_select, layout);
   elm_object_text_set(hv, elm_slideshow_layout_get(slideshow));
 
 
   bt_start = bt;
   elm_object_text_set(bt, "Start");
 
   bt_stop = bt;
   elm_object_text_set(bt, "Stop");
 
                                  _notify_show, notify);
                                  _notify_show, notify);
 
 
 
   return 0;
}
#define EVAS_HINT_EXPAND
Use with evas_object_size_hint_weight_set(), evas_object_size_hint_weight_get(), evas_object_size_hin...
Definition Evas_Common.h:297
 
@ EVAS_CALLBACK_MOUSE_MOVE
Mouse Move Event.
Definition Evas_Common.h:424
 
@ EVAS_CALLBACK_MOUSE_IN
Mouse In Event.
Definition Evas_Common.h:420
 
@ EVAS_CALLBACK_MOUSE_UP
Mouse Button Up Event.
Definition Evas_Common.h:423
 
@ EVAS_CALLBACK_MOUSE_OUT
Mouse Out Event.
Definition Evas_Common.h:421
 
#define EINA_LIST_FOREACH(list, l, _data)
Definition for the macro to iterate over a list.
Definition eina_list.h:1415
 
#define EINA_TRUE
boolean value TRUE (numerical value 1)
Definition eina_types.h:539
 
#define EINA_FALSE
boolean value FALSE (numerical value 0)
Definition eina_types.h:533
 
#define EINA_UNUSED
Used to indicate that a function parameter is purposely unused.
Definition eina_types.h:339
 
void elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile)
Re-locate the application somewhere else after compilation, if the developer wishes for easier distri...
Definition elm_main.c:496
 
const char * elm_app_data_dir_get(void)
Get the application's run time data prefix directory, as set by elm_app_info_set() and the way (envir...
Definition elm_main.c:586
 
void elm_box_horizontal_set(Elm_Box *obj, Eina_Bool horizontal)
Set the horizontal orientation.
Definition elm_box_eo.legacy.c:27
 
Evas_Object * elm_box_add(Evas_Object *parent)
Add a new box to the parent.
Definition elm_box.c:363
 
void elm_box_pack_end(Elm_Box *obj, Efl_Canvas_Object *subobj)
Add an object at the end of the pack list.
Definition elm_box_eo.legacy.c:57
 
#define ELM_MAIN()
macro to be used after the elm_main() function
Definition elm_general.h:556
 
void * elm_object_item_data_get(const Elm_Object_Item *it)
Get the data associated with an object item.
Definition efl_ui_widget.c:3796
 
void elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled)
Set the disabled state of an Elementary object.
Definition elm_main.c:1613
 
Eina_Bool elm_policy_set(unsigned int policy, int value)
Set a new policy's value (for a given policy group/identifier).
Definition elm_main.c:1380
 
void elm_run(void)
Run Elementary's main loop.
Definition elm_main.c:1357
 
@ ELM_POLICY_QUIT_LAST_WINDOW_CLOSED
quit when the application's last window is closed
Definition elm_general.h:248
 
@ ELM_POLICY_QUIT
under which circumstances the application should quit automatically.
Definition elm_general.h:227
 
Evas_Object * elm_hoversel_add(Evas_Object *parent)
Add a new Hoversel object.
Definition elc_hoversel.c:703
 
void elm_notify_align_set(Elm_Notify *obj, double horizontal, double vertical)
Set the alignment of the notify object.
Definition elm_notify_eo.legacy.c:3
 
Evas_Object * elm_notify_add(Evas_Object *parent)
Add a new notify to the parent.
Definition elm_notify.c:478
 
void elm_notify_timeout_set(Elm_Notify *obj, double timeout)
Set the time interval after which the notify window is going to be hidden.
Definition elm_notify_eo.legacy.c:27
 
Eina_Bool elm_photo_file_set(Eo *obj, const char *file)
Set the file that will be used as the photo widget's image.
Definition elm_photo.c:409
 
void elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill)
Set if the photo should be completely visible or not.
Definition elm_photo.c:452
 
Evas_Object * elm_photo_add(Evas_Object *parent)
Add a new photo to the parent.
Definition elm_photo.c:310
 
Evas_Object * elm_slideshow_add(Evas_Object *parent)
Add a new slideshow widget to the given parent Elementary (container) object.
Definition elm_slideshow.c:356
 
double elm_spinner_value_get(const Evas_Object *obj)
Control the value the spinner displays.
Definition elm_spinner.c:1387
 
Evas_Object * elm_spinner_add(Evas_Object *parent)
Add a new spinner widget to the given parent Elementary (container) object.
Definition elm_spinner.c:1350
 
void elm_spinner_label_format_set(Elm_Spinner *obj, const char *fmt)
Control the format string of the displayed label.
Definition elm_spinner_eo.legacy.c:63
 
void elm_spinner_min_max_set(Evas_Object *obj, double min, double max)
Control the minimum and maximum values for the spinner.
Definition elm_spinner.c:1357
 
void elm_spinner_step_set(Evas_Object *obj, double step)
Control the step used to increment or decrement the spinner value.
Definition elm_spinner.c:1369
 
void elm_spinner_value_set(Evas_Object *obj, double val)
Control the value the spinner displays.
Definition elm_spinner.c:1381
 
Eina_Bool elm_object_style_set(Evas_Object *obj, const char *style)
Set the style to used by a given widget.
Definition elm_main.c:1583
 
Evas_Object * elm_win_util_standard_add(const char *name, const char *title)
Adds a window object with standard setup.
Definition efl_ui_win.c:9587
 
void elm_win_resize_object_add(Eo *obj, Evas_Object *subobj)
Add subobj as a resize object of window obj.
Definition efl_ui_win.c:9002
 
void elm_win_autodel_set(Eo *obj, Eina_Bool autodel)
Set the window's autodel state.
Definition efl_ui_win.c:6199
 
EVAS_API void evas_object_show(Evas_Object *eo_obj)
Makes the given Evas object visible.
Definition evas_object_main.c:1814
 
EVAS_API void evas_object_event_callback_add(Evas_Object *eo_obj, Evas_Callback_Type type, Evas_Object_Event_Cb func, const void *data)
Add (register) a callback function to a given Evas object event.
Definition evas_callbacks.c:478
 
EVAS_API void evas_object_size_hint_weight_set(Evas_Object *obj, double x, double y)
Sets the hints for an object's weight.
Definition evas_object_main.c:2638
 
EVAS_API void evas_object_resize(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
Changes the size of the given Evas object.
Definition evas_object_main.c:1236
 
EVAS_API void evas_object_smart_callback_add(Evas_Object *eo_obj, const char *event, Evas_Smart_Cb func, const void *data)
Add (register) a callback function to the smart event specified by event on the smart object obj.
Definition evas_object_smart.c:1040
 
Type for a generic double linked list.
Definition eina_list.h:318
 
member definitions of Elm_Slideshow_Item_Class
Definition elm_slideshow_common.h:26