summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_icon.eo
blob: fe22bdfc77fb6d5131d872f7a88fefddb0093f1a (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
enum Elm.Icon.Type
{
   legacy: elm_icon;
   none,
   file,
   standard
}

class Elm.Icon (Elm.Image)
{
   eo_prefix: elm_obj_icon;
   methods {
   }
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object.Smart.add;
      Evas.Object.Smart.del;
      Elm.Widget.theme_apply;
      Efl.File.file.set;
   }
   events {
      thumb,done;
      thumb,error;
   }

}