aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/src/bin/test_icon_animated.c
blob: 8d00700cd93ec0c3b97fbee9a0108ad471949762 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif
#include <Elementary.h>
#ifndef ELM_LIB_QUICKLAUNCH
static void
icon_clicked(void *data , Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
   Evas_Object *ic;
   ic = data;
   Eina_Bool rec;
   rec = elm_icon_animated_play_get(ic);
   rec = !rec;
   printf("clicked!rec =%d\n",rec);
   elm_icon_animated_play_set(ic, rec);
}

void
test_icon_animated(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
   Evas_Object *win, *ic;
   char buf[PATH_MAX];

   win = elm_win_add(NULL, "icon-animated-gif", ELM_WIN_BASIC);
   elm_win_title_set(win, "Icon Animated Gif");
   elm_win_autodel_set(win, EINA_TRUE);
   elm_win_alpha_set(win, EINA_TRUE);

   ic = elm_icon_add(win);
   snprintf(buf, sizeof(buf), "%s/images/animated_logo.gif", elm_app_data_dir_get());
   elm_icon_file_set(ic, buf, NULL);
   if (elm_icon_animated_available_get(ic))
     {
        printf("============Support animator==============\n");
        elm_icon_animated_set(ic, EINA_TRUE);
        elm_icon_animated_play_set(ic, EINA_TRUE);
     }
   elm_icon_resizable_set(ic, 0, 0);
   elm_icon_no_scale_set(ic, 1);
   evas_object_size_hint_weight_set(ic, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
   evas_object_size_hint_fill_set(ic, 0.5, 0.5);
   elm_win_resize_object_add(win, ic);
   evas_object_show(ic);

   evas_object_smart_callback_add(ic, "clicked", icon_clicked, ic);

   evas_object_show(win);
}
#endif