summaryrefslogtreecommitdiff
path: root/doc/widgets/widget_preview_slideshow.c
blob: 8f365cd1cc91c8424192eaa65456e8ee02cf94b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif
#include <Elementary.h>

/* get our images to make slideshow items */
static Evas_Object *
_get(void        *data,
     Evas_Object *obj)
{
   Evas_Object *photo = elm_photo_add(obj);
   elm_photo_file_set(photo, data);
   elm_photo_fill_inside_set(photo, EINA_TRUE);
   elm_object_style_set(photo, "shadow");

   return photo;
}

#include "widget_preview_tmpl_head.c"

static const char *img9 = PACKAGE_DATA_DIR "/images/logo.png";
static Elm_Slideshow_Item_Class itc;

Evas_Object *o = elm_slideshow_add(win);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(win, o);
evas_object_show(o);

itc.func.get = _get;
itc.func.del = NULL;

elm_slideshow_timeout_set(o, 0.01);
elm_slideshow_item_add(o, &itc, img9);

#include "widget_preview_tmpl_foot.c"