adcb468eaab0a5f4c2680a55eb958e181d8a7e86
[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_file_set(Evas_Object *obj, const char *file, const char *group)
511 {
512    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
513    Widget_Data *wd = elm_widget_data_get(obj);
514    Eina_Bool ret;
515    const char *p;
516
517    if (!wd) return EINA_FALSE;
518    EINA_SAFETY_ON_NULL_RETURN_VAL(file, EINA_FALSE);
519    if (wd->stdicon) eina_stringshare_del(wd->stdicon);
520    wd->stdicon = NULL;
521    if (((p = strrchr(file, '.'))) && (!strcasecmp(p, ".edj")))
522      ret = _els_smart_icon_file_edje_set(wd->img, file, group);
523    else
524      ret = _els_smart_icon_file_key_set(wd->img, file, group);
525    _sizing_eval(obj);
526    return ret;
527 }
528
529 EAPI void
530 elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group)
531 {
532    ELM_CHECK_WIDTYPE(obj, widtype);
533    Widget_Data *wd = elm_widget_data_get(obj);
534    if (!wd) return;
535    _els_smart_icon_file_get(wd->img, file, group);
536 }
537
538 EAPI void
539 elm_icon_thumb_set(Evas_Object *obj, const char *file, const char *group)
540 {
541    ELM_CHECK_WIDTYPE(obj, widtype);
542    Widget_Data *wd = elm_widget_data_get(obj);
543    if (!wd) return;
544
545 #ifdef HAVE_ELEMENTARY_ETHUMB
546    eina_stringshare_replace(&wd->thumb.file.path, file);
547    eina_stringshare_replace(&wd->thumb.file.key, group);
548
549    if (elm_thumb_ethumb_client_connected())
550      {
551         _icon_thumb_apply(wd);
552         return ;
553      }
554
555    if (!wd->thumb.eeh)
556      {
557         wd->thumb.eeh = ecore_event_handler_add(ELM_ECORE_EVENT_ETHUMB_CONNECT, _icon_thumb_apply_cb, wd);
558      }
559 #else
560    (void) obj;
561    (void) file;
562    (void) group;
563 #endif
564 }
565
566 EAPI Eina_Bool
567 elm_icon_animated_available_get(const Evas_Object *obj)
568 {
569    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
570    Evas_Object *img_obj ;
571    Widget_Data *wd = elm_widget_data_get(obj);
572    if (!wd) return EINA_FALSE;
573
574    img_obj = _els_smart_icon_object_get(wd->img);
575
576    return evas_object_image_animated_get(img_obj);
577 }
578
579 EAPI void
580 elm_icon_animated_set(Evas_Object *obj, Eina_Bool anim)
581 {
582    ELM_CHECK_WIDTYPE(obj, widtype);
583    Evas_Object *img_obj ;
584    Widget_Data *wd = elm_widget_data_get(obj);
585    if (!wd) return;
586    if (wd->anim == anim) return;
587
588    img_obj = _els_smart_icon_object_get(wd->img);
589    if (!evas_object_image_animated_get(img_obj)) return;
590    if (anim)
591      {
592         wd->frame_count = evas_object_image_animated_frame_count_get(img_obj);
593         wd->cur_frame = 1;
594         wd->duration = evas_object_image_animated_frame_duration_get(img_obj, wd->cur_frame, 0);
595         evas_object_image_animated_frame_set(img_obj, wd->cur_frame);
596      }
597    else
598      {
599         wd->frame_count = -1;
600         wd->cur_frame = -1;
601         wd->duration = -1;
602      }
603    wd->anim = anim;
604    return;
605 }
606
607 EAPI Eina_Bool
608 elm_icon_animated_get(const Evas_Object *obj)
609 {
610    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
611    Widget_Data *wd = elm_widget_data_get(obj);
612    if (!wd) return EINA_FALSE;
613    return wd->anim;
614 }
615
616 EAPI void
617 elm_icon_animated_play_set(Evas_Object *obj, Eina_Bool play)
618 {
619    ELM_CHECK_WIDTYPE(obj, widtype);
620    Widget_Data *wd = elm_widget_data_get(obj);
621    if (!wd) return;
622    if (!wd->anim) return;
623    if (wd->play == play) return;
624
625    if (play)
626      {
627         wd->timer = ecore_timer_add(wd->duration, _elm_icon_animate_cb, wd);
628      }
629    else
630      {
631         if (wd->timer)
632           {
633              ecore_timer_del(wd->timer);
634              wd->timer = NULL;
635           }
636      }
637    wd->play = play;
638
639 }
640
641 EAPI Eina_Bool
642 elm_icon_animated_play_get(const Evas_Object *obj)
643 {
644    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
645    Widget_Data *wd = elm_widget_data_get(obj);
646    if (!wd) return EINA_FALSE;
647    return wd->play;
648 }
649
650 /* compatibility code to prevent ABI break */
651 EAPI Eina_Bool
652 elm_icon_anim_available_get(const Evas_Object *obj)
653 {
654   return elm_icon_animated_available_get(obj);
655 }
656
657 EAPI void
658 elm_icon_anim_set(Evas_Object *obj, Eina_Bool anim)
659 {
660   elm_icon_animated_set(obj, anim);
661 }
662
663 EAPI Eina_Bool
664 elm_icon_anim_get(const Evas_Object *obj)
665 {
666   return elm_icon_animated_get(obj);
667 }
668
669 EAPI void
670 elm_icon_anim_play_set(Evas_Object *obj, Eina_Bool play)
671 {
672   elm_icon_animated_play_set(obj, play);
673 }
674
675 EAPI Eina_Bool
676 elm_icon_anim_play_get(const Evas_Object *obj)
677 {
678   return elm_icon_animated_play_get(obj);
679 }
680
681 static Eina_Bool
682 _icon_standard_set(Widget_Data *wd, Evas_Object *obj, const char *name)
683 {
684    if (_elm_theme_object_icon_set(obj, wd->img, name, "default"))
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_file_set(Widget_Data *wd, Evas_Object *obj, const char *path)
697 {
698    if (elm_icon_file_set(obj, path, NULL))
699      {
700 #ifdef ELM_EFREET
701         /* TODO: elm_unneed_efreet() */
702         wd->freedesktop.use = EINA_FALSE;
703 #endif
704         return EINA_TRUE;
705      }
706    return EINA_FALSE;
707 }
708
709 static Eina_Bool
710 _icon_freedesktop_set(Widget_Data *wd, Evas_Object *obj, const char *name, int size)
711 {
712 #ifdef ELM_EFREET
713    const char *path;
714
715    elm_need_efreet();
716    if (icon_theme == NON_EXISTING) return EINA_FALSE;
717    if (!icon_theme)
718      {
719         Efreet_Icon_Theme *theme;
720         /* TODO: Listen for EFREET_EVENT_ICON_CACHE_UPDATE */
721         theme = efreet_icon_theme_find(getenv("E_ICON_THEME"));
722         if (!theme)
723           {
724              const char **itr;
725              static const char *themes[] = {
726                   "gnome", "Human", "oxygen", "hicolor", NULL
727              };
728              for (itr = themes; *itr; itr++)
729                {
730                   theme = efreet_icon_theme_find(*itr);
731                   if (theme) break;
732                }
733           }
734
735         if (!theme)
736           {
737              icon_theme = NON_EXISTING;
738              return EINA_FALSE;
739           }
740         else
741           icon_theme = eina_stringshare_add(theme->name.internal);
742      }
743    path = efreet_icon_path_find(icon_theme, name, size);
744    wd->freedesktop.use = !!path;
745    if (wd->freedesktop.use)
746      {
747         wd->freedesktop.requested_size = size;
748         elm_icon_file_set(obj, path, NULL);
749         return EINA_TRUE;
750      }
751 #endif
752    return EINA_FALSE;
753 }
754
755 static Eina_Bool
756 _elm_icon_standard_set(Widget_Data *wd, Evas_Object *obj, const char *name, Eina_Bool *fdo)
757 {
758    char *tmp;
759    Eina_Bool ret;
760
761    /* try locating the icon using the specified lookup order */
762    switch (wd->lookup_order)
763      {
764       case ELM_ICON_LOOKUP_FDO:
765          ret = _icon_freedesktop_set(wd, obj, name, _icon_size_min_get(wd->img));
766          if (ret && fdo) *fdo = EINA_TRUE;
767          break;
768       case ELM_ICON_LOOKUP_THEME:
769          ret = _icon_standard_set(wd, obj, name);
770          break;
771       case ELM_ICON_LOOKUP_THEME_FDO:
772          ret = _icon_standard_set(wd, obj, name);
773          if (!ret)
774            {
775               ret = _icon_freedesktop_set(wd, obj, name, _icon_size_min_get(wd->img));
776               if (ret && fdo) *fdo = EINA_TRUE;
777            }
778          break;
779       case ELM_ICON_LOOKUP_FDO_THEME:
780       default:
781          ret = _icon_freedesktop_set(wd, obj, name, _icon_size_min_get(wd->img));
782          if (!ret)
783            ret = _icon_standard_set(wd, obj, name);
784          else if (fdo)
785            *fdo = EINA_TRUE;
786          break;
787      }
788
789    if (ret)
790      {
791         eina_stringshare_replace(&wd->stdicon, name);
792         _sizing_eval(obj);
793         return EINA_TRUE;
794      }
795
796    if (_path_is_absolute(name))
797      return _icon_file_set(wd, obj, name);
798
799    /* if that fails, see if icon name is in the format size/name. if so,
800       try locating a fallback without the size specification */
801    if (!(tmp = strchr(name, '/'))) return EINA_FALSE;
802    ++tmp;
803    if (*tmp) return elm_icon_standard_set(obj, tmp);
804    /* give up */
805    return EINA_FALSE;
806 }
807
808 static void
809 _elm_icon_standard_resize(void *data,
810                           Evas *e __UNUSED__,
811                           Evas_Object *obj,
812                           void *event_info __UNUSED__)
813 {
814    Widget_Data *wd = data;
815    const char *refup = eina_stringshare_ref(wd->stdicon);
816    Eina_Bool fdo = EINA_FALSE;
817
818    if (!_elm_icon_standard_set(wd, obj, wd->stdicon, &fdo) || (!fdo))
819      evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE,
820                                          _elm_icon_standard_resize, wd);
821 #ifdef HAVE_ELEMENTARY_ETHUMB
822    if (wd->thumb.file.path)
823      elm_icon_thumb_set(obj, wd->thumb.file.path, wd->thumb.file.key);
824 #endif
825
826    eina_stringshare_del(refup);
827 }
828
829 EAPI Eina_Bool
830 elm_icon_standard_set(Evas_Object *obj, const char *name)
831 {
832    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
833    Widget_Data *wd = elm_widget_data_get(obj);
834    Eina_Bool fdo = EINA_FALSE;
835    Eina_Bool ret;
836
837    if ((!wd) || (!name)) return EINA_FALSE;
838
839    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE,
840                                        _elm_icon_standard_resize, wd);
841
842    ret = _elm_icon_standard_set(wd, obj, name, &fdo);
843
844    if (fdo)
845      evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE,
846                                     _elm_icon_standard_resize, wd);
847
848    return ret;
849 }
850
851 EAPI const char *
852 elm_icon_standard_get(const Evas_Object *obj)
853 {
854    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
855    Widget_Data *wd = elm_widget_data_get(obj);
856    if (!wd) return NULL;
857    return wd->stdicon;
858 }
859
860 EAPI void
861 elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order)
862 {
863    ELM_CHECK_WIDTYPE(obj, widtype);
864    Widget_Data *wd = elm_widget_data_get(obj);
865    if (wd) wd->lookup_order = order;
866 }
867
868 EAPI Elm_Icon_Lookup_Order
869 elm_icon_order_lookup_get(const Evas_Object *obj)
870 {
871    ELM_CHECK_WIDTYPE(obj, widtype) ELM_ICON_LOOKUP_THEME_FDO;
872    Widget_Data *wd = elm_widget_data_get(obj);
873    if (!wd) return ELM_ICON_LOOKUP_THEME_FDO;
874    return wd->lookup_order;
875 }
876
877 EAPI void
878 elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth)
879 {
880    ELM_CHECK_WIDTYPE(obj, widtype);
881    Widget_Data *wd = elm_widget_data_get(obj);
882
883    if (!wd) return;
884    wd->smooth = smooth;
885    _sizing_eval(obj);
886 }
887
888 EAPI Eina_Bool
889 elm_icon_smooth_get(const Evas_Object *obj)
890 {
891    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
892    Widget_Data *wd = elm_widget_data_get(obj);
893
894    if (!wd) return EINA_FALSE;
895    return wd->smooth;
896 }
897
898 EAPI void
899 elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale)
900 {
901    ELM_CHECK_WIDTYPE(obj, widtype);
902    Widget_Data *wd = elm_widget_data_get(obj);
903
904    if (!wd) return;
905    wd->no_scale = no_scale;
906    _sizing_eval(obj);
907 }
908
909 EAPI Eina_Bool
910 elm_icon_no_scale_get(const Evas_Object *obj)
911 {
912    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
913    Widget_Data *wd = elm_widget_data_get(obj);
914    if (!wd) return EINA_FALSE;
915    return wd->no_scale;
916 }
917
918 EAPI void
919 elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down)
920 {
921    ELM_CHECK_WIDTYPE(obj, widtype);
922    Widget_Data *wd = elm_widget_data_get(obj);
923
924    if (!wd) return;
925    wd->scale_up = scale_up;
926    wd->scale_down = scale_down;
927    _sizing_eval(obj);
928 }
929
930 EAPI void
931 elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down)
932 {
933    ELM_CHECK_WIDTYPE(obj, widtype);
934    Widget_Data *wd = elm_widget_data_get(obj);
935    if (!wd) return;
936    if (scale_up) *scale_up = wd->scale_up;
937    if (scale_down) *scale_down = wd->scale_down;
938 }
939
940 EAPI void
941 elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside)
942 {
943    ELM_CHECK_WIDTYPE(obj, widtype);
944    Widget_Data *wd = elm_widget_data_get(obj);
945
946    if (!wd) return;
947    wd->fill_outside = fill_outside;
948    _sizing_eval(obj);
949 }
950
951 EAPI Eina_Bool
952 elm_icon_fill_outside_get(const Evas_Object *obj)
953 {
954    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
955    Widget_Data *wd = elm_widget_data_get(obj);
956
957    if (!wd) return EINA_FALSE;
958    return wd->fill_outside;
959 }
960
961 EAPI void
962 elm_icon_prescale_set(Evas_Object *obj, int size)
963 {
964    ELM_CHECK_WIDTYPE(obj, widtype);
965    Widget_Data *wd = elm_widget_data_get(obj);
966
967    if (!wd) return;
968    _els_smart_icon_scale_size_set(wd->img, size);
969 }
970
971 EAPI int
972 elm_icon_prescale_get(const Evas_Object *obj)
973 {
974    ELM_CHECK_WIDTYPE(obj, widtype) 0;
975    Widget_Data *wd = elm_widget_data_get(obj);
976
977    if (!wd) return 0;
978    return _els_smart_icon_scale_size_get(wd->img);
979 }