elementary - removed deprecated widgets & APIs.
[framework/uifw/elementary.git] / src / lib / elm_icon.c
1 #include <Elementary.h>
2 #include "elm_priv.h"
3 #include "els_icon.h"
4
5 #ifdef ELM_EFREET
6 #define NON_EXISTING (void *)-1
7 static const char *icon_theme = NULL;
8 #endif
9
10 typedef struct _Widget_Data Widget_Data;
11
12 struct _Widget_Data
13 {
14    Evas_Object *img;
15    const char *stdicon;
16    Elm_Icon_Lookup_Order lookup_order;
17
18 #ifdef HAVE_ELEMENTARY_ETHUMB
19    struct {
20       int id;
21
22       struct {
23          const char *path;
24          const char *key;
25       } file, thumb;
26
27       Ethumb_Exists *exists;
28
29       Ecore_Event_Handler *eeh;
30
31       Ethumb_Thumb_Format format;
32
33       Eina_Bool retry : 1;
34    } thumb;
35 #endif
36
37 #ifdef ELM_EFREET
38    struct {
39         int requested_size;
40         Eina_Bool use : 1;
41    } freedesktop;
42 #endif
43    Eina_Bool scale_up : 1;
44    Eina_Bool scale_down : 1;
45    Eina_Bool smooth : 1;
46    Eina_Bool fill_outside : 1;
47    Eina_Bool no_scale : 1;
48
49    /* for animation feature */
50    Ecore_Timer *timer;
51    int frame_count;
52    int cur_frame;
53    double duration;
54    Eina_Bool anim : 1;
55    Eina_Bool play : 1;
56
57 };
58
59 #ifdef HAVE_ELEMENTARY_ETHUMB
60 static Eina_List *_elm_icon_retry = NULL;
61 static int _icon_pending_request = 0;
62
63 static void _icon_thumb_exists(Ethumb_Client *client __UNUSED__, Ethumb_Exists *thread, Eina_Bool exists, void *data);
64 #endif
65
66 static const char *widtype = NULL;
67 static void _del_hook(Evas_Object *obj);
68 static void _theme_hook(Evas_Object *obj);
69 static void _sizing_eval(Evas_Object *obj);
70 static void _mouse_up(void *data, Evas *e, Evas_Object *obj, void *event_info);
71
72 static Eina_Bool _icon_standard_set(Widget_Data *wd, Evas_Object *obj, const char *name);
73 static Eina_Bool _icon_freedesktop_set(Widget_Data *wd, Evas_Object *obj, const char *name, int size);
74
75 static const char SIG_CLICKED[] = "clicked";
76
77 static const Evas_Smart_Cb_Description _signals[] = {
78    {SIG_CLICKED, ""},
79    {NULL, NULL}
80 };
81
82
83 //FIXME: move this code to ecore
84 #ifdef _WIN32
85 static Eina_Bool
86 _path_is_absolute(const char *path)
87 {
88    //TODO: Check if this works with all absolute paths in windows
89    return ((isalpha (*path)) && (*(path + 1) == ':') && ((*(path + 2) == '\\') || (*(path + 2) == '/')));
90 }
91 #else
92 static Eina_Bool
93 _path_is_absolute(const char *path)
94 {
95    return  (*path == '/');
96 }
97 #endif
98
99 static inline int
100 _icon_size_min_get(Evas_Object *icon)
101 {
102    int size;
103    _els_smart_icon_size_get(icon, &size, NULL);
104    return (size < 32) ? 32 : size;
105 }
106
107 #ifdef HAVE_ELEMENTARY_ETHUMB
108 static void
109 _icon_thumb_stop(Widget_Data *wd, void *ethumbd)
110 {
111    if (wd->thumb.id >= 0)
112      {
113         ethumb_client_generate_cancel(ethumbd, wd->thumb.id, NULL, NULL, NULL);
114         wd->thumb.id = -1;
115         _icon_pending_request--;
116      }
117
118    if (wd->thumb.exists)
119      {
120         ethumb_client_thumb_exists_cancel(wd->thumb.exists, _icon_thumb_exists, wd);
121         wd->thumb.exists = NULL;
122         _icon_pending_request--;
123      }
124
125    if (wd->thumb.retry)
126      {
127         _elm_icon_retry = eina_list_remove(_elm_icon_retry, wd);
128         wd->thumb.retry = EINA_FALSE;
129      }
130 }
131
132 static Eina_Bool
133 _icon_thumb_display(Widget_Data *wd)
134 {
135    Eina_Bool ret = EINA_FALSE;
136
137    if (wd->thumb.format == ETHUMB_THUMB_EET)
138      {
139         static const char *extensions[] = {
140           ".avi", ".mp4", ".ogv", ".mov", ".mpg", ".wmv", NULL
141         };
142         const char **ext, *ptr;
143         int prefix_size;
144         Eina_Bool video = EINA_FALSE;
145
146         prefix_size = eina_stringshare_strlen(wd->thumb.file.path) - 4;
147         if (prefix_size >= 0)
148           {
149              ptr = wd->thumb.file.path + prefix_size;
150              for (ext = extensions; *ext; ++ext)
151                if (!strcasecmp(ptr, *ext))
152                  {
153                     video = EINA_TRUE;
154                     break;
155                  }
156           }
157
158         if (video)
159           ret = _els_smart_icon_file_edje_set(wd->img, wd->thumb.thumb.path, wd->thumb.thumb.key);
160      }
161
162    if (!ret)
163      ret = _els_smart_icon_file_key_set(wd->img, wd->thumb.thumb.path, wd->thumb.thumb.key);
164
165    return ret;
166 }
167
168 static Eina_Bool
169 _icon_thumb_retry(Widget_Data *wd)
170 {
171    return _icon_thumb_display(wd);
172 }
173
174 static void
175 _icon_thumb_cleanup(Ethumb_Client *ethumbd)
176 {
177    Eina_List *l, *ll;
178    Widget_Data *wd;
179
180    EINA_LIST_FOREACH_SAFE(_elm_icon_retry, l, ll, wd)
181      if (_icon_thumb_retry(wd))
182        {
183           _elm_icon_retry = eina_list_remove_list(_elm_icon_retry, l);
184           wd->thumb.retry = EINA_FALSE;
185        }
186
187    if (_icon_pending_request == 0)
188      EINA_LIST_FREE(_elm_icon_retry, wd)
189        _icon_thumb_stop(wd, ethumbd);
190 }
191
192 static void
193 _icon_thumb_finish(Widget_Data *wd, Ethumb_Client *ethumbd)
194 {
195    const char *file = NULL, *group = NULL;
196    Eina_Bool ret;
197
198    _els_smart_icon_file_get(wd->img, &file, &group);
199    file = eina_stringshare_ref(file);
200    group = eina_stringshare_ref(group);
201
202    ret = _icon_thumb_display(wd);
203
204    if (!ret && file)
205      {
206         const char *p;
207
208         if (!wd->thumb.retry)
209           {
210              _elm_icon_retry = eina_list_append(_elm_icon_retry, wd);
211              wd->thumb.retry = EINA_TRUE;
212           }
213
214         /* Back to previous image */
215         if (((p = strrchr(file, '.'))) && (!strcasecmp(p, ".edj")))
216           _els_smart_icon_file_edje_set(wd->img, file, group);
217         else
218           _els_smart_icon_file_key_set(wd->img, file, group);
219      }
220
221    _icon_thumb_cleanup(ethumbd);
222
223    eina_stringshare_del(file);
224    eina_stringshare_del(group);
225 }
226
227 static void
228 _icon_thumb_cb(void *data,
229                Ethumb_Client *ethumbd,
230                int id,
231                const char *file __UNUSED__,
232                const char *key __UNUSED__,
233                const char *thumb_path,
234                const char *thumb_key,
235                Eina_Bool success)
236 {
237    Widget_Data *wd = data;
238
239    EINA_SAFETY_ON_FALSE_RETURN(wd->thumb.id == id);
240    wd->thumb.id = -1;
241
242    _icon_pending_request--;
243
244    if (success)
245      {
246         eina_stringshare_replace(&wd->thumb.thumb.path, thumb_path);
247         eina_stringshare_replace(&wd->thumb.thumb.key, thumb_key);
248         wd->thumb.format = ethumb_client_format_get(ethumbd);
249
250         _icon_thumb_finish(wd, ethumbd);
251      }
252    else
253      {
254         ERR("could not generate thumbnail for %s (key: %s)", file, key);
255         _icon_thumb_cleanup(ethumbd);
256      }
257 }
258
259 static void
260 _icon_thumb_exists(Ethumb_Client *client __UNUSED__, Ethumb_Exists *thread, Eina_Bool exists, void *data)
261 {
262    Widget_Data *wd = data;
263    Ethumb_Client *ethumbd;
264
265    if (ethumb_client_thumb_exists_check(thread))
266      return ;
267
268    wd->thumb.exists = NULL;
269
270    ethumbd = elm_thumb_ethumb_client_get();
271
272    if (exists)
273      {
274         const char *thumb_path, *thumb_key;
275
276         _icon_pending_request--;
277         ethumb_client_thumb_path_get(ethumbd, &thumb_path, &thumb_key);
278         eina_stringshare_replace(&wd->thumb.thumb.path, thumb_path);
279         eina_stringshare_replace(&wd->thumb.thumb.key, thumb_key);
280         wd->thumb.format = ethumb_client_format_get(ethumbd);
281
282         _icon_thumb_finish(wd, ethumbd);
283      }
284    else if ((wd->thumb.id = ethumb_client_generate(ethumbd, _icon_thumb_cb, wd, NULL)) == -1)
285      {
286         ERR("Generate was unable to start !");
287         /* Failed to generate thumbnail */
288         _icon_pending_request--;
289      }
290 }
291
292 static void
293 _icon_thumb_apply(Widget_Data *wd)
294 {
295    Ethumb_Client *ethumbd;
296
297    ethumbd = elm_thumb_ethumb_client_get();
298
299    _icon_thumb_stop(wd, ethumbd);
300
301    if (!wd->thumb.file.path) return ;
302
303    _icon_pending_request++;
304    if (!ethumb_client_file_set(ethumbd, wd->thumb.file.path, wd->thumb.file.key)) return ;
305    ethumb_client_size_set(ethumbd, _icon_size_min_get(wd->img), _icon_size_min_get(wd->img));
306    wd->thumb.exists = ethumb_client_thumb_exists(ethumbd, _icon_thumb_exists, wd);
307 }
308
309 static Eina_Bool
310 _icon_thumb_apply_cb(void *data, int type __UNUSED__, void *ev __UNUSED__)
311 {
312    Widget_Data *wd = data;
313
314    _icon_thumb_apply(wd);
315    return ECORE_CALLBACK_RENEW;
316 }
317 #endif
318
319 static void
320 _del_hook(Evas_Object *obj)
321 {
322    Widget_Data *wd = elm_widget_data_get(obj);
323
324 #ifdef HAVE_ELEMENTARY_ETHUMB
325    Ethumb_Client *ethumbd;
326 #endif
327
328    if (!wd) return;
329    if (wd->stdicon) eina_stringshare_del(wd->stdicon);
330
331 #ifdef HAVE_ELEMENTARY_ETHUMB
332    ethumbd = elm_thumb_ethumb_client_get();
333    _icon_thumb_stop(wd, ethumbd);
334
335    eina_stringshare_del(wd->thumb.file.path);
336    eina_stringshare_del(wd->thumb.file.key);
337    eina_stringshare_del(wd->thumb.thumb.path);
338    eina_stringshare_del(wd->thumb.thumb.key);
339
340    if (wd->thumb.eeh)
341      ecore_event_handler_del(wd->thumb.eeh);
342 #endif
343
344    if (wd->timer)
345      ecore_timer_del(wd->timer);
346    free(wd);
347 }
348
349 static void
350 _theme_hook(Evas_Object *obj)
351 {
352    Widget_Data *wd = elm_widget_data_get(obj);
353    if (!wd) return;
354    if (wd->stdicon)
355      _elm_theme_object_icon_set(obj, wd->img, wd->stdicon, elm_widget_style_get(obj));
356    _sizing_eval(obj);
357 }
358
359 static void
360 _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source)
361 {
362    Widget_Data *wd = elm_widget_data_get(obj);
363    if (!wd) return;
364    Evas_Object *icon_edje;
365    icon_edje = _els_smart_icon_edje_get(wd->img);
366    if (!icon_edje) return;
367    edje_object_signal_emit(icon_edje, emission, source);
368 }
369
370 static void
371 _signal_callback_add_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
372 {
373    Widget_Data *wd = elm_widget_data_get(obj);
374    if (!wd) return;
375    Evas_Object *icon_edje;
376    icon_edje = _els_smart_icon_edje_get(wd->img);
377    if (!icon_edje) return;
378    edje_object_signal_callback_add(icon_edje, emission, source, func_cb, data);
379 }
380
381 static void
382 _signal_callback_del_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
383 {
384    Widget_Data *wd = elm_widget_data_get(obj);
385    if (!wd) return;
386    Evas_Object *icon_edje;
387    icon_edje = _els_smart_icon_edje_get(wd->img);
388    if (!icon_edje) return;
389    edje_object_signal_callback_del_full(icon_edje, emission, source, func_cb,
390                                         data);
391 }
392
393 static void
394 _sizing_eval(Evas_Object *obj)
395 {
396    Widget_Data *wd = elm_widget_data_get(obj);
397    if (!wd) return;
398    Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
399    int w, h;
400
401    _els_smart_icon_size_get(wd->img, &w, &h);
402 #ifdef ELM_EFREET
403    if ((wd->freedesktop.use) && (!((w - wd->freedesktop.requested_size) % 16)))
404      {
405         /* This icon has been set to a freedesktop icon, and the requested
406            appears to have a different size than the requested size, so try to
407            request another, higher resolution, icon.
408 FIXME: Find a better heuristic to determine if there should be
409 an icon with a different resolution. */
410         _icon_freedesktop_set(wd, obj, wd->stdicon, w);
411      }
412 #endif
413    _els_smart_icon_scale_up_set(wd->img, wd->scale_up);
414    _els_smart_icon_scale_down_set(wd->img, wd->scale_down);
415    _els_smart_icon_smooth_scale_set(wd->img, wd->smooth);
416    _els_smart_icon_fill_inside_set(wd->img, !(wd->fill_outside));
417    if (wd->no_scale) _els_smart_icon_scale_set(wd->img, 1.0);
418    else
419      {
420         _els_smart_icon_scale_set(wd->img, elm_widget_scale_get(obj) *
421                                   _elm_config->scale);
422         _els_smart_icon_size_get(wd->img, &w, &h);
423      }
424    if (!wd->scale_down)
425      {
426         minw = w;
427         minh = h;
428      }
429    if (!wd->scale_up)
430      {
431         maxw = w;
432         maxh = h;
433      }
434    evas_object_size_hint_min_set(obj, minw, minh);
435    evas_object_size_hint_max_set(obj, maxw, maxh);
436 }
437
438 static void
439 _mouse_up(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
440 {
441    Evas_Event_Mouse_Up *ev = event_info;
442    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
443    evas_object_smart_callback_call(data, SIG_CLICKED, event_info);
444 }
445
446 static Eina_Bool
447 _elm_icon_animate_cb(void *data)
448 {
449    Widget_Data  *wd = data;
450    Evas_Object  *img_obj;
451
452    if (!wd) return ECORE_CALLBACK_CANCEL;
453    if (!wd->anim) return ECORE_CALLBACK_CANCEL;
454
455    img_obj = _els_smart_icon_object_get(wd->img);
456    wd->cur_frame++;
457    if (wd->cur_frame > wd->frame_count)
458      wd->cur_frame = wd->cur_frame % wd->frame_count;
459    evas_object_image_animated_frame_set(img_obj, wd->cur_frame);
460
461    wd->duration = evas_object_image_animated_frame_duration_get(img_obj, wd->cur_frame, 0);
462
463    if (wd->duration > 0)
464      ecore_timer_interval_set(wd->timer, wd->duration);
465    return ECORE_CALLBACK_RENEW;
466 }
467
468 EAPI Evas_Object *
469 elm_icon_add(Evas_Object *parent)
470 {
471    Evas_Object *obj;
472    Evas *e;
473    Widget_Data *wd;
474
475    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
476
477    ELM_SET_WIDTYPE(widtype, "icon");
478    elm_widget_type_set(obj, "icon");
479    elm_widget_can_focus_set(obj, EINA_FALSE);
480    elm_widget_sub_object_add(parent, obj);
481    elm_widget_data_set(obj, wd);
482    elm_widget_del_hook_set(obj, _del_hook);
483    elm_widget_theme_hook_set(obj, _theme_hook);
484    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
485    elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook);
486    elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook);
487
488    wd->lookup_order = ELM_ICON_LOOKUP_THEME_FDO;
489    wd->img = _els_smart_icon_add(e);
490    evas_object_event_callback_add(wd->img, EVAS_CALLBACK_MOUSE_UP,
491                                   _mouse_up, obj);
492    evas_object_repeat_events_set(wd->img, EINA_TRUE);
493    elm_widget_resize_object_set(obj, wd->img);
494
495    evas_object_smart_callbacks_descriptions_set(obj, _signals);
496
497 #ifdef HAVE_ELEMENTARY_ETHUMB
498    wd->thumb.id = -1;
499 #endif
500
501    wd->smooth = EINA_TRUE;
502    wd->scale_up = EINA_TRUE;
503    wd->scale_down = EINA_TRUE;
504
505    _sizing_eval(obj);
506    return obj;
507 }
508
509 EAPI Eina_Bool
510 elm_icon_memfile_set(Evas_Object *obj, const void *img, size_t size, const char *format, const char *key)
511 {
512    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
513    Widget_Data *wd = elm_widget_data_get(obj);
514    Eina_Bool ret;
515
516    if (!wd) return EINA_FALSE;
517    EINA_SAFETY_ON_NULL_RETURN_VAL(img, EINA_FALSE);
518    EINA_SAFETY_ON_TRUE_RETURN_VAL(!size, EINA_FALSE);
519    eina_stringshare_del(wd->stdicon);
520    wd->stdicon = NULL;
521    ret = _els_smart_icon_memfile_set(wd->img, img, size, format, key);
522    _sizing_eval(obj);
523    return ret;
524 }
525
526 EAPI Eina_Bool
527 elm_icon_file_set(Evas_Object *obj, const char *file, const char *group)
528 {
529    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
530    Widget_Data *wd = elm_widget_data_get(obj);
531    Eina_Bool ret;
532    const char *p;
533
534    if (!wd) return EINA_FALSE;
535    EINA_SAFETY_ON_NULL_RETURN_VAL(file, EINA_FALSE);
536    if (wd->stdicon) eina_stringshare_del(wd->stdicon);
537    wd->stdicon = NULL;
538    if (((p = strrchr(file, '.'))) && (!strcasecmp(p, ".edj")))
539      ret = _els_smart_icon_file_edje_set(wd->img, file, group);
540    else
541      ret = _els_smart_icon_file_key_set(wd->img, file, group);
542    _sizing_eval(obj);
543    return ret;
544 }
545
546 EAPI void
547 elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group)
548 {
549    ELM_CHECK_WIDTYPE(obj, widtype);
550    Widget_Data *wd = elm_widget_data_get(obj);
551    if (!wd) return;
552    _els_smart_icon_file_get(wd->img, file, group);
553 }
554
555 EAPI void
556 elm_icon_thumb_set(Evas_Object *obj, const char *file, const char *group)
557 {
558    ELM_CHECK_WIDTYPE(obj, widtype);
559    Widget_Data *wd = elm_widget_data_get(obj);
560    if (!wd) return;
561
562 #ifdef HAVE_ELEMENTARY_ETHUMB
563    eina_stringshare_replace(&wd->thumb.file.path, file);
564    eina_stringshare_replace(&wd->thumb.file.key, group);
565
566    if (elm_thumb_ethumb_client_connected())
567      {
568         _icon_thumb_apply(wd);
569         return ;
570      }
571
572    if (!wd->thumb.eeh)
573      {
574         wd->thumb.eeh = ecore_event_handler_add(ELM_ECORE_EVENT_ETHUMB_CONNECT, _icon_thumb_apply_cb, wd);
575      }
576 #else
577    (void) obj;
578    (void) file;
579    (void) group;
580 #endif
581 }
582
583 EAPI Eina_Bool
584 elm_icon_animated_available_get(const Evas_Object *obj)
585 {
586    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
587    Evas_Object *img_obj ;
588    Widget_Data *wd = elm_widget_data_get(obj);
589    if (!wd) return EINA_FALSE;
590
591    img_obj = _els_smart_icon_object_get(wd->img);
592
593    return evas_object_image_animated_get(img_obj);
594 }
595
596 EAPI void
597 elm_icon_animated_set(Evas_Object *obj, Eina_Bool anim)
598 {
599    ELM_CHECK_WIDTYPE(obj, widtype);
600    Evas_Object *img_obj ;
601    Widget_Data *wd = elm_widget_data_get(obj);
602    if (!wd) return;
603    if (wd->anim == anim) return;
604
605    img_obj = _els_smart_icon_object_get(wd->img);
606    if (!evas_object_image_animated_get(img_obj)) return;
607    if (anim)
608      {
609         wd->frame_count = evas_object_image_animated_frame_count_get(img_obj);
610         wd->cur_frame = 1;
611         wd->duration = evas_object_image_animated_frame_duration_get(img_obj, wd->cur_frame, 0);
612         evas_object_image_animated_frame_set(img_obj, wd->cur_frame);
613      }
614    else
615      {
616         wd->frame_count = -1;
617         wd->cur_frame = -1;
618         wd->duration = -1;
619      }
620    wd->anim = anim;
621    return;
622 }
623
624 EAPI Eina_Bool
625 elm_icon_animated_get(const Evas_Object *obj)
626 {
627    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
628    Widget_Data *wd = elm_widget_data_get(obj);
629    if (!wd) return EINA_FALSE;
630    return wd->anim;
631 }
632
633 EAPI void
634 elm_icon_animated_play_set(Evas_Object *obj, Eina_Bool play)
635 {
636    ELM_CHECK_WIDTYPE(obj, widtype);
637    Widget_Data *wd = elm_widget_data_get(obj);
638    if (!wd) return;
639    if (!wd->anim) return;
640    if (wd->play == play) return;
641
642    if (play)
643      {
644         wd->timer = ecore_timer_add(wd->duration, _elm_icon_animate_cb, wd);
645      }
646    else
647      {
648         if (wd->timer)
649           {
650              ecore_timer_del(wd->timer);
651              wd->timer = NULL;
652           }
653      }
654    wd->play = play;
655
656 }
657
658 EAPI Eina_Bool
659 elm_icon_animated_play_get(const Evas_Object *obj)
660 {
661    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
662    Widget_Data *wd = elm_widget_data_get(obj);
663    if (!wd) return EINA_FALSE;
664    return wd->play;
665 }
666
667 static Eina_Bool
668 _icon_standard_set(Widget_Data *wd, Evas_Object *obj, const char *name)
669 {
670    if (_elm_theme_object_icon_set(obj, wd->img, name, "default"))
671      {
672 #ifdef ELM_EFREET
673         /* TODO: elm_unneed_efreet() */
674         wd->freedesktop.use = EINA_FALSE;
675 #endif
676         return EINA_TRUE;
677      }
678    return EINA_FALSE;
679 }
680
681 static Eina_Bool
682 _icon_file_set(Widget_Data *wd, Evas_Object *obj, const char *path)
683 {
684    if (elm_icon_file_set(obj, path, NULL))
685      {
686 #ifdef ELM_EFREET
687         /* TODO: elm_unneed_efreet() */
688         wd->freedesktop.use = EINA_FALSE;
689 #endif
690         return EINA_TRUE;
691      }
692    return EINA_FALSE;
693 }
694
695 static Eina_Bool
696 _icon_freedesktop_set(Widget_Data *wd, Evas_Object *obj, const char *name, int size)
697 {
698 #ifdef ELM_EFREET
699    const char *path;
700
701    elm_need_efreet();
702    if (icon_theme == NON_EXISTING) return EINA_FALSE;
703    if (!icon_theme)
704      {
705         Efreet_Icon_Theme *theme;
706         /* TODO: Listen for EFREET_EVENT_ICON_CACHE_UPDATE */
707         theme = efreet_icon_theme_find(getenv("E_ICON_THEME"));
708         if (!theme)
709           {
710              const char **itr;
711              static const char *themes[] = {
712                   "gnome", "Human", "oxygen", "hicolor", NULL
713              };
714              for (itr = themes; *itr; itr++)
715                {
716                   theme = efreet_icon_theme_find(*itr);
717                   if (theme) break;
718                }
719           }
720
721         if (!theme)
722           {
723              icon_theme = NON_EXISTING;
724              return EINA_FALSE;
725           }
726         else
727           icon_theme = eina_stringshare_add(theme->name.internal);
728      }
729    path = efreet_icon_path_find(icon_theme, name, size);
730    wd->freedesktop.use = !!path;
731    if (wd->freedesktop.use)
732      {
733         wd->freedesktop.requested_size = size;
734         elm_icon_file_set(obj, path, NULL);
735         return EINA_TRUE;
736      }
737 #endif
738    return EINA_FALSE;
739 }
740
741 static Eina_Bool
742 _elm_icon_standard_set(Widget_Data *wd, Evas_Object *obj, const char *name, Eina_Bool *fdo)
743 {
744    char *tmp;
745    Eina_Bool ret;
746
747    /* try locating the icon using the specified lookup order */
748    switch (wd->lookup_order)
749      {
750       case ELM_ICON_LOOKUP_FDO:
751          ret = _icon_freedesktop_set(wd, obj, name, _icon_size_min_get(wd->img));
752          if (ret && fdo) *fdo = EINA_TRUE;
753          break;
754       case ELM_ICON_LOOKUP_THEME:
755          ret = _icon_standard_set(wd, obj, name);
756          break;
757       case ELM_ICON_LOOKUP_THEME_FDO:
758          ret = _icon_standard_set(wd, obj, name);
759          if (!ret)
760            {
761               ret = _icon_freedesktop_set(wd, obj, name, _icon_size_min_get(wd->img));
762               if (ret && fdo) *fdo = EINA_TRUE;
763            }
764          break;
765       case ELM_ICON_LOOKUP_FDO_THEME:
766       default:
767          ret = _icon_freedesktop_set(wd, obj, name, _icon_size_min_get(wd->img));
768          if (!ret)
769            ret = _icon_standard_set(wd, obj, name);
770          else if (fdo)
771            *fdo = EINA_TRUE;
772          break;
773      }
774
775    if (ret)
776      {
777         eina_stringshare_replace(&wd->stdicon, name);
778         _sizing_eval(obj);
779         return EINA_TRUE;
780      }
781
782    if (_path_is_absolute(name))
783      return _icon_file_set(wd, obj, name);
784
785    /* if that fails, see if icon name is in the format size/name. if so,
786       try locating a fallback without the size specification */
787    if (!(tmp = strchr(name, '/'))) return EINA_FALSE;
788    ++tmp;
789    if (*tmp) return elm_icon_standard_set(obj, tmp);
790    /* give up */
791    return EINA_FALSE;
792 }
793
794 static void
795 _elm_icon_standard_resize(void *data,
796                           Evas *e __UNUSED__,
797                           Evas_Object *obj,
798                           void *event_info __UNUSED__)
799 {
800    Widget_Data *wd = data;
801    const char *refup = eina_stringshare_ref(wd->stdicon);
802    Eina_Bool fdo = EINA_FALSE;
803
804    if (!_elm_icon_standard_set(wd, obj, wd->stdicon, &fdo) || (!fdo))
805      evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE,
806                                          _elm_icon_standard_resize, wd);
807 #ifdef HAVE_ELEMENTARY_ETHUMB
808    if (wd->thumb.file.path)
809      elm_icon_thumb_set(obj, wd->thumb.file.path, wd->thumb.file.key);
810 #endif
811
812    eina_stringshare_del(refup);
813 }
814
815 EAPI Eina_Bool
816 elm_icon_standard_set(Evas_Object *obj, const char *name)
817 {
818    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
819    Widget_Data *wd = elm_widget_data_get(obj);
820    Eina_Bool fdo = EINA_FALSE;
821    Eina_Bool ret;
822
823    if ((!wd) || (!name)) return EINA_FALSE;
824
825    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE,
826                                        _elm_icon_standard_resize, wd);
827
828    ret = _elm_icon_standard_set(wd, obj, name, &fdo);
829
830    if (fdo)
831      evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE,
832                                     _elm_icon_standard_resize, wd);
833
834    return ret;
835 }
836
837 EAPI const char *
838 elm_icon_standard_get(const Evas_Object *obj)
839 {
840    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
841    Widget_Data *wd = elm_widget_data_get(obj);
842    if (!wd) return NULL;
843    return wd->stdicon;
844 }
845
846 EAPI void
847 elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order)
848 {
849    ELM_CHECK_WIDTYPE(obj, widtype);
850    Widget_Data *wd = elm_widget_data_get(obj);
851    if (wd) wd->lookup_order = order;
852 }
853
854 EAPI Elm_Icon_Lookup_Order
855 elm_icon_order_lookup_get(const Evas_Object *obj)
856 {
857    ELM_CHECK_WIDTYPE(obj, widtype) ELM_ICON_LOOKUP_THEME_FDO;
858    Widget_Data *wd = elm_widget_data_get(obj);
859    if (!wd) return ELM_ICON_LOOKUP_THEME_FDO;
860    return wd->lookup_order;
861 }
862
863 EAPI void
864 elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth)
865 {
866    ELM_CHECK_WIDTYPE(obj, widtype);
867    Widget_Data *wd = elm_widget_data_get(obj);
868
869    if (!wd) return;
870    wd->smooth = smooth;
871    _sizing_eval(obj);
872 }
873
874 EAPI Eina_Bool
875 elm_icon_smooth_get(const Evas_Object *obj)
876 {
877    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
878    Widget_Data *wd = elm_widget_data_get(obj);
879
880    if (!wd) return EINA_FALSE;
881    return wd->smooth;
882 }
883
884 EAPI void
885 elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale)
886 {
887    ELM_CHECK_WIDTYPE(obj, widtype);
888    Widget_Data *wd = elm_widget_data_get(obj);
889
890    if (!wd) return;
891    wd->no_scale = no_scale;
892    _sizing_eval(obj);
893 }
894
895 EAPI Eina_Bool
896 elm_icon_no_scale_get(const Evas_Object *obj)
897 {
898    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
899    Widget_Data *wd = elm_widget_data_get(obj);
900    if (!wd) return EINA_FALSE;
901    return wd->no_scale;
902 }
903
904 EAPI void
905 elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down)
906 {
907    ELM_CHECK_WIDTYPE(obj, widtype);
908    Widget_Data *wd = elm_widget_data_get(obj);
909
910    if (!wd) return;
911    wd->scale_up = scale_up;
912    wd->scale_down = scale_down;
913    _sizing_eval(obj);
914 }
915
916 EAPI void
917 elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down)
918 {
919    ELM_CHECK_WIDTYPE(obj, widtype);
920    Widget_Data *wd = elm_widget_data_get(obj);
921    if (!wd) return;
922    if (scale_up) *scale_up = wd->scale_up;
923    if (scale_down) *scale_down = wd->scale_down;
924 }
925
926 EAPI void
927 elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside)
928 {
929    ELM_CHECK_WIDTYPE(obj, widtype);
930    Widget_Data *wd = elm_widget_data_get(obj);
931
932    if (!wd) return;
933    wd->fill_outside = fill_outside;
934    _sizing_eval(obj);
935 }
936
937 EAPI Eina_Bool
938 elm_icon_fill_outside_get(const Evas_Object *obj)
939 {
940    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
941    Widget_Data *wd = elm_widget_data_get(obj);
942
943    if (!wd) return EINA_FALSE;
944    return wd->fill_outside;
945 }
946
947 EAPI void
948 elm_icon_prescale_set(Evas_Object *obj, int size)
949 {
950    ELM_CHECK_WIDTYPE(obj, widtype);
951    Widget_Data *wd = elm_widget_data_get(obj);
952
953    if (!wd) return;
954    _els_smart_icon_scale_size_set(wd->img, size);
955 }
956
957 EAPI int
958 elm_icon_prescale_get(const Evas_Object *obj)
959 {
960    ELM_CHECK_WIDTYPE(obj, widtype) 0;
961    Widget_Data *wd = elm_widget_data_get(obj);
962
963    if (!wd) return 0;
964    return _els_smart_icon_scale_size_get(wd->img);
965 }
966
967 EAPI Evas_Object *
968 elm_icon_object_get(Evas_Object *obj)
969 {
970    ELM_CHECK_WIDTYPE(obj, widtype) 0;
971    Widget_Data *wd = elm_widget_data_get(obj);
972
973    if (!wd) return NULL;
974    return wd->img;
975 }
976
977 EAPI void
978 elm_icon_preload_set(Evas_Object *obj, Eina_Bool disable)
979 {
980    ELM_CHECK_WIDTYPE(obj, widtype);
981    Widget_Data *wd = elm_widget_data_get(obj);
982
983    if (!wd) return;
984    _els_smart_icon_preload_set(wd->img, disable);
985 }